summaryrefslogtreecommitdiff
path: root/src/share/mh/add_hostname
blob: 46326bb998e0544f2f5ff901940b48afbc4d87b5 (plain)
  1. # -*-shell-script-*-
  2. # This should be sourced by bash (though we welcome changes to make it POSIX sh compliant)
  3. # Monkeysphere host add-hostname subcommand
  4. #
  5. # The monkeysphere scripts are written by:
  6. # Jameson Rollins <jrollins@finestructure.net>
  7. # Jamie McClelland <jm@mayfirst.org>
  8. # Daniel Kahn Gillmor <dkg@fifthhorseman.net>
  9. #
  10. # They are Copyright 2008-2009, and are all released under the GPL,
  11. # version 3 or later.
  12. # add hostname user ID to server key
  13. add_hostname() {
  14. local userID
  15. local fingerprint
  16. local tmpuidMatch
  17. local line
  18. local adduidCommand
  19. if [ -z "$1" ] ; then
  20. failure "You must specify a hostname to add."
  21. fi
  22. userID="ssh://${1}"
  23. # test that the desired user ID does not already exist
  24. find_host_userid > /dev/null && \
  25. failure "Host userID '$userID' already exists."
  26. echo "The following user ID will be added to the host key:"
  27. echo " $userID"
  28. read -p "Are you sure you would like to add this user ID? (y/N) " OK; OK=${OK:=N}
  29. if [ ${OK/y/Y} != 'Y' ] ; then
  30. failure "User ID not added."
  31. fi
  32. # edit-key script command to add user ID
  33. adduidCommand=$(cat <<EOF
  34. adduid
  35. $userID
  36. save
  37. EOF
  38. )
  39. # execute edit-key script
  40. if echo "$adduidCommand" | gpg_host_edit ; then
  41. show_key
  42. echo
  43. echo "NOTE: User ID added to key, but key not published."
  44. echo "Run '$PGRM publish-key' to publish the new user ID."
  45. else
  46. failure "Problem adding user ID."
  47. fi
  48. }