aboutsummaryrefslogtreecommitdiff
path: root/firma
diff options
context:
space:
mode:
authorrhatto <rhatto>2006-11-12 16:45:06 +0000
committerrhatto <rhatto>2006-11-12 16:45:06 +0000
commit502798d3ad9c288f6294558376aee58a84f2891c (patch)
treecc04d6d48d1545e29210771ea0f83dab287de6ab /firma
parentcb1ccf4818f08a782b8f8f1934b8b3d0ea005745 (diff)
downloadfirma-502798d3ad9c288f6294558376aee58a84f2891c.tar.gz
firma-502798d3ad9c288f6294558376aee58a84f2891c.tar.bz2
firma 0.3pre1 :)
Diffstat (limited to 'firma')
-rwxr-xr-xfirma6
1 files changed, 3 insertions, 3 deletions
diff --git a/firma b/firma
index 56fb1d6..af41452 100755
--- a/firma
+++ b/firma
@@ -1513,7 +1513,7 @@ function SubscribeUsers {
$GPG_NOBATCH --import
return_code=$?
if [ "$return_code" == "0" ]; then
- AdminLog "successfully subscribed user $1"
+ AdminLog "subscription: success"
fi
else
AdminLog "subscribe: stdin option only valid in the interactive (command-line) mode"
@@ -1526,7 +1526,7 @@ function SubscribeUsers {
$GPG --import < $2
return_code=$?
if [ "$return_code" == "0" ]; then
- AdminLog "successfully subscribed user $1"
+ AdminLog "subscription: success"
fi
else
echo >&2 "subscribe: cant add subscribers from $1: no such file or directory"
@@ -1567,7 +1567,7 @@ function SubscribeUsers {
$GPG_NOBATCH --keyserver $keyserver $method $*
return_code=$?
if [ "$return_code" == "0" ]; then
- AdminLog "successfully subscribed user $1"
+ AdminLog "subscription: success"
fi
fi
else