Skip to content
Snippets Groups Projects
init.pp 1.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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',
      }
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
      users::liu_user { 'mange61':
    
    Golen's avatar
    Golen committed
        commonname => 'Måns Gezelius',
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
        shell      => '/bin/bash',
        sshkey     => 'AAAAB3NzaC1yc2EAAAADAQABAAABAQDHsZ1q+e4nD2SAx659Kv1vf3tmhQmQJ/KOe4zOk4FyJt2OUoHsv82RD4rYVXxcnGojwFjTAtYTW2B4q/f334IGY9aezow/b39kkg977bJ7AC/OU1enkWFK3nkDtkP7htVbsSeogvyHf32niyosDvW8VCTNe9DZctyJ5Eu9AB0z/tuAr++/z+9sWYtiG0sGn/rUnrAvOqWHkTR2ShZHZPyXq+UCrJXHfbJ+P9EzzgFjr2uPoFgBiCqd0Ov2/zWP3k+chGcbSSKtJ3I3Ylh49jAxB1/srct4R0o7sNOKQBnrXXTAIkDLma2ilu0dAksPjD22ZYvWgRt03u7qxQR6lOB/', #lint:ignore:140chars
    
    Golen's avatar
    Golen committed
      }
    
    Golen's avatar
    Golen committed
    
      include certdist
    
    root's avatar
    root committed
    
      include tracingcarbon::python
      include tracingcarbon::yarn
    
    
    Golen's avatar
    Golen committed
      include tracingcarbon::runserver
    
    Nils Olof Paulsson's avatar
    Nils Olof Paulsson committed
    }