Update functions.bash
This commit is contained in:
parent
bb4256c28d
commit
d12c4a8376
1 changed files with 4 additions and 3 deletions
|
@ -1,14 +1,15 @@
|
||||||
log () {
|
log () {
|
||||||
m_time=`date "+%F %T"`
|
m_time=`date "+%F %T"`
|
||||||
echo $m_time" :: $scriptName :: $scriptVersion :: "$1
|
echo $m_time" :: $scriptName :: $scriptVersion :: "$1
|
||||||
|
echo $m_time" :: $scriptName :: $scriptVersion :: "$1 >> /config/logs/$scriptName.txt
|
||||||
}
|
}
|
||||||
|
|
||||||
logfileSetup () {
|
logfileSetup () {
|
||||||
# auto-clean up log file to reduce space usage
|
# auto-clean up log file to reduce space usage
|
||||||
if [ -f "/config/logs/$scriptName.txt" ]; then
|
if [ -f "/config/logs/$scriptName.txt" ]; then
|
||||||
if find /config/logs -type f -name "$scriptName.txt" -size +1024k | read; then
|
if find /config/logs -type f -name "$scriptName.txt" -size +1024k | read; then
|
||||||
echo "" > /config/logs/$scriptName.txt
|
echo "" > /config/logs/$scriptName.txt
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f "/config/logs/$scriptName.txt" ]; then
|
if [ ! -f "/config/logs/$scriptName.txt" ]; then
|
||||||
|
|
Loading…
Reference in a new issue