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:
Kyle Manna 2015-09-29 11:41:36 -07:00
parent f00de363c7
commit 1498795de2

View File

@ -19,7 +19,7 @@ fi
mkdir -p "${TARGET}"
## 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=(
"openvpn.conf"