Merge branch 'master' of github.com:freifunkhamburg/puppet-ff_gw

This commit is contained in:
ohrensessel 2014-08-27 15:49:18 +02:00
commit e8740e0b18
2 changed files with 18 additions and 4 deletions

View file

@ -12,12 +12,22 @@ class ff_gw::sysadmin($zabbixserver = '127.0.0.1', $muninserver = '127.0.0.1', $
# next important thing: set up apt repositories
class { 'ff_gw::sysadmin::software': }
# remove cronjob
cron {
'ntpdate-debian':
ensure => absent,
command => '/usr/sbin/ntpdate-debian',
user => root,
minute => '0';
}
# replace with a real NTP daemon
package { 'ntp':
ensure => present,
}
~>
service { 'ntp':
ensure => true,
}
# user accounts
create_resources('account', $accounts)