diff --git a/modules.env b/modules.env index e58e4439e6..5b2bbd3902 100644 --- a/modules.env +++ b/modules.env @@ -65,6 +65,7 @@ INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-elastic_re INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-gerrit"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-gerritbot"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-graphite"]="origin/master" +INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-packagekit"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-ssl_cert_check"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-statusbot"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-storyboard"]="origin/master" diff --git a/modules/packagekit/manifests/cron.pp b/modules/packagekit/manifests/cron.pp deleted file mode 100644 index 16721a3f2b..0000000000 --- a/modules/packagekit/manifests/cron.pp +++ /dev/null @@ -1,41 +0,0 @@ -# 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::cron -# -class packagekit::cron( - $package_ensure = present, - $enabled = 'yes', - $check_only = 'no', - $mailto = false, - $system_name = false -) inherits packagekit { - - include packagekit::params - - package { $::packagekit::params::cron_package: - ensure => $package_ensure, - } - - file { $::packagekit::params::cron_config_file: - ensure => present, - content => template("${module_name}/packagekit-background.erb"), - mode => '0644', - group => 'root', - owner => 'root', - replace => true, - require => Package[$::packagekit::params::cron_package], - } - -} diff --git a/modules/packagekit/manifests/init.pp b/modules/packagekit/manifests/init.pp deleted file mode 100644 index f6883be4d1..0000000000 --- a/modules/packagekit/manifests/init.pp +++ /dev/null @@ -1,27 +0,0 @@ -# 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 -# -class packagekit( - $package_ensure = present -) { - - include packagekit::params - - package { $::packagekit::params::package: - ensure => $package_ensure, - } - -} diff --git a/modules/packagekit/manifests/params.pp b/modules/packagekit/manifests/params.pp deleted file mode 100644 index f490fe0506..0000000000 --- a/modules/packagekit/manifests/params.pp +++ /dev/null @@ -1,27 +0,0 @@ -# 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.") - } - } -} diff --git a/modules/packagekit/templates/packagekit-background.erb b/modules/packagekit/templates/packagekit-background.erb deleted file mode 100644 index 2d772b3128..0000000000 --- a/modules/packagekit/templates/packagekit-background.erb +++ /dev/null @@ -1,17 +0,0 @@ -# should we attempt to do this? (valid: yes|no) -ENABLED=<%= @enabled %> - -# don't install, just check (valid: yes|no) -CHECK_ONLY=<%= @check_only %> - -# if MAILTO is set, the mail command is used to deliver PackageKit output -# by default MAILTO is unset, so crond mails the output by itself -<% if @mailto then %> -MAILTO=<%= @mailto %> -<% end %> - -# you may set SYSTEMNAME if you want your PackageKit emails tagged differently -# default is output of hostname command -<% if @system_name then %> -SYSTEM_NAME=<%= @system_name %> -<% end %>