diff options
author | Micah Anderson <micah@riseup.net> | 2006-08-13 15:53:11 +0000 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2006-08-13 15:53:11 +0000 |
commit | 56e2f27e791228b24caf0f0e37a0ac09995f1fd1 (patch) | |
tree | 0219ab78af0395b0a3ec15f12f36a5af4ed31327 | |
parent | 28338e91c351bef21a856f4280b762b9ee0dc2aa (diff) | |
download | backupninja-56e2f27e791228b24caf0f0e37a0ac09995f1fd1.tar.gz backupninja-56e2f27e791228b24caf0f0e37a0ac09995f1fd1.tar.bz2 |
Fixed stat to use --format instead of --printf to be compatible with coreutils
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | src/backupninja.in | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -11,6 +11,8 @@ version 0.9.4 -- unreleased . When determining which backup actions to make, find now follows symlinks for $configdirectory . Changed order of -s to mail for compatibility + . fixed permission stat call so it uses the --format supported by + coreutils (Closes: #382747) handler changes Added tar handler: . create tarballs diff --git a/src/backupninja.in b/src/backupninja.in index e4f5ea7..114d66c 100755 --- a/src/backupninja.in +++ b/src/backupninja.in @@ -132,7 +132,7 @@ function msg { function check_perms() { local file=$1 local perms - perms=($(stat -L --printf='%a %g %G %u %U' $file)) + perms=($(stat -L --format='%a %g %G %u %U' $file)) local gperm=${perms[0]:1:1} local wperm=${perms[0]:2:1} local gid=${perms[1]} |