summaryrefslogtreecommitdiff
path: root/src/subcommands/mh/add-hostname
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2009-01-31 18:30:59 -0500
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2009-01-31 18:30:59 -0500
commitc700e9b0dcede303ed1f160ba51f564fd314d2e3 (patch)
tree579690c1cb9e9112aa2fe4924a1c570fee357dcf /src/subcommands/mh/add-hostname
parent7d4b4815db8ba2f6f984a18a90b50032cf9158ba (diff)
parent0d36aebed69b154903e158a4c0f5cc8707cf5168 (diff)
merging from jrollins
Diffstat (limited to 'src/subcommands/mh/add-hostname')
-rwxr-xr-xsrc/subcommands/mh/add-hostname6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/subcommands/mh/add-hostname b/src/subcommands/mh/add-hostname
index fc1ae96..7726a29 100755
--- a/src/subcommands/mh/add-hostname
+++ b/src/subcommands/mh/add-hostname
@@ -12,6 +12,8 @@
# add hostname user ID to server key
+add_hostname() {
+
local userID
local fingerprint
local tmpuidMatch
@@ -61,7 +63,7 @@ if echo "$adduidCommand" | \
# update the trustdb for the authentication keyring
gpg_authentication "--check-trustdb"
- show_server_key
+ show_key
echo
echo "NOTE: User ID added to key, but key not published."
@@ -69,3 +71,5 @@ if echo "$adduidCommand" | \
else
failure "Problem adding user ID."
fi
+
+}