56bc02a305
SVN-Revision: 19331
11 lines
114 B
Bash
11 lines
114 B
Bash
#!/bin/sh
|
|
|
|
check_skip() {
|
|
if [ "$firsboot_skip_next" = "true" ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|