diff options
Diffstat (limited to 'package/base-files/files/lib/firstboot/05_firstboot_skip')
-rw-r--r-- | package/base-files/files/lib/firstboot/05_firstboot_skip | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/base-files/files/lib/firstboot/05_firstboot_skip b/package/base-files/files/lib/firstboot/05_firstboot_skip new file mode 100644 index 000000000..283f8af8d --- /dev/null +++ b/package/base-files/files/lib/firstboot/05_firstboot_skip @@ -0,0 +1,10 @@ +#!/bin/sh + +check_skip() { + if [ "$firsboot_skip_next" = "true" ]; then + return 0 + else + return 1 + fi +} + |