]> git.treefish.org Git - backmeupscotty.git/blobdiff - backmeupscotty
store upperme once in variable
[backmeupscotty.git] / backmeupscotty
index 68afaf6d591cb50e72a24b5e54d95097dcd4d917..ad2fa6582ec1303bef176c47eaab0335ee03da67 100644 (file)
@@ -6,16 +6,14 @@ ARCHIVE_KEEPNBACKUPS=30
 ARCHIVE_KEEPNDAYS=30
 BACKUP_RUNEVERYNTHDAY=1
 
 ARCHIVE_KEEPNDAYS=30
 BACKUP_RUNEVERYNTHDAY=1
 
-function upperme {
-    echo $(basename $0) | tr '[:lower:]' '[:upper:]'
-}
+_UPPERME=$(echo $(basename $0) | tr '[:lower:]' '[:upper:]')
 
 function scottyinfo {
 
 function scottyinfo {
-    echo $(upperme): $@ 
+    echo $_UPPERME: $@ 
 }
 
 function scottyerror {
 }
 
 function scottyerror {
-    echo $(upperme): $@ >&2 
+    echo $_UPPERME: $@ >&2 
 }
 
 function ssh255 {
 }
 
 function ssh255 {
@@ -126,7 +124,7 @@ function scottysync {
 }
 
 function deleteLock {
 }
 
 function deleteLock {
-    if ! rmdir /var/run/$(basename $0).lock; then
+    if ! rmdir /var/lock/$(basename $0); then
        scottyerror "Could not delete lockfile /tmp/$(basename $0).lock!"
     fi
 }
        scottyerror "Could not delete lockfile /tmp/$(basename $0).lock!"
     fi
 }
@@ -209,7 +207,7 @@ function backmeupscotty {
     exit 0
 }
 
     exit 0
 }
 
-if ! mkdir /var/run/$(basename $0).lock; then
+if ! mkdir /var/lock/$(basename $0); then
     scottyerror "Another instance of $(basename $0) is still running!"
     exit 1
 else
     scottyerror "Another instance of $(basename $0) is still running!"
     exit 1
 else