git-svn-id: http://code.autistici.org/svn/backupninja/trunk@427
758a04ac-41e6-0310-8a23-
8373a73cc35d
. 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
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]}