Skip to content
Snippets Groups Projects
init.pp 1.3 KiB
Newer Older
Nils Olof Paulsson's avatar
Nils Olof Paulsson committed
# @summary A short summary of the purpose of this class
#
# A description of what this class does
#
# @example
#   include tracingcarbon
class tracingcarbon {
  firewalld_service { 'Allow SSH in the liu zone':
    ensure  => present,
    zone    => 'liu',
    service => 'ssh',
  }
  firewalld_service {'Allow http in the liu Zone':
    ensure  => present,
    zone    => 'liu',
    service => 'http',
  }
  firewalld_service {'Allow https in the liu Zone':
    ensure  => present,
    zone    => 'liu',
    service => 'https',
  }
  firewalld_service {'Allow http in the public Zone':
    ensure  => present,
    zone    => 'public',
    service => 'http',
  }
  firewalld_service {'Allow https in the public Zone':
    ensure  => present,
    zone    => 'public',
    service => 'https',
  }
Golen's avatar
Golen committed
  ssh_authorized_key { 'mange61@liu.se':
    ensure => present,
    user   => 'mange61',
    type   => 'ssh-rsa',
Golen's avatar
Golen committed
    key    => 'AAAAB3NzaC1yc2EAAAADAQABAAABAQDHsZ1q+e4nD2SAx659Kv1vf3tmhQmQJ/KOe4zOk4FyJt2OUoHsv82RD4rYVXxcnGojwFjTAtYTW2B4q/f334IGY9aezow/b39kkg977bJ7AC/OU1enkWFK3nkDtkP7htVbsSeogvyHf32niyosDvW8VCTNe9DZctyJ5Eu9AB0z/tuAr++/z+9sWYtiG0sGn/rUnrAvOqWHkTR2ShZHZPyXq+UCrJXHfbJ+P9EzzgFjr2uPoFgBiCqd0Ov2/zWP3k+chGcbSSKtJ3I3Ylh49jAxB1/srct4R0o7sNOKQBnrXXTAIkDLma2ilu0dAksPjD22ZYvWgRt03u7qxQR6lOB/', # lint:ignore:140chars
Golen's avatar
Golen committed
  }
Nils Olof Paulsson's avatar
Nils Olof Paulsson committed
}