simp-rspec-puppet-facts 1.4.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -2
  3. data/facts/1.7/centos-6-x86_64.facts +370 -90
  4. data/facts/1.7/centos-7-x86_64.facts +317 -37
  5. data/facts/1.7/redhat-6-x86_64.facts +370 -93
  6. data/facts/1.7/redhat-7-x86_64.facts +339 -59
  7. data/facts/2.0/centos-6-x86_64.facts +470 -124
  8. data/facts/2.0/centos-7-x86_64.facts +408 -60
  9. data/facts/2.0/redhat-6-x86_64.facts +487 -131
  10. data/facts/2.0/redhat-7-x86_64.facts +451 -97
  11. data/facts/2.1/centos-6-x86_64.facts +487 -138
  12. data/facts/2.1/centos-7-x86_64.facts +417 -66
  13. data/facts/2.1/redhat-6-x86_64.facts +583 -141
  14. data/facts/2.1/redhat-7-x86_64.facts +547 -107
  15. data/facts/2.2/centos-6-x86_64.facts +522 -173
  16. data/facts/2.2/centos-7-x86_64.facts +422 -71
  17. data/facts/2.2/redhat-6-x86_64.facts +605 -163
  18. data/facts/2.2/redhat-7-x86_64.facts +552 -112
  19. data/facts/2.3/centos-6-x86_64.facts +509 -160
  20. data/facts/2.3/centos-7-x86_64.facts +422 -71
  21. data/facts/2.3/redhat-6-x86_64.facts +601 -159
  22. data/facts/2.3/redhat-7-x86_64.facts +552 -112
  23. data/facts/2.4/centos-6-x86_64.facts +505 -156
  24. data/facts/2.4/centos-7-x86_64.facts +422 -71
  25. data/facts/2.4/redhat-6-x86_64.facts +593 -150
  26. data/facts/2.4/redhat-7-x86_64.facts +553 -112
  27. data/facts/2.5/--.facts +572 -0
  28. data/facts/2.5/centos-6-x86_64.facts +589 -0
  29. data/facts/2.5/centos-7-x86_64.facts +589 -0
  30. data/facts/2.5/redhat-6-x86_64.facts +678 -0
  31. data/facts/2.5/redhat-7-x86_64.facts +679 -0
  32. data/facts/3.0/centos-6-x86_64.facts +407 -100
  33. data/facts/3.0/centos-7-x86_64.facts +441 -119
  34. data/facts/3.0/redhat-6-x86_64.facts +554 -199
  35. data/facts/3.0/redhat-7-x86_64.facts +546 -202
  36. data/facts/3.3/centos-6-x86_64.facts +420 -104
  37. data/facts/3.3/centos-7-x86_64.facts +451 -124
  38. data/facts/3.3/redhat-6-x86_64.facts +556 -214
  39. data/facts/3.3/redhat-7-x86_64.facts +811 -0
  40. data/facts/3.4/centos-6-x86_64.facts +426 -108
  41. data/facts/3.4/centos-7-x86_64.facts +457 -128
  42. data/facts/3.4/redhat-6-x86_64.facts +562 -218
  43. data/facts/3.4/redhat-7-x86_64.facts +814 -0
  44. data/facts/3.5/centos-6-x86_64.facts +794 -0
  45. data/facts/3.5/centos-7-x86_64.facts +870 -0
  46. data/facts/3.5/redhat-6-x86_64.facts +822 -0
  47. data/facts/3.5/redhat-7-x86_64.facts +891 -0
  48. data/facts/3.6/centos-6-x86_64.facts +795 -0
  49. data/facts/3.6/centos-7-x86_64.facts +871 -0
  50. data/facts/3.6/redhat-6-x86_64.facts +823 -0
  51. data/facts/3.6/redhat-7-x86_64.facts +892 -0
  52. data/facts/3.7/centos-6-x86_64.facts +787 -0
  53. data/facts/3.7/centos-7-x86_64.facts +863 -0
  54. data/facts/3.7/redhat-6-x86_64.facts +815 -0
  55. data/facts/3.7/redhat-7-x86_64.facts +884 -0
  56. data/facts/Vagrantfile +149 -27
  57. data/facts/puppetfiles/Puppetfile.6.0.0-0 +395 -0
  58. data/facts/scripts/get_facts.rb +1 -1
  59. data/facts/scripts/get_facts_for_each_facter.sh +15 -5
  60. data/lib/simp/rspec-puppet-facts.rb +81 -13
  61. data/lib/simp/version.rb +1 -1
  62. data/spec/simp_rspec_puppet_facts_spec.rb +21 -18
  63. metadata +83 -43
data/facts/Vagrantfile CHANGED
@@ -1,44 +1,166 @@
1
1
  # -*- mode: ruby -*-
2
2
  # vi: set ft=ruby :
3
3
 
4
+
4
5
  # Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
5
- VAGRANTFILE_API_VERSION = "2"
6
+ VAGRANTFILE_API_VERSION = '2'
7
+
8
+ # Used with google provider unless ENV['GOOGLE_ZONE'] is set
9
+ DEFAULT_GOOGLE_ZONE = 'us-east1-b'
6
10
 
7
11
  Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
12
+ config.vm.hostname = 'foo.example.com'
8
13
 
9
- config.vm.hostname = "foo.example.com"
10
- config.vm.define "redhat-6-x86_64" do |host|
11
- host.vm.box = "anandbitra/redhat-6.5"
12
- host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
13
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'redhat 6'"
14
- host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
14
+ config.vm.provider 'virtualbox' do |vb|
15
+ # centos/* boxes don't install vbox guest additions
16
+ unless Vagrant.has_plugin?('vagrant-vbguest')
17
+ msg = 'ERROR: plugin `vagrant-vbguest` is missing. To fix, run:' +
18
+ "\n\n\tvagrant plugin install vagrant-vbguest\n\n"
19
+ warn msg unless @_msg
20
+ @_msg = msg
21
+ exit 99
22
+ end
15
23
  end
16
24
 
17
- config.vm.define "redhat-7-x86_64" do |host|
18
- host.vm.box = "mrlesmithjr/rhel-7"
19
- host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
20
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'redhat 7'"
21
- host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
25
+ # Reference: https://github.com/mitchellh/vagrant-google#configuration
26
+ config.vm.provider 'google' do |google, override|
27
+
28
+ # The Client Email address for your Service Account
29
+ google.google_project_id = ENV.fetch('GOOGLE_CLOUD_PROJECT_ID')
30
+
31
+ # The Client Email address for your Service Account
32
+ # (it should end with gserviceaccount.com)
33
+ google.google_client_email = ENV.fetch('GOOGLE_CLIENT_EMAIL')
34
+
35
+ if ENV.key? 'GOOGLE_KEY_LOCATION'
36
+ # The location of the P12 private key file matching your Service Account.
37
+ google.google__key_location = ENV['GOOGLE_KEY_LOCATION']
38
+ else
39
+ # The location of the JSON private key file matching your Service Account.
40
+ # "/path/to/your/private-key.json"
41
+ google.google_json_key_location = ENV.fetch('GOOGLE_JSON_KEY_LOCATION')
42
+ end
43
+
44
+ # The zone name where the instance will be created.
45
+ # Make sure to set this to trigger the zone_config
46
+ google.zone = _zone = ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE)
47
+
48
+ google.zone_config _zone do |zone|
49
+ # zone.name = 'vagrant-rspec-puppet-facts'
50
+ zone.machine_type = ENV['GOOGLE_MACHINE_TYPE'] || 'g1-small'
51
+ zone.zone = _zone
52
+ zone.metadata = {'custom' => 'metadata', 'testing' => 'foobarbaz'}
53
+ zone.scopes = ['monitoring', 'https://www.googleapis.com/auth/compute']
54
+ zone.tags = ['vagrant', 'simp-rspec-puppet-facts', 'temporary']
55
+ end
56
+
57
+ override.ssh.username = ENV.fetch('GOOGLE_SSH_USERNAME')
58
+ override.ssh.private_key_path = ENV.fetch('GOOGLE_SSH_KEY', '~/.ssh/id_rsa')
59
+ override.vm.box = 'google/gce'
22
60
  end
23
61
 
24
- config.vm.define "centos-6-x86_64" do |host|
25
- host.vm.box = "puppetlabs/centos-6.6-64-nocm"
26
- host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
27
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'centos 6'"
28
- host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
62
+
63
+ # Optional: RHEL subscription information
64
+ #
65
+ # A licensed RHEL subscription is required to use yum to configure VMs, and
66
+ # yum is needed to sey up the environment to collect most SIMP facter facts.
67
+ #
68
+ # Some providers' images (e.g., Google) already have RHEL subscriptions.
69
+ # However, if yours doesn't (ex: virtualbox), you can install the vagrant
70
+ # plugin `vagrant-registration` and set the RHEL_SUB_* environment variables
71
+ # below:
72
+ if Vagrant.has_plugin?('vagrant-registration')
73
+ if ENV['RHEL_SUB_USERNAME'] && ENV['RHEL_SUB_PASSWORD']
74
+ ENV['RHEL'] = 'yes'
75
+ config.registration.username = ENV['RHEL_SUB_USERNAME']
76
+ config.registration.password = ENV['RHEL_SUB_PASSWORD']
77
+ elsif ENV['RHEL_SUB_ORG'] && ENV['RHEL_SUB_ACTIVATIONKEY']
78
+ ENV['RHEL'] = 'yes'
79
+ config.registration.org = ENV['RHEL_SUB_ORG']
80
+ config.registration.activationkey = ENV['RHEL_SUB_ACTIVATIONKEY']
81
+ end
29
82
  end
30
83
 
31
- config.vm.define "centos-7-x86_64" do |host|
32
- host.vm.box = "puppetlabs/centos-7.0-64-nocm"
33
- host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
34
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'centos 7'"
35
- host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
84
+ # The centos/* machines won't support vboxsf
85
+ # config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ['.git/']
86
+ config.vm.synced_folder ".", "/vagrant", type: "virtualbox"
87
+
88
+ unless ENV['CENTOS'] == 'no'
89
+ ### config.vm.define "centos-6-x86_64" do |host|
90
+ ### host.vm.provider 'virtualbox' do |vb,override|
91
+ ### vb.vm.box = "centos/6"
92
+ ### end
93
+ ### host.vm.provider 'google' do |google,override|
94
+ ### google.zone = ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE)
95
+ ### google.zone_config ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE) do |zone|
96
+ ### zone.image = 'centos-6-v20170717'
97
+ ### end
98
+ ### end
99
+ ### host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
100
+ ### host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'centos 7'"
101
+ ### host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
102
+ ### end
103
+
104
+ config.vm.define "centos-7-x86_64" do |host|
105
+ host.vm.provider 'virtualbox' do |vb,override|
106
+ vb.vm.box = "centos/7"
107
+ end
108
+ host.vm.provider 'google' do |google,override|
109
+ google.zone = ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE)
110
+ google.zone_config ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE) do |zone|
111
+ zone.image = 'centos-7-v20170719'
112
+ end
113
+ end
114
+ host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
115
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'centos 7'"
116
+ host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
117
+ end
36
118
  end
37
119
 
38
- config.vm.define "fedora-23-x86_64" do |host|
39
- host.vm.box = "box-cutter/fedora23"
40
- host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
41
- host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'fedora 23'"
42
- host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
120
+ if ENV['RHEL'] == 'yes'
121
+ config.vm.define "redhat-6-x86_64" do |host|
122
+ os = 'redhat'
123
+ ver = '6'
124
+ if Vagrant.has_plugin?('vagrant-rsync-back')
125
+ config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: [".git/", ".idea/"], args: ['--verbose', '--archive', '--delete', '-z', '--prune-empty-dirs', "--include='*/'", "--include='#{os}-#{ver}-x86_64.facts'", "--exclude='*'"]
126
+ end
127
+
128
+ config.vm.provider 'virtualbox' do |vb|
129
+ vb.vm.box = "anandbitra/redhat-6.5"
130
+ end
131
+
132
+ host.vm.provider 'google' do |google,override|
133
+ google.zone = ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE)
134
+ google.zone_config ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE) do |zone|
135
+ zone.image = 'rhel-6-v20170717'
136
+ end
137
+ end
138
+
139
+ host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
140
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'#{os} #{ver}'"
141
+ host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
142
+ end
143
+
144
+ config.vm.define "redhat-7-x86_64" do |host|
145
+ os = 'redhat'
146
+ ver = '7'
147
+ if Vagrant.has_plugin?('vagrant-rsync-back')
148
+ config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: [".git/", ".idea/"], args: ['--verbose', '--archive', '--delete', '-z', '--prune-empty-dirs', "--include='*/'", "--include='#{os}-#{ver}-x86_64.facts'", "--exclude='*'"]
149
+ end
150
+
151
+ host.vm.provider 'virtualbox' do |vb,override|
152
+ vb.vm.box = "mrlesmithjr/rhel-7"
153
+ end
154
+ host.vm.provider 'google' do |google,override|
155
+ google.zone = ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE)
156
+ google.zone_config ENV.fetch('GOOGLE_ZONE', DEFAULT_GOOGLE_ZONE) do |zone|
157
+ zone.image = 'rhel-7-v20170719'
158
+ end
159
+ end
160
+ host.vm.provision "file", source: "Gemfile", destination: "Gemfile"
161
+ host.vm.provision "shell", path: "scripts/get_facts_for_each_facter.sh", args: "'#{os} #{ver}'"
162
+ host.vm.provision "shell", inline: "/sbin/shutdown -h now" unless ENV['SHUTDOWN'] == 'no'
163
+ end
164
+
43
165
  end
44
166
  end
@@ -0,0 +1,395 @@
1
+ moduledir 'modules'
2
+
3
+ mod 'camptocamp-kmod',
4
+ :git => 'https://github.com/simp/puppet-kmod.git',
5
+ :ref => '0d69a96e8d0d3a08da0d5f476c733134df4fb9ee'
6
+
7
+ mod 'herculesteam-augeasproviders',
8
+ :git => 'https://github.com/simp/augeasproviders',
9
+ :ref => 'bbfc6ff9fa9acfd39e1ae9aff6341dc07e86a8d4'
10
+
11
+ mod 'herculesteam-augeasproviders_apache',
12
+ :git => 'https://github.com/simp/augeasproviders_apache',
13
+ :ref => '66f17fabef214dc830b1692123c99990d03d4b6b'
14
+
15
+ mod 'herculesteam-augeasproviders_base',
16
+ :git => 'https://github.com/simp/augeasproviders_base',
17
+ :ref => 'de6152df502f2642003c439195acc438c6da69b3'
18
+
19
+ mod 'herculesteam-augeasproviders_core',
20
+ :git => 'https://github.com/simp/augeasproviders_core',
21
+ :ref => '72fccf10b532f06fc81cf491614e7119c72ee981'
22
+
23
+ mod 'herculesteam-augeasproviders_grub',
24
+ :git => 'https://github.com/simp/augeasproviders_grub',
25
+ :ref => 'b48597b56a48aa4cbae2f3866d32a67d6950c79b'
26
+
27
+ mod 'herculesteam-augeasproviders_mounttab',
28
+ :git => 'https://github.com/simp/augeasproviders_mounttab',
29
+ :ref => '670e8eb3df1297735da50d1ff5ec10c547acf00c'
30
+
31
+ mod 'herculesteam-augeasproviders_nagios',
32
+ :git => 'https://github.com/simp/augeasproviders_nagios',
33
+ :ref => '4af1337ecbedfd1f8e79084c919b25a25b3f7d62'
34
+
35
+ mod 'herculesteam-augeasproviders_pam',
36
+ :git => 'https://github.com/simp/augeasproviders_pam',
37
+ :ref => 'a9481948712e2e2951162cbcf5dda7003d54cf16'
38
+
39
+ mod 'herculesteam-augeasproviders_postgresql',
40
+ :git => 'https://github.com/simp/augeasproviders_postgresql',
41
+ :ref => '6b70535febce71e6d54c04e065deebd590491083'
42
+
43
+ mod 'herculesteam-augeasproviders_puppet',
44
+ :git => 'https://github.com/simp/augeasproviders_puppet',
45
+ :ref => 'bb3310e60ddfeddc9ab2b45f05066e44ff2b942e'
46
+
47
+ mod 'herculesteam-augeasproviders_shellvar',
48
+ :git => 'https://github.com/simp/augeasproviders_shellvar',
49
+ :ref => '455780660018a7f8bccfedb0ec2d6aad4c864caa'
50
+
51
+ mod 'herculesteam-augeasproviders_ssh',
52
+ :git => 'https://github.com/simp/augeasproviders_ssh',
53
+ :ref => 'a8b72a482a37fe86827e41659a7d8753a309cb07'
54
+
55
+ mod 'herculesteam-augeasproviders_sysctl',
56
+ :git => 'https://github.com/simp/augeasproviders_sysctl',
57
+ :ref => '4425603e3c95e086596c9e4ab41813b408f99785'
58
+
59
+ mod 'onyxpoint-gpasswd',
60
+ :git => 'https://github.com/simp/puppet-gpasswd',
61
+ :ref => '04431f902da8b20527e1cb5eb98ec6f4fefd6429'
62
+
63
+ mod 'puppetlabs-apache',
64
+ :git => 'https://github.com/simp/puppetlabs-apache',
65
+ :ref => 'e267d693abab94f68e3e6a9c1c445e9db83dc070'
66
+
67
+ mod 'puppetlabs-concat',
68
+ :git => 'https://github.com/simp/puppetlabs-concat',
69
+ :ref => '5eadf453a12a3df723380de1b80a2edc9ed10956'
70
+
71
+ mod 'puppetlabs-inifile',
72
+ :git => 'https://github.com/simp/puppetlabs-inifile',
73
+ :ref => '252ab552f4bf57d1099c2c2f5578f602caa7b1a5'
74
+
75
+ mod 'puppetlabs-java',
76
+ :git => 'https://github.com/simp/puppetlabs-java',
77
+ :ref => 'e36f6ce7603d2c14d391d368de171b0828437617'
78
+
79
+ mod 'puppetlabs-java_ks',
80
+ :git => 'https://github.com/simp/puppetlabs-java_ks',
81
+ :ref => 'ef5ac6157f6ee90917af606b25010f31c906ed92'
82
+
83
+ mod 'puppetlabs-motd',
84
+ :git => 'https://github.com/simp/puppetlabs-motd',
85
+ :ref => 'ac521566a31a5ba6aca9c6fe3f30c57dd5cf7449'
86
+
87
+ mod 'puppetlabs-mysql',
88
+ :git => 'https://github.com/simp/puppetlabs-mysql',
89
+ :ref => '9442272f5654b10d1ce33559ebb73d45ff23a128'
90
+
91
+ mod 'puppetlabs-postgresql',
92
+ :git => 'https://github.com/simp/puppetlabs-postgresql',
93
+ :ref => 'd022a56b28b2174456fc0f6adc51a4b54493afad'
94
+
95
+ mod 'puppetlabs-stdlib',
96
+ :git => 'https://github.com/simp/puppetlabs-stdlib',
97
+ :ref => '7507af555361b2dcba8ed6189dc54c21e64ea031'
98
+
99
+ mod 'richardc-datacat',
100
+ :git => 'https://github.com/simp/puppet-datacat',
101
+ :ref => '93b88b78364ee35f2bf39ca98ad08b78f423c1d2'
102
+
103
+ mod 'saz-timezone',
104
+ :git => 'https://github.com/simp/puppet-timezone',
105
+ :ref => '9344a1d094313b7d94e1ee4da4be9bda441c2708'
106
+
107
+ mod 'simp-acpid',
108
+ :git => 'https://github.com/simp/pupmod-simp-acpid',
109
+ :ref => '66ec8df52c867252a742c8023ddf176105147dc3'
110
+
111
+ mod 'simp-activemq',
112
+ :git => 'https://github.com/simp/pupmod-simp-activemq',
113
+ :ref => '488f5a0d5b53063c125b93a596626193b71aaa08'
114
+
115
+ mod 'simp-aide',
116
+ :git => 'https://github.com/simp/pupmod-simp-aide',
117
+ :ref => '57a04d9f6e179caddfc103ee5da2ccc9282ded2e'
118
+
119
+ mod 'simp-at',
120
+ :git => 'https://github.com/simp/pupmod-simp-at',
121
+ :ref => '35bf42043b4b664a61b6b6b6d851ea1ee3b14160'
122
+
123
+ mod 'simp-auditd',
124
+ :git => 'https://github.com/simp/pupmod-simp-auditd',
125
+ :ref => '01d15c8d79ce9243c682863b3268200e3f6ee50a'
126
+
127
+ mod 'simp-autofs',
128
+ :git => 'https://github.com/simp/pupmod-simp-autofs',
129
+ :ref => 'd44e2c10cd4ecfc12afd0d3e4ae6ba7a9a7d3787'
130
+
131
+ mod 'simp-chkrootkit',
132
+ :git => 'https://github.com/simp/pupmod-simp-chkrootkit',
133
+ :ref => '9896b324489f1f615c48736aed18f47c2bc86de8'
134
+
135
+ mod 'simp-clamav',
136
+ :git => 'https://github.com/simp/pupmod-simp-clamav',
137
+ :ref => 'c0e603c9af7ef72c3657a759ac450d2682b2fa64'
138
+
139
+ mod 'simp-compliance_markup',
140
+ :git => 'https://github.com/simp/pupmod-simp-compliance_markup',
141
+ :ref => 'cadc444b001ef06f423dca141229cc91d043e932'
142
+
143
+ mod 'simp-cron',
144
+ :git => 'https://github.com/simp/pupmod-simp-cron',
145
+ :ref => '3813e45a67c21ee35f1afbe24f6783573d4f9f0a'
146
+
147
+ mod 'simp-dhcp',
148
+ :git => 'https://github.com/simp/pupmod-simp-dhcp',
149
+ :ref => '178a113b3e5e5d4f9c4e6846a5500e18a0428eaf'
150
+
151
+ ###mod 'simp-dirtycow',
152
+ ### :git => 'https://github.com/simp/pupmod-simp-dirtycow.git',
153
+ ### :ref => 'e6191625e791d711f72eaf9ed4fb8e54c80a5968'
154
+
155
+ mod 'simp-fips',
156
+ :git => 'https://github.com/simp/pupmod-simp-fips',
157
+ :ref => 'bde5e71939f7e3c1801d44bb2df825ccef6f1a09'
158
+
159
+ mod 'simp-freeradius',
160
+ :git => 'https://github.com/simp/pupmod-simp-freeradius',
161
+ :ref => 'c602ce9f0ed1957d48514a0cd37257bccd903c0b'
162
+
163
+ ###mod 'simp-gdm',
164
+ ### :git => 'https://github.com/simp/pupmod-simp-gdm',
165
+ ### :ref => 'b50ca2bb9a3482620379b747736e9ba0b3bf3084'
166
+
167
+ #mod 'simp-gnome',
168
+ # :git => 'https://github.com/simp/pupmod-simp-gnome',
169
+ # :ref => 'e706e2b2e22cecdca86d2ee48143a1c607a486df'
170
+
171
+ mod 'simp-haveged',
172
+ :git => 'https://github.com/simp/puppet-haveged',
173
+ :ref => 'd0e335efbccfd8e12f1ad2b70855df21a71aa7a3'
174
+
175
+ mod 'simp-incron',
176
+ :git => 'https://github.com/simp/pupmod-simp-incron',
177
+ :ref => '0faecbcf94c40c00662d70bae17640936816066e'
178
+
179
+ mod 'simp-iptables',
180
+ :git => 'https://github.com/simp/pupmod-simp-iptables',
181
+ :ref => '0df308fdfd92d9bbff3f90574955ca7e612cf5ff'
182
+
183
+ mod 'simp-issue',
184
+ :git => 'https://github.com/simp/pupmod-simp-issue',
185
+ :ref => '31fd9b22d3085d1c34d4d208d73b23a8094fc4ab'
186
+
187
+ ###mod 'simp-jenkins',
188
+ ### :git => 'https://github.com/simp/pupmod-simp-jenkins',
189
+ ### :ref => 'b3b024b8246c8c4445c8b97404c994f7aada6384'
190
+
191
+ #mod 'simp-journald',
192
+ # :git => 'https://github.com/simp/pupmod-simp-journald.git',
193
+ # :ref => '0a6df1389b58ac787f3339a7f6ac3d1cdf56b9b9'
194
+
195
+ mod 'simp-krb5',
196
+ :git => 'https://github.com/simp/pupmod-simp-krb5',
197
+ :ref => '04941954129a52863368c3907f674aecd655271a'
198
+
199
+ ###mod 'simp-libreswan',
200
+ ### :git => 'https://github.com/simp/pupmod-simp-libreswan',
201
+ ### :ref => 'f850061118a8decfe62ea2fca25d222b33716cde'
202
+
203
+ ###mod 'simp-libvirt',
204
+ ### :git => 'https://github.com/simp/pupmod-simp-libvirt',
205
+ ### :ref => '6b3f491f14ba2a05287d80578976d7f568b0c3c6'
206
+
207
+ mod 'simp-logrotate',
208
+ :git => 'https://github.com/simp/pupmod-simp-logrotate',
209
+ :ref => 'f078813e5394a7427216d73c44464bdfecbb07e0'
210
+
211
+ ###mod 'simp-mcafee',
212
+ ### :git => 'https://github.com/simp/pupmod-simp-mcafee',
213
+ ### :ref => '6dfe22cbbf524971e21d1af5888656ad8d215091'
214
+
215
+ mod 'simp-mcollective',
216
+ :git => 'https://github.com/simp/pupmod-simp-mcollective',
217
+ :ref => '90ceda13854da0501e17f15602634d293bf54205'
218
+
219
+ ###mod 'simp-mozilla',
220
+ ### :git => 'https://github.com/simp/pupmod-simp-mozilla',
221
+ ### :ref => 'e2034e3ab42f2cee3b4a6e0462f64890adcabeb0'
222
+
223
+ mod 'simp-named',
224
+ :git => 'https://github.com/simp/pupmod-simp-named',
225
+ :ref => '7f4d09657bb4de03c73efaa0e87c6a9047b99c95'
226
+
227
+ mod 'simp-network',
228
+ :git => 'https://github.com/simp/pupmod-simp-network',
229
+ :ref => '328c9780c946524ff7e6fe4396c5df4e2cea66b5'
230
+
231
+ mod 'simp-nfs',
232
+ :git => 'https://github.com/simp/pupmod-simp-nfs',
233
+ :ref => 'e38c835d06e70520a7403b1dd69c0e7322285b81'
234
+
235
+ mod 'simp-ntpd',
236
+ :git => 'https://github.com/simp/pupmod-simp-ntpd',
237
+ :ref => '916e56bd6c30e7d1fa00c35cf1b699848bde9bfe'
238
+
239
+ mod 'simp-oddjob',
240
+ :git => 'https://github.com/simp/pupmod-simp-oddjob',
241
+ :ref => '0c79577630e86b6e2859738a04d65e4489ed29cd'
242
+
243
+ mod 'simp-simp_openldap',
244
+ :git => 'https://github.com/simp/pupmod-simp-simp_openldap',
245
+ :ref => '0adc282a69b3d016049f8146578dff47cd5ef3d5'
246
+
247
+ ###mod 'simp-openscap',
248
+ ### :git => 'https://github.com/simp/pupmod-simp-openscap',
249
+ ### :ref => '9c26e36c57a9ad0451bb0a94440e0cfd62e77179'
250
+ ###
251
+ mod 'simp-pam',
252
+ :git => 'https://github.com/simp/pupmod-simp-pam',
253
+ :ref => '40a92d652ecb700674dc12a7bc4d6a3914eb0a27'
254
+
255
+ mod 'simp-pki',
256
+ :git => 'https://github.com/simp/pupmod-simp-pki',
257
+ :ref => '67b45207d803bc2150ee1018be78560e5ece3c2e'
258
+
259
+ ###mod 'simp-polkit',
260
+ ### :git => 'https://github.com/simp/pupmod-simp-polkit',
261
+ ### :ref => '91b57406f1053603bdb7c880aad824b7db906207'
262
+
263
+ mod 'simp-postfix',
264
+ :git => 'https://github.com/simp/pupmod-simp-postfix',
265
+ :ref => '6095591ca482fe57cf3525137a996290e7d03052'
266
+
267
+ mod 'simp-pupmod',
268
+ :git => 'https://github.com/simp/pupmod-simp-pupmod',
269
+ :ref => 'bc9a0313d1b67d5f6cf3c69677f733d9e717c0d2'
270
+
271
+ mod 'simp-puppetdb',
272
+ :git => 'https://github.com/simp/puppetlabs-puppetdb',
273
+ :ref => '3718c588cf4e40c450dfaae16afc1aac6ad6cb88'
274
+
275
+ mod 'simp-resolv',
276
+ :git => 'https://github.com/simp/pupmod-simp-resolv',
277
+ :ref => '0b2c35cae893e2c83e3162d1fde8878d3f29cdc4'
278
+
279
+ mod 'simp-rsync',
280
+ :git => 'https://github.com/simp/pupmod-simp-rsync',
281
+ :ref => '5a065194f3369e29a7d3e092722ffd1bf9b8b822'
282
+
283
+ mod 'simp-rsyslog',
284
+ :git => 'https://github.com/simp/pupmod-simp-rsyslog',
285
+ :ref => '14f0ef46df315121c0e136281ac124c57aaf7b91'
286
+
287
+ mod 'simp-selinux',
288
+ :git => 'https://github.com/simp/pupmod-simp-selinux',
289
+ :ref => '75393fc9d159d3e4fb08a1324220a45bda6212c6'
290
+
291
+ mod 'simp-simp',
292
+ :git => 'https://github.com/simp/pupmod-simp-simp',
293
+ :ref => 'c0906fbf43f24cc9286429e8ee81035be7a36084'
294
+
295
+ mod 'simp-simpcat',
296
+ :git => 'https://github.com/simp/pupmod-simp-simpcat',
297
+ :ref => '50deb1cecc783b28aed39e348da45cd212c37706'
298
+
299
+ mod 'simp-simp_apache',
300
+ :git => 'https://github.com/simp/pupmod-simp-apache',
301
+ :ref => 'beebf920ffd077e930d7705a7d470d1b22ff3304'
302
+
303
+ ###mod 'simp-simp_elasticsearch',
304
+ ### :git => 'https://github.com/simp/pupmod-simp-simp_elasticsearch',
305
+ ### :ref => '5d09a3ace93c3daa97e02ab0863ccf554150fd02'
306
+
307
+ ###mod 'simp-simp_grafana',
308
+ ### :git => 'https://github.com/simp/pupmod-simp-simp_grafana',
309
+ ### :ref => 'd1c22d138a6775377d18746c2f02c02d4b2c0f6a'
310
+
311
+ ###mod 'simp-simp_logstash',
312
+ ### :git => 'https://github.com/simp/pupmod-simp-simp_logstash',
313
+ ### :ref => 'd78a6188f5ad6cdf8e0a4e8083b833d2432cdddb'
314
+
315
+ mod 'simp-simp_options',
316
+ :git => 'https://github.com/simp/pupmod-simp-simp_options',
317
+ :ref => '26e70080b153c37aacbf725b4603f5f0c5698bf6'
318
+
319
+ mod 'simp-simp_nfs',
320
+ :git => 'https://github.com/simp/pupmod-simp-simp_nfs',
321
+ :ref => '4842bd85edd6d94a0211b5cf02299ccaf552baf9'
322
+
323
+ mod 'simp-simp_rsyslog',
324
+ :git => 'https://github.com/simp/pupmod-simp-simp_rsyslog',
325
+ :ref => 'd72f2b1596b4f1f7c52a27c10d8d1fb59e1508d8'
326
+
327
+ mod 'simp-simplib',
328
+ :git => 'https://github.com/simp/pupmod-simp-simplib',
329
+ :ref => 'a5c2758c2d08a23c1a824d132ac4bc1ee5a27651'
330
+
331
+ mod 'simp-ssh',
332
+ :git => 'https://github.com/simp/pupmod-simp-ssh',
333
+ :ref => '2ff26a6690be2fdbd9e68210bcaf5f4cdc9088bc'
334
+
335
+ mod 'simp-sssd',
336
+ :git => 'https://github.com/simp/pupmod-simp-sssd',
337
+ :ref => 'b4b581657b5564fcece59014d96b04631b97d29a'
338
+
339
+ mod 'simp-stunnel',
340
+ :git => 'https://github.com/simp/pupmod-simp-stunnel',
341
+ :ref => '5ae55eb3c41e038ecde0a7166b85a5e19018f344'
342
+
343
+ mod 'simp-sudo',
344
+ :git => 'https://github.com/simp/pupmod-simp-sudo',
345
+ :ref => 'c94828d4840951c147c47e1136adb4ebaa92f555'
346
+
347
+ mod 'simp-sudosh',
348
+ :git => 'https://github.com/simp/pupmod-simp-sudosh',
349
+ :ref => 'baa03f1e58e5bdc5bb5884bd639c4450ae3b8f61'
350
+
351
+ mod 'simp-svckill',
352
+ :git => 'https://github.com/simp/pupmod-simp-svckill',
353
+ :ref => 'fadd9e6c6a4a163fc77aa27cc7be7b9c7dd0a4a7'
354
+
355
+ mod 'simp-swap',
356
+ :git => 'https://github.com/simp/pupmod-simp-swap',
357
+ :ref => '50cf9df5b2683584664cc88d74ec204494904142'
358
+
359
+ mod 'simp-tcpwrappers',
360
+ :git => 'https://github.com/simp/pupmod-simp-tcpwrappers',
361
+ :ref => '9c7c58cc0ea9ea2ff51d11899b96f5a56ff306ee'
362
+
363
+ mod 'simp-tpm',
364
+ :git => 'https://github.com/simp/pupmod-simp-tpm',
365
+ :ref => '2f59a5bb950f9d6be8b06b54beb180563378e742'
366
+
367
+ mod 'simp-tuned',
368
+ :git => 'https://github.com/simp/pupmod-simp-tuned',
369
+ :ref => '7d39b937c6669aee06fb8e8d063ffcc5ad02ab48'
370
+
371
+ mod 'simp-upstart',
372
+ :git => 'https://github.com/simp/pupmod-simp-upstart',
373
+ :ref => '84ee9bb62f8cc976e5ec16bd2efc29c1f11ecf9c'
374
+
375
+ ###mod 'simp-vnc',
376
+ ### :git => 'https://github.com/simp/pupmod-simp-vnc',
377
+ ### :ref => '628b82476a97a091e673f72cadb89790bda77f30'
378
+
379
+ ###mod 'simp-vsftpd',
380
+ ### :git => 'https://github.com/simp/pupmod-simp-vsftpd',
381
+ ### :ref => '2833f39104be521143990f823824d69b58175b12'
382
+ ###
383
+ mod 'simp-xinetd',
384
+ :git => 'https://github.com/simp/pupmod-simp-xinetd',
385
+ :ref => '0faddf33856d6c473e4af895c22d4a90c3411aa7'
386
+
387
+ mod 'simp-useradd',
388
+ :git => 'https://github.com/simp/pupmod-simp-useradd',
389
+ :ref => '31ce72beec33febc55a187059c34ffa8ac87e71f'
390
+
391
+ mod 'trlinkin-nsswitch',
392
+ :git => 'https://github.com/simp/puppet-nsswitch',
393
+ :ref => '6a2fee0947932dbde3c96ff75f5e461931366c78'
394
+
395
+ # vim: ai ts=2 sts=2 et sw=2 ft=ruby