add log check

This commit is contained in:
2018-05-20 21:53:56 +02:00
parent 051f8636a2
commit d11b96947c
2 changed files with 26 additions and 9 deletions

View File

@ -2,12 +2,31 @@
#remaster lib
[ -d "<LIBDIR>" ] || { echo "LIBDIR not exist"; exit 1; }
#<function>
function <function>() {
#Code of <function>
#check_config [param]
function check_config() {
#LOG
[ -z "$log_file" ] && log_file="/tmp/remaster_`date '+%Y-%m-%d'`"
if [ -f "$log_file" ]; then
echo > "$log_file"
else
#check if folder exist
[ -d "${log_file%/*}" ] || {
# N-> exit 3
echo "Directory for Log didnt exist"
exit 3
}
#create LOG
touch "$log_file"
fi
}
#this func is standalone executable
[ -n "$1" ] && {
<function> $@
check_config $@
}