Remove ensure absent jenkins restarts

Now that the jenkins restarts are 'absent' on the puppetmaster,
remove them from the manifest.

Change-Id: Iffa6981fed577ddc50ac30d887903fcca85c3adf
This commit is contained in:
Ramy Asselin 2016-07-18 04:49:27 -07:00
parent f370ca6621
commit 6068c983b2

View File

@ -215,35 +215,6 @@ class openstack_project::puppetmaster (
}
}
# Jenkins master management
cron { 'restartjenkinsmasters':
ensure => absent,
# Run through all masters onces a week.
weekday => '6',
hour => '0',
minute => '15',
environment => 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin',
command => "flock -n /var/run/puppet/restart_jenkins_masters.lock ansible-playbook -f 1 /opt/system-config/production/playbooks/restart_jenkins_masters.yaml --extra-vars 'user=${jenkins_api_user} password=${jenkins_api_key}' >> /var/log/restart_jenkins_masters.log 2>&1",
}
file { '/var/log/restart_jenkins_masters.log':
ensure => absent,
}
logrotate::file { 'restartjenkinsmasters':
ensure => absent,
log => '/var/log/restart_jenkins_masters.log',
options => ['compress',
'copytruncate',
'delaycompress',
'missingok',
'rotate 7',
'daily',
'notifempty',
],
require => Cron['restartjenkinsmasters'],
}
# Ansible mgmt
# TODO: Put this into its own class, maybe called bastion::ansible or something