summaryrefslogtreecommitdiff
path: root/openvpn/easy-rsa/clean-all
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
committerOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
commitfffd213c8cba2135afda493d797c41c10354770e (patch)
treebb5eea1b12871d8c3fed0e687d83be3e504d11b2 /openvpn/easy-rsa/clean-all
parentsvn cleanup (diff)
big svn cleanup
Diffstat (limited to 'openvpn/easy-rsa/clean-all')
-rwxr-xr-xopenvpn/easy-rsa/clean-all19
1 files changed, 0 insertions, 19 deletions
diff --git a/openvpn/easy-rsa/clean-all b/openvpn/easy-rsa/clean-all
deleted file mode 100755
index d10aef5..0000000
--- a/openvpn/easy-rsa/clean-all
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-#
-# Initialize the $KEY_DIR directory.
-# Note that this script does a
-# rm -rf on $KEY_DIR so be careful!
-#
-
-d=$KEY_DIR
-
-if test $d; then
- rm -rf $d
- mkdir $d && \
- chmod go-rwx $d && \
- touch $d/index.txt && \
- echo 01 >$d/serial
-else
- echo you must define KEY_DIR
-fi