From 9390cd2de88e97149aeca6a1b2b0c5caa4ac08d9 Mon Sep 17 00:00:00 2001 From: Fuxino Date: Sun, 15 Oct 2023 15:39:06 +0200 Subject: [PATCH] Allow removing remote old backups with sudo if possible If allowed by the remote server, try using sudo to remove old backups (rm needs to be allowed in sudoers to run without password) --- README.md | 2 +- man/simple_backup.1 | 23 +++++++++++++---------- simple_backup/simple_backup.py | 5 ++++- 3 files changed, 18 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 05fa4e7..d7003e9 100644 --- a/README.md +++ b/README.md @@ -68,4 +68,4 @@ sudo --preserve-env=SSH_AUTH_SOCK -s simple_backup [options] or by editing the sudoers file. If SSH key authentication is not available, password authentication will be used instead. - +Check the man page for more details. diff --git a/man/simple_backup.1 b/man/simple_backup.1 index ea49b56..9c40523 100644 --- a/man/simple_backup.1 +++ b/man/simple_backup.1 @@ -93,19 +93,19 @@ Don't use systemd journal for logging. .B \-\-rsync\-options OPTIONS [OPTION...] By default, the following rsync options are used: .RS -.PP +.P \-a \-r \-v \-h \-s \-H \-X -.PP +.P Using \-\-rsync\-options it is possible to manually select which options to use. Supported values are the following: -.PP +.P \-a, \-l, \-p, \-t, \-g, \-o, \-c, \-h, \-D, \-H, \-X, \-s -.PP +.P Options \-r and \-v are used in any case. Not that options must be specified without dash (\-), for example: -.PP +.P .EX simple_backup \-\-rsync\-options a l p .EE -.TP +.P Check .BR rsync (1) for details about the options. @@ -114,8 +114,12 @@ for details about the options. .B \-\-remote\-sudo Run rsync on the remote server with sudo. This is needed if you want to preserve the owner of the files/folders to be copied (rsync \-\-owner option). For this to work the user used to login to the server obviously need to be allowed to use sudo. In addition, the user need to be able to run rsync with sudo without a password. To do this, /etc/sudoers on the server need to be edited adding a line like this one: .RS -.PP +.P ALL=NOPASSWD: +.P +To be able to remove old backups generated with \-\-remote\-sudo (see \-\-keep option), also +.BR rm (1) +needs to be allowed to run without password in the same way. .RE .TP .B \-\-numeric\-ids @@ -139,7 +143,7 @@ When running .B simple_backup with .B sudo, -in order to connect to the user\(aq s SSH agent it is necessary to preserve the \(aq SSH_AUTH_SOCK\(aq environment variable, for example: +in order to connect to the user\(aqs SSH agent it is necessary to preserve the \(aqSSH_AUTH_SOCK\(aq environment variable, for example: .P .EX sudo --preserve-env=SSH_AUTH_SOCK -s simple_backup [options] @@ -148,8 +152,7 @@ in order to connect to the user\(aq s SSH agent it is necessary to preserve the It is also possible to make this permanent by editing the .B sudoers file (see -.BR sudoers (5) -) +.BR sudoers (5)) .P If SSH key authentication is not available, password authentication will be used instead. Note that in this case diff --git a/simple_backup/simple_backup.py b/simple_backup/simple_backup.py index de47e77..d3998a8 100755 --- a/simple_backup/simple_backup.py +++ b/simple_backup/simple_backup.py @@ -229,7 +229,10 @@ class Backup: dirs.sort() for i in range(n_backup - self.keep): - _, _, stderr = self._ssh.exec_command(f'rm -r "{self.output}/simple_backup/{dirs[i]}"') + if self.remote_sudo: + _, _, stderr = self._ssh.exec_command(f'sudo rm -r "{self.output}/simple_backup/{dirs[i]}"') + else: + _, _, stderr = self._ssh.exec_command(f'rm -r "{self.output}/simple_backup/{dirs[i]}"') err = stderr.read().decode('utf-8').strip().split('\n')[0]