1.) Old account
===========
>> First we need to take Backup of each account individually.
>> Once we have finished with the Backup creation, move to new server.
2.) New server
==========
vim /home/accounts.txt
>> list the information as below
http://IP/~accountname/public_html/backupnamehttp://IP/~accountname/public_html/backupnamehttp://IP/~accountname/public_html/backupnamea.) vim script.sh
for i in `cat /home/accounts.txt`;
do wget $i;
done
# ll
b.) once the process finished, you could see the backup files in /home
vim /home/acc.txt
put the name of the backup filesThen, follow the below steps and edit the script file,
vim script.sh
for i in `cat /home/acc.txt`;
do /scripts/restorepkg $i;
done
====================That's it==============================