mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-02-01 17:43:08 +01:00
10 lines
114 B
Bash
10 lines
114 B
Bash
#!/bin/sh
|
|
|
|
check_skip() {
|
|
if [ "$firsboot_skip_next" = "true" ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|