mir3c/squashfs-root/lib/firstboot/05_firstboot_skip

11 lines
115 B
Plaintext
Raw Normal View History

2018-05-25 08:49:31 +00:00
#!/bin/sh
check_skip() {
if [ "$firstboot_skip_next" = "true" ]; then
return 0
else
return 1
fi
}