Add some meaningful return codes
This commit is contained in:
parent
d63eb8f771
commit
b3fee0d022
@ -62,6 +62,16 @@ Don't use systemd journal for logging
|
|||||||
.SH CONFIGURATION
|
.SH CONFIGURATION
|
||||||
An example configuration file is provided at \(aq/etc/simple_backup/simple_backup.conf\(aq. Copy it to the default location
|
An example configuration file is provided at \(aq/etc/simple_backup/simple_backup.conf\(aq. Copy it to the default location
|
||||||
($HOME/.config/simple_backup) and edit it as needed.
|
($HOME/.config/simple_backup) and edit it as needed.
|
||||||
|
.SH EXIT STATUS
|
||||||
|
.TP
|
||||||
|
.B 0
|
||||||
|
The backup was completed without errors
|
||||||
|
.TP
|
||||||
|
.B 1
|
||||||
|
No valid inputs selected for backup
|
||||||
|
.TP
|
||||||
|
.B 2
|
||||||
|
Backup failed because output directory for storing the backup does not exist
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR rsync (1)
|
.BR rsync (1)
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
|
@ -16,7 +16,6 @@ from glob import glob
|
|||||||
|
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from systemd import journal
|
from systemd import journal
|
||||||
except ImportError:
|
except ImportError:
|
||||||
@ -97,24 +96,24 @@ class Backup:
|
|||||||
if self.inputs is None or len(self.inputs) == 0:
|
if self.inputs is None or len(self.inputs) == 0:
|
||||||
logger.info('No existing files or directories specified for backup. Nothing to do')
|
logger.info('No existing files or directories specified for backup. Nothing to do')
|
||||||
|
|
||||||
return False
|
return 1
|
||||||
|
|
||||||
if self.output is None:
|
if self.output is None:
|
||||||
logger.critical('No output path specified. Use -o argument or specify output path in configuration file')
|
logger.critical('No output path specified. Use -o argument or specify output path in configuration file')
|
||||||
|
|
||||||
return False
|
return 2
|
||||||
|
|
||||||
if not os.path.isdir(self.output):
|
if not os.path.isdir(self.output):
|
||||||
logger.critical('Output path for backup does not exist')
|
logger.critical('Output path for backup does not exist')
|
||||||
|
|
||||||
return False
|
return 2
|
||||||
|
|
||||||
self.output = os.path.abspath(self.output)
|
self.output = os.path.abspath(self.output)
|
||||||
|
|
||||||
if self.keep is None:
|
if self.keep is None:
|
||||||
self.keep = -1
|
self.keep = -1
|
||||||
|
|
||||||
return True
|
return 0
|
||||||
|
|
||||||
# Function to create the actual backup directory
|
# Function to create the actual backup directory
|
||||||
def create_backup_dir(self):
|
def create_backup_dir(self):
|
||||||
@ -347,12 +346,14 @@ def simple_backup():
|
|||||||
|
|
||||||
backup = Backup(inputs, output, exclude, keep, backup_options, remove_before=args.remove_before_backup)
|
backup = Backup(inputs, output, exclude, keep, backup_options, remove_before=args.remove_before_backup)
|
||||||
|
|
||||||
if backup.check_params():
|
return_code = backup.check_params()
|
||||||
|
|
||||||
|
if return_code == 0:
|
||||||
backup.run()
|
backup.run()
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
return 1
|
return return_code
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user