Fix typo with yum-cron package / service

The correct package is yum-cron not yum-crontab.

Change-Id: Iba6f636f83f37f79a9c97f729e4cd2e4634d9e6d
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2018-01-09 16:32:21 -05:00
parent ad91863ff5
commit 2d316859b5
No known key found for this signature in database
GPG Key ID: 611A80832067AF38
1 changed files with 5 additions and 5 deletions

View File

@ -143,7 +143,7 @@ class openstack_project::server (
enable => true,
require => Package['ntpdate'],
}
package { 'yum-crontab':
package { 'yum-cron':
ensure => present,
}
file { '/etc/yum/yum-cron.conf':
@ -153,12 +153,12 @@ class openstack_project::server (
mode => 0644,
source => 'puppet:///modules/openstack_project/yum/yum-cron.conf',
replace => true,
require => Package['yum-crontab'],
notify => Service['yum-crontab'],
require => Package['yum-cron'],
notify => Service['yum-cron'],
}
service { 'yum-crontab':
service { 'yum-cron':
enable => true,
require => Package['yum-crontab'],
require => Package['yum-cron'],
}
}