From 575410ee3fbab1b89c709a43339d8c2472990405 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 14 Jan 2019 13:46:46 +0200 Subject: [PATCH] Fix backup filenames to use Libretime --- docs/manual/backing-up-the-server/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manual/backing-up-the-server/index.md b/docs/manual/backing-up-the-server/index.md index 725d73db6..cd1451b6c 100644 --- a/docs/manual/backing-up-the-server/index.md +++ b/docs/manual/backing-up-the-server/index.md @@ -7,7 +7,7 @@ as the user *postgres*, by using the **sudo** command and the **-u** switch. It is separated from the **gzip** command with the pipe symbol. ```bash -sudo -u postgres pg_dumpall | gzip -c > airtime-backup.gz +sudo -u postgres pg_dumpall | gzip -c > libretime-backup.gz ``` This command can be automated to run on a regular basis using the standard @@ -31,8 +31,8 @@ To restore, first unzip the backup file with **gunzip**, then use the **psql** command as the *postgres* user: ```bash -gunzip airtime-backup.gz -sudo -u postgres psql -f airtime-backup +gunzip libretime-backup.gz +sudo -u postgres psql -f airtime-libretime ``` You should now be able to log in to the Libretime web interface in the usual way.