summaryrefslogtreecommitdiff
path: root/src/share/mh/add_hostname
blob: 70bbec3f535acc9149a6c401cc5682d7a88c8d7b (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. echo "The following user ID will be added to the host key:"
  28. echo " $userID"
  29. read -p "Are you sure you would like to add this user ID? (y/N) " OK; OK=${OK:=N}
  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=$(cat <<EOF
  38. adduid
  39. $userID
  40. save
  41. EOF
  42. )
  43. # execute edit-key script
  44. if echo "$adduidCommand" | gpg_host_edit ; then
  45. update_gpg_pub_file
  46. show_key
  47. echo
  48. echo "NOTE: User ID added to key, but key not published."
  49. echo "Run '$PGRM publish-key' to publish the new user ID."
  50. else
  51. failure "Problem adding user ID."
  52. fi
  53. }