aboutsummaryrefslogtreecommitdiffstats
path: root/create-ssl-certificate
diff options
context:
space:
mode:
authorGuillaume Rousse <guillomovitch@mandriva.org>2008-01-27 14:49:52 +0000
committerGuillaume Rousse <guillomovitch@mandriva.org>2008-01-27 14:49:52 +0000
commit52e21b9d2cb3e614378500d924c501a7be8bea0b (patch)
tree40fb0ff0e7f1566b0e8f3400e706785af4f574b4 /create-ssl-certificate
parent8955653bd3e37afd97a81ce752559e51b01d8f1d (diff)
downloadrpm-helper-52e21b9d2cb3e614378500d924c501a7be8bea0b.tar
rpm-helper-52e21b9d2cb3e614378500d924c501a7be8bea0b.tar.gz
rpm-helper-52e21b9d2cb3e614378500d924c501a7be8bea0b.tar.bz2
rpm-helper-52e21b9d2cb3e614378500d924c501a7be8bea0b.tar.xz
rpm-helper-52e21b9d2cb3e614378500d924c501a7be8bea0b.zip
revert previous commit
Diffstat (limited to 'create-ssl-certificate')
-rwxr-xr-xcreate-ssl-certificate22
1 files changed, 8 insertions, 14 deletions
diff --git a/create-ssl-certificate b/create-ssl-certificate
index 0e2e250..784d0e4 100755
--- a/create-ssl-certificate
+++ b/create-ssl-certificate
@@ -2,23 +2,17 @@
# $Id$
# helper script for creating ssl certificates
-while [ $# -gt 0 ]; do
- case $1 in
- -g) group=$2; shift 2;;
- -b) bundle="true"; shift;;
- *) args=( ${args[@]:-} $1 ); shift;;
- esac
-done
-
-pkg=${args[0]} # name of the package
-num=${args[1]} # number of packages installed
-srv=${args[2]} # name of the service
-
-if [ -z "$pkg" -o -z "$num" -o -z "$srv" ]; then
- echo "usage: $0 [-g <group>] [-b] <pkg name> <num installed> <service>" 1>&2
+if [ $# -lt 3 ]; then
+ echo "usage: $0 <pkg name> <num installed> <service> <bundle> <group>" 1>&2
exit 1
fi
+pkg=$1 # name of the package
+num=$2 # number of packages installed
+srv=$3 # name of the service
+bundle=$4 # bundle mode
+group=$5 # group with read access on key
+
if [ $num = 1 ]; then
# default values
host=$(hostname)