remove atop cronjob
This commit is contained in:
parent
e582db0a8b
commit
3b7ff697fa
1 changed files with 6 additions and 1 deletions
|
@ -42,11 +42,16 @@ class ff_gw::sysadmin($zabbixserver = '127.0.0.1', $muninserver = '127.0.0.1', $
|
||||||
'screen', 'tcpdump', 'rsync', 'file', 'psmisc']:
|
'screen', 'tcpdump', 'rsync', 'file', 'psmisc']:
|
||||||
ensure => installed,
|
ensure => installed,
|
||||||
}
|
}
|
||||||
|
->
|
||||||
|
# remove atop cronjob
|
||||||
|
file { '/etc/cron.d/atop':
|
||||||
|
ensure => absent,
|
||||||
|
}
|
||||||
|
->
|
||||||
# stop atop daemon (cf. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=506191)
|
# stop atop daemon (cf. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=506191)
|
||||||
service { 'atop':
|
service { 'atop':
|
||||||
ensure => stopped,
|
ensure => stopped,
|
||||||
enable => false,
|
enable => false,
|
||||||
require => Package['atop']
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# user accounts
|
# user accounts
|
||||||
|
|
Loading…
Reference in a new issue