Create a file with name backup.sh
for i in $(ls /var/cpanel/users)
do /scripts/pkgacct $i
done
Restore:
Create a file with name restore.sh:
for x in $(ls cpmove-*.tar.gz | cut -d "." -f 1); do /scripts/restorepkg $x; done
or
#!/bin/bash
for i in $(cat /backup/restore.txt)
do /scripts/restorepkg $i
done
With restore.txt is list username and file backup is in /home dir
or
#!/bin/bash
for x in $(ls /home/backup-*.tar.gz | cut -d "_" -f 3 | cut -d "." -f 1);
do /scripts/restorepkg $x;
done
echo "Written by Nguyen Si Nhan"
or
#!/bin/bash
for i in $(cat /backup/restore.txt)
do /scripts/restorepkg $i
done
With restore.txt is list username and file backup is in /home dir
or
#!/bin/bash
for x in $(ls /home/backup-*.tar.gz | cut -d "_" -f 3 | cut -d "." -f 1);
do /scripts/restorepkg $x;
done
echo "Written by Nguyen Si Nhan"
Nguyễn Sĩ Nhàn
No comments:
Post a Comment
Thanks for your join,we will be reply to you asap.