mirror of
https://github.com/zulip/zulip.git
synced 2025-11-19 14:08:23 +00:00
The new puppet.conf file has to be moved into place manually. (imported from commit 253d9a95386dae8c803a998ce2dc7e8be40c880a)
15 lines
270 B
Puppet
15 lines
270 B
Puppet
class zulip-internal ($machinetype) {
|
|
class { "zulip-internal::$machinetype": }
|
|
|
|
file { '/etc/zulip/machinetype':
|
|
ensure => file,
|
|
mode => 644,
|
|
content => "$machinetype\n",
|
|
}
|
|
|
|
Exec { path => "/usr/sbin:/usr/bin:/sbin:/bin" }
|
|
|
|
class {'apt': }
|
|
|
|
}
|