openwrtv4/package/base-files/files/lib/firstboot/05_firstboot_skip
2010-01-25 17:11:17 +00:00

10 lines
114 B
Bash

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