aboutsummaryrefslogtreecommitdiff
path: root/personal_infra/puppet/site/dixie.bcn.int.pdp7.net.pp
blob: 6c7b7c732c9ec928048250e56f7f80d0865182a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
node 'dixie.bcn.int.pdp7.net' {
  class {'dns_dhcp':}
  file {'/etc/dnsmasq.d/static.conf':
    content => "host-record=router,router.bcn.int.pdp7.net,192.168.76.1
host-record=archerc7,archerc7.bcn.int.pdp7.net,192.168.76.6
host-record=dixie.bcn.int.pdp7.net,dixie,192.168.76.2
dhcp-option=121,10.0.0.0/8,192.168.76.2
",
    notify => Service["dnsmasq"],
  }

  service {['sssd-pac.service', 'sssd-pac.socket']:
    ensure => stopped,
    enable => mask,
  }
}