-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup-server.sh
More file actions
executable file
·47 lines (37 loc) · 986 Bytes
/
setup-server.sh
File metadata and controls
executable file
·47 lines (37 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/sh
echo_template() {
echo "Help: ./setup-server.sh -h"
echo "Use: ./setup-server.sh -a <ca_package_path> ..."
}
#ca_package_path=$1
#shift # After shift, what used to be $1 has been removed from the list
# Default param values:
ca_package_path=''
while getopts 'ha:' optp "$1$2"
do
case $optp in
h) echo_template; exit 0 ;;
a) ca_package_path=$OPTARG ;;
esac
done
shift $OPTIND
if [ -z "${ca_package_path}" ]; then
echo "Asign a valid CA package path!"
echo_template
exit 0
fi
# If it's a relative path adds $PWD to make it work with Docker
case $ca_package_path in
/*) ;;
*) ca_package_path=$PWD/$ca_package_path ;;
esac
if [ ! -f "$ca_package_path" ]; then
echo "CA keys package '$ca_package_path' doesn't exist!"
exit 0
fi
ca_name=$(basename "${ca_package_path}")
echo "Using CA keys package '$ca_name'"
docker run --name vpn-setup-server --rm \
-v $ca_package_path:/root/ca.tar \
-v $PWD/data:/root/output \
-it alxprd/vpn:ca setup-server "$@"