system-config/modules/packagekit/manifests/params.pp
Dan Prince 80684069b6 Add packagekit module.
This module supports automatic upgrades on RHEL/Centos slaves.
It works by installing PackageKit-cron and updating the config
file to enable automatic updates.

PackageKit-cron runs once a day via cron.

Fixes LP Bug #1180948.

Change-Id: I901ebf5f48fabee9456333ade0c141beacac62e6
Reviewed-on: https://review.openstack.org/29422
Reviewed-by: James E. Blair <corvus@inaugust.com>
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
2013-05-17 17:21:21 +00:00

28 lines
945 B
Puppet

# Copyright 2013 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# Class: packagekit::params
class packagekit::params {
case $::osfamily {
'RedHat': {
$package = 'PackageKit'
$cron_package = 'PackageKit-cron'
$cron_config_file = '/etc/sysconfig/packagekit-background'
}
default: {
fail("Unsupported osfamily: ${::osfamily} The 'packagekit' module only supports osfamily RedHat.")
}
}
}