mirror of https://github.com/hak5/openwrt.git
11 lines
114 B
Plaintext
11 lines
114 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
check_skip() {
|
||
|
if [ "$firsboot_skip_next" = "true" ]; then
|
||
|
return 0
|
||
|
else
|
||
|
return 1
|
||
|
fi
|
||
|
}
|
||
|
|