openwrtv4/package/base-files/files/lib/firstboot/05_firstboot_skip

11 lines
114 B
Text
Raw Normal View History

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