Skip to content
Snippets Groups Projects
wallet.pp 2.43 KiB
Newer Older
Adam Lewenberg's avatar
Adam Lewenberg committed
#
# Download objects via the wallet.  It assumes that proper settings have been
# put in /etc/krb5.conf and the ACLs on the objects are set up appropriately.
#
# Examples:
#
#     # Create primary keytab file (default is primary)
#     base::wallet { 'service/adroit-gerbil':
#         path    => '/etc/adroit/gerbil.keytab',
#         owner   => 'leroy',
Adam Lewenberg's avatar
Adam Lewenberg committed
#         primary => true,
#         ensure  => present,
#     }
Adam Lewenberg's avatar
Adam Lewenberg committed
#     # Add another keytab to the above primary keytab
#     base::wallet { 'service/adroit-gerbil-another':
#         path    => '/etc/adroit/gerbil.keytab',
Adam Lewenberg's avatar
Adam Lewenberg committed
#         primary => false,
#         require => Base::Wallet['service/adroit-gerbil'],
Adam Lewenberg's avatar
Adam Lewenberg committed
#         ensure  => present,
#     }
Adam Lewenberg's avatar
Adam Lewenberg committed
#     # Remove the keytab file
#     base::wallet { 'service/funky-chicken':
#         path   => '/etc/funky/chicken.keytab',
Adam Lewenberg's avatar
Adam Lewenberg committed
#         ensure => absent,
#     }
#
#     # Download a password file.
#     base::wallet { 'unix-foobar-db-baz':
#         path => '/etc/foobar/password',
#         type => 'file',
Adam Lewenberg's avatar
Adam Lewenberg committed
#     }

# These helper routines are broken out separately to reduce indentation, but
# shouldn't be called separately.  They're purely an implementation detail.

define base::wallet(
  $ensure         = 'present',
  $auth_keytab    = '/etc/krb5.keytab',
  $auth_principal = 'NA',
  $owner          = 'root',
  $group          = 'root',
  $mode           = '0600',
  $primary        = 'true',
  $type           = 'keytab',
  $onlyif         = 'NONE',
  $heimdal        = false,
  $path
Adam Lewenberg's avatar
Adam Lewenberg committed
) {
  case $auth_principal {
    'NA': {
      $kstart_cmd = "k5start -Uqf '$auth_keytab' --"
Adam Lewenberg's avatar
Adam Lewenberg committed
    }
    default: {
      $kstart_cmd = "k5start -qf '$auth_keytab' '$auth_principal' --"
Adam Lewenberg's avatar
Adam Lewenberg committed
    }
  case $ensure {
    'absent': {
        file { $path: ensure => absent }
    }
    'present': {
      case $type {
        'keytab': {
          base::wallet::keytab { $name:
            kstart_cmd => $kstart_cmd,
            path       => $path,
            primary    => $primary,
            mode       => $mode,
            owner      => $owner,
            group      => $group,
            heimdal    => $heimdal,
          }
Adam Lewenberg's avatar
Adam Lewenberg committed
        }
        default: {
          base::wallet::other { $name:
            kstart_cmd => $kstart_cmd,
            path       => $path,
            type       => $type,
            mode       => $mode,
            owner      => $owner,
            group      => $group,
            onlyif     => $onlyif,
          }
Adam Lewenberg's avatar
Adam Lewenberg committed
        }
Adam Lewenberg's avatar
Adam Lewenberg committed
    }
Adam Lewenberg's avatar
Adam Lewenberg committed
}