summaryrefslogtreecommitdiff
path: root/src/share/mh/add_hostname
blob: 36f174de9049f433b13e068aa12d11a22a036be8 (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. if [ "$PROMPT" = "true" ] ; then
  27. read -p "The following user ID will be added to the host key:
  28. $userID
  29. Are you sure you would like to add this user ID? (Y/n) " OK; OK=${OK:=Y}
  30. if [ "${OK/y/Y}" != 'Y' ] ; then
  31. failure "User ID not added."
  32. fi
  33. else
  34. log debug "adding user ID without prompting."
  35. fi
  36. # edit-key script command to add user ID
  37. adduidCommand="adduid
  38. $userID
  39. save"
  40. # end script
  41. # execute edit-key script
  42. if echo "$adduidCommand" | gpg_host_edit ; then
  43. update_gpg_pub_file
  44. show_key
  45. echo
  46. echo "NOTE: User ID added to key, but key not published."
  47. echo "Run '$PGRM publish-key' to publish the new user ID."
  48. else
  49. failure "Problem adding user ID."
  50. fi
  51. }