Files
zulip/servers/puppet/modules/humbug/manifests/init.pp
Zev Benjamin 98add6efa2 puppet: Store the machine's type in /etc and add script to reapply the appropriate puppet config
Fixes #815

(imported from commit 0c90b74b9b11e4abcc875fbd7a2f0c48356678b2)
2013-02-11 13:19:41 -05:00

17 lines
305 B
Puppet

class humbug ($machinetype) {
class { "humbug::$machinetype": }
file { '/etc/humbug-machinetype':
ensure => file,
mode => 644,
content => "$machinetype\n",
}
Exec { path => "/usr/sbin:/usr/bin:/sbin:/bin" }
class {'apt': }
class {'apt::backports':
priority => 600
}
}