129afe12b7
SVN-Revision: 31492
11 lines
115 B
Bash
11 lines
115 B
Bash
#!/bin/sh
|
|
|
|
check_skip() {
|
|
if [ "$firstboot_skip_next" = "true" ]; then
|
|
return 0
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|