05_firstboot_skip 114 B

12345678910
  1. #!/bin/sh
  2. check_skip() {
  3. if [ "$firsboot_skip_next" = "true" ]; then
  4. return 0
  5. else
  6. return 1
  7. fi
  8. }