summaryrefslogtreecommitdiff
path: root/monkeysphere.conf
blob: 640120382d75d1cbee31882b49562a6328f7331b (plain)
  1. # monkeysphere system configuration file
  2. # This is particular configuration is meant to be sourced by the
  3. # rhesus shell script when run in administrative mode to maintain
  4. # authorized_keys files for users.
  5. AUTHORIZED_USER_IDS=/etc/monkeysphere/authorized_user_ids/"$USER"
  6. STAGING_AREA=/var/lib/monkeysphere/stage/"$USER"
  7. # gpg home directory for server
  8. GNUPGHOME=/etc/monkeysphere/gnupg
  9. # gpg keyserver to search for keys
  10. KEYSERVER=subkeys.pgp.net
  11. # required capabilities of keys
  12. # must be quoted, lowercase, space-seperated list of the following:
  13. # e = encrypt
  14. # s = sign
  15. # c = certify
  16. # a = authentication
  17. REQUIRED_KEY_CAPABILITY="e a"
  18. # Path to user-controlled authorized_keys file to add to
  19. # Monkeysphere-generated authorized_keys file. If empty, then no
  20. # user-controlled file will be added. To specify the user's home
  21. # directory, use the string "~${USER}"
  22. USER_CONTROLLED_AUTHORIZED_KEYS="~${USER}/.ssh/authorized_keys"