This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
getssl
mirror of
https://github.com/srvrco/getssl
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
51
Wiki
Activity
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
266b654804
8df763f5fe
commit
3d77cecb6b
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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"
Write
Preview
Loading…
Cancel
Save