18 lines
273 B
Bash
Executable File
18 lines
273 B
Bash
Executable File
#!/bin/bash
|
|
#remaster lib
|
|
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
|
|
|
|
#check_user
|
|
function check_user() {
|
|
#check root
|
|
[ "`whoami`" == "root" ] || {
|
|
echo "### ERROR ### Remaster need ROOT permision!"
|
|
return 10
|
|
}
|
|
}
|
|
|
|
[ -n "$1" ] && {
|
|
echo param
|
|
$1
|
|
}
|