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

11 lines
115 B
Bash
Executable File

#!/bin/sh
check_skip() {
if [ "$firstboot_skip_next" = "true" ]; then
return 0
else
return 1
fi
}