mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 01:47:41 +00:00
17 lines
305 B
Puppet
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
|
|
}
|
|
}
|