Tool to create full backup of odoo database
- Fully typed with annotations and checked with mypy, PEP561 compatible
- Add yours!
pip install odoo-backup-db-cli
Let's say you want to create cron each minute create backup and you have a conda environment. Then you need:
-
Copy snippet appended by Anaconda in
~/.bashrc
(at the end of the file) to a separate file~/.bashrc_conda
As of Anaconda 2020.02 installation, the snippet reads as follows:
# >>> conda initialize >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$('/home/USERNAME/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" if [ $? -eq 0 ]; then eval "$__conda_setup" else if [ -f "/home/USERNAME/anaconda3/etc/profile.d/conda.sh" ]; then . "/home/USERNAME/anaconda3/etc/profile.d/conda.sh" else export PATH="/home/USERNAME/anaconda3/bin:$PATH" fi fi unset __conda_setup # <<< conda initialize <<<
Make sure that:
- The path
/home/USERNAME/anaconda3/
is correct. - The user running the cronjob has read permissions for
~/.bashrc_conda
(and no other user can write to this file).
- The path
-
In
crontab -e
add lines to run cronjobs onbash
and to source~/.bashrc_conda
Run
crontab -e
and insert the following before the cronjob:SHELL=/bin/bash BASH_ENV=~/.bashrc_conda
-
In
crontab -e
include at beginning of the cronjobconda activate my_env;
as in exampleExample of entry for a script that would execute at noon 12:30 each day on the Python interpreter within the conda environment:
30 12 * * * conda activate my_env; odoo-backup-db-cli create-backup production_local_with_filestore; conda deactivate
And that's it.
You may want to check from time to time that the snippet in ~/.bashrc_conda
is up to date in case conda updates its snippet in ~/.bashrc
.
This project was generated with wemake-python-package
. Current template version is: 88c80f5d17a6f4bc41dbc5473db4f5ffd2b3068f. See what is updated since then.