Add no-syslog option

This commit is contained in:
daniele 2023-06-04 10:16:50 +02:00
parent ffbf8ece91
commit d6d9fbf6e4
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
2 changed files with 11 additions and 0 deletions

View File

@ -56,6 +56,9 @@ Same as rsync option \(aq\-\-checksum\(aq, use checksums instead of mod\-time an
.B \-\-remove\-before\-backup
Remove old backups (if necessary) before creating the new backup. Useful to free some space before performing the backup.
Default behavior is to remove old backups after successfully completing the backup.
.TP
.B \-\-no\-syslog
Don't use systemd journal for logging
.SH CONFIGURATION
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.

View File

@ -252,6 +252,7 @@ def _parse_arguments():
help='Use checksum rsync option to compare files (MUCH SLOWER)')
parser.add_argument('--remove-before-backup', action='store_true',
help='Remove old backups before executing the backup, instead of after')
parser.add_argument('--no-syslog', action='store_true', help='Disable systemd journal logging')
args = parser.parse_args()
@ -297,6 +298,13 @@ def notify(text):
def simple_backup():
args = _parse_arguments()
if args.no_syslog:
try:
logger.removeHandler(j_handler)
except NameError:
pass
inputs, output, exclude, keep = _read_config(args.config)
if args.input is not None: