2021-10-28 22:45:30 +02:00
|
|
|
#simple file mover by jenz
|
|
|
|
|
|
|
|
##virtualenv venv
|
|
|
|
|
|
|
|
##source venv/bin/activate
|
|
|
|
|
|
|
|
##pip3 install -r requirements.txt
|
|
|
|
|
|
|
|
##config file: server specifics
|
|
|
|
|
|
|
|
##globally: apt-get install zip
|
|
|
|
|
2021-11-02 21:36:38 +01:00
|
|
|
##requires an ~/.my.cnf with
|
|
|
|
|
|
|
|
[mysqldump]
|
|
|
|
host=""
|
|
|
|
user=""
|
|
|
|
password=""
|
2021-10-28 22:45:30 +02:00
|
|
|
|
|
|
|
##python3 file_mover.py config.json
|
|
|
|
|
|
|
|
##systemctl enable file_mover.timer
|
|
|
|
|
|
|
|
##systemctl start file_mover.timer
|
|
|
|
|
|
|
|
##logging: journalctl -f -u file_mover.service
|
|
|
|
|
|
|
|
##logging: systemctl status file_mover.service
|
|
|
|
|