Browse Source

create ACL directory if it does not exist

pull/1/head
Dennis Stosberg 10 years ago
parent
commit
8df763f5fe
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