include certdist

# @summary A short summary of the purpose of this class
#
# A description of what this class does
#
# @example
#   include vacceval
class vacceval {
  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',
  }
}

file { '/tmp/hello.txt':
  ensure => file,
  content => "hello world!",
}