Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# @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',
}
# ssh_authorized_key { '<name here>@liu.se':
# ensure => present,
# user => '<user here>',
# type => 'ssh-rsa',
# key => '<key here>',
# }
}