diff backup/macos/luanBackup.sh @ 1699:e6750146faa1

no restart on backup
author Vadim Filimonov <fffilimonov@yandex.ru>
date Tue, 28 Jun 2022 16:13:37 +0300
parents 09aaca079ff3
children 47302bc83b2e
line wrap: on
line diff
--- a/backup/macos/luanBackup.sh	Mon Jun 27 20:51:49 2022 -0600
+++ b/backup/macos/luanBackup.sh	Tue Jun 28 16:13:37 2022 +0300
@@ -9,9 +9,9 @@
   rm -f `find $BKP/ -name '*.tgz' -mmin +4000`;
 
   cd $DIR;
-  ./stop.sh
-  tar czvf /Volumes/External/luanBackup/$(date +"backup%Y%m%d%H%M").tgz backups;
-  ./start.sh
+  rm -rf backups.copy;
+  luan copy_backups.luan
+  tar czvf /Volumes/External/luanBackup/$(date +"backup%Y%m%d%H%M").tgz backups.copy;
 }
 
 sleep 60;