Browse Source

Merge pull request #1 from dstosberg/create-acl-dir

create ACL directory if it does not exist
pull/2/head
serverco 10 years ago
parent
commit
3d77cecb6b
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      getssl

+ 4
- 0
getssl View File

@ -158,6 +158,10 @@ copy_file_to_location() {
scp $from ${to:4}"
fi
else
mkdir -p $to
if [ $? -gt 0 ]; then
error_exit "cannot create ACL directory $to"
fi
cp $from $to
fi
debug "copied $from to $to"


Loading…
Cancel
Save