-
-
Notifications
You must be signed in to change notification settings - Fork 458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backup of / is not cron friendly #181
Comments
definitely a bug introduced by #170 |
@kapitainsky, thanks for the quick response! After adding a check so that it only strips when
will always write "Warning: Permanently added 'blah blah blah" (RSA) to the list of known hosts." This is most likely because of the Wouldn't it be easier and more flexible to leave the ssh config to the user (with the The same goes for the necessary user part when parsing the Should I make a PR? I could also add tests. Best regards, Panos |
You should definitely create PR and explain all details. I am sure @laurent22 will consider including it. |
updates laurent22#170, by introducing cases for different OSes. Also includes fixes for laurent22#172 and part of laurent22#181.
FYI this issue is caused by rsync-time-backup/rsync_tmbackup.sh Line 359 in 88db869
and rsync-time-backup/rsync_tmbackup.sh Line 378 in 88db869
|
#184 looks to be a possible fix for the |
This sounds like the best approach. Normalize the arguments at the start. |
Hello and thanks for this very useful tool!
When you backup /, the SRC_FOLDER var is stripped of the last / (line 378), and the df call (line 411) writes "df: '': No such file or directory" to STDERR. The script continues with the backup but it is not cron friendly since it always writes to STDERR and you cannot do:
MAILTO=panos@example.com
0 */1 * * * rsync_tmbackup.sh / /mnt/backup >/dev/null
and only expect emails when something unexpected happens. It will always send an email due to the df error.
Best regards,
Panos
The text was updated successfully, but these errors were encountered: