aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/reports/manifests/ii.pp
blob: b14d1336680b476d91c7edc6aedf00f71d415ac9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class reports {
    class ii {
        $channel = "#mageia-sysadm"
        $server = "irc.freenode.net"
        # tribute to Masamune Shirow
        $nick = "project_2501"
        
        ii::bot { $nick:
            channel => $channel,
            server => $server,
        }

        file { "/etc/puppet/socket.yaml":
            content => "reports/socket.yaml",
        }
    }
}