Corrected some typos

This commit is contained in:
Jack-Benny Persson 2013-12-22 09:14:59 +01:00
parent 943afcf723
commit 15a5b6bc47

View File

@ -2,7 +2,7 @@
This is exercise 6 on lab 5 which is about writing a backup script for your This is exercise 6 on lab 5 which is about writing a backup script for your
server. server.
For this exercise I've chosen to make a backup script for Proxmox, ie take all For this exercise I've chosen to make a backup script for Proxmox, ie take all
the backup files (vzdump-openvz-111-2013i\_11\_19-08\_20\_20.tar.lzo and so on) the backup files (vzdump-openvz-111-2013\_11\_19-08\_20\_20.tar.lzo and so on)
and copy them to a tape device and an external harddrive. and copy them to a tape device and an external harddrive.
## Short introduction on usage ## ## Short introduction on usage ##
@ -30,7 +30,7 @@ will cd into your Proxmox backups files and perform it's action from there.
All error messages are printed to STDERR and all normal messages are printed to All error messages are printed to STDERR and all normal messages are printed to
STDOUT. Because of this you can run this script headless and save the output STDOUT. Because of this you can run this script headless and save the output
in separate logfiles depending on whatever it's an error or normal messages. in separate logfiles depending on whatever it's an error or normal messages.
For example you can it like this: For example you can run it like this:
```bash ```bash
./serverbackup.sh > backupmessages.log 2> backuperrors.log ./serverbackup.sh > backupmessages.log 2> backuperrors.log
``` ```