diff --git a/modules.env b/modules.env index d0285f548a..d17d534eb4 100644 --- a/modules.env +++ b/modules.env @@ -102,6 +102,7 @@ INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-redis"]="o INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-ssh"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-releasestatus"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-reviewday"]="origin/master" +INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-sudoers"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-drupal"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-mediawiki"]="origin/master" INTEGRATION_MODULES["https://git.openstack.org/openstack-infra/puppet-unattended_upgrades"]="origin/master" diff --git a/modules/sudoers/files/sudoers b/modules/sudoers/files/sudoers deleted file mode 100644 index d5f2ccb83a..0000000000 --- a/modules/sudoers/files/sudoers +++ /dev/null @@ -1,25 +0,0 @@ -# /etc/sudoers -# -# This file MUST be edited with the 'visudo' command as root. -# -# See the man page for details on how to write a sudoers file. -# - -Defaults env_reset - -# Host alias specification - -# User alias specification - -# Cmnd alias specification - -# User privilege specification -root ALL=(ALL) ALL - -# Allow members of group sudo to execute any command after they have -# provided their password -# (Note that later entries override this, so you might need to move -# it further down) -%sudo ALL=(ALL) NOPASSWD: ALL -# -#includedir /etc/sudoers.d diff --git a/modules/sudoers/manifests/init.pp b/modules/sudoers/manifests/init.pp deleted file mode 100644 index e1ddc3c85c..0000000000 --- a/modules/sudoers/manifests/init.pp +++ /dev/null @@ -1,19 +0,0 @@ -# == Class: sudoers -# -class sudoers { - group { 'sudo': - ensure => present, - } - group { 'admin': - ensure => present, - } - - file { '/etc/sudoers': - ensure => present, - owner => 'root', - group => 'root', - mode => '0440', - source => 'puppet:///modules/sudoers/sudoers', - replace => true, - } -}