11 lines
160 B
Bash
11 lines
160 B
Bash
#!/usr/bin/env bash
|
|
|
|
source ./check
|
|
|
|
function sysupgrade_main() {
|
|
if ! check_local; then
|
|
echo "Sysupgrade true"
|
|
else
|
|
echo "Sysupgrade false"
|
|
fi
|
|
}
|