ovpn_copy_server_files: Use short flags with rm
* The busybox tool in the alpine distro doesn't support long flags.
This commit is contained in:
parent
f00de363c7
commit
1498795de2
@ -19,7 +19,7 @@ fi
|
|||||||
mkdir -p "${TARGET}"
|
mkdir -p "${TARGET}"
|
||||||
|
|
||||||
## Ensure that no other keys then the one for the server is present.
|
## Ensure that no other keys then the one for the server is present.
|
||||||
rm --recursive --force "$TARGET/pki/private" "$TARGET/pki/issued"
|
rm -rf "$TARGET/pki/private" "$TARGET/pki/issued"
|
||||||
|
|
||||||
FILES=(
|
FILES=(
|
||||||
"openvpn.conf"
|
"openvpn.conf"
|
||||||
|
Loading…
Reference in New Issue
Block a user