view backup/macos/luanBackup.sh @ 2133:c3b4c19f2d8a

attempt to autodetect and use nginx confs dir
author Violet7
date Fri, 16 Jan 2026 17:29:05 -0800
parents 077366d117bb
children
line wrap: on
line source

#!/bin/bash

BKP=/Volumes/External/luanBackup
DIR=/Users/administrator/luan/backup

function bkp_machine() {
  mkdir -p $BKP 2>/dev/null;

  rm -f `find $BKP/ -name '*.tgz' -mmin +4000`;

  cd $DIR;
  rm -rf backups.copy;
  ./luan.sh copy_backups.luan
  tar czvf /Volumes/External/luanBackup/$(date +"backup%Y%m%d%H%M").tgz backups.copy;
}

sleep 60;
bkp_machine;

sleep 3600;