You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/package/base-files/files/lib/firstboot/05_firstboot_skip

11 lines
115 B
Bash

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