blob: d126f7b189a22075a629bd64c6b6fbc20f865305 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[
{ type: install
message: <<EOM
In order to run OmniBackup, you will need to create and configure the main
configuration file, e.g.:
$ cp -p %%LOCALBASE%%/etc/omnibackup/config.json.sample \
%%LOCALBASE%%/etc/omnibackup/config.json
or, create it in the root users' home directory:
$ cp -p %%LOCALBASE%%/etc/omnibackup/config.json.sample \
%%ROOT_HOME%%/.omnibackup/config.json
In order to take automatic backups every 24 hours at 01:00am UTC run this
command:
$ crontab -e -u root
Then add the following lines to the root users' crontab:
# OmniBackup daily backups
00 01 * * * %%LOCALBASE%%/bin/omnibackup
To avoid data loss, make sure to consult the documentation at:
* %%LOCALBASE%%/share/doc/omnibackup/README.md
or
* https://github.com/NuLL3rr0r/omnibackup
Before you use it in production.
EOM
}
]
|