├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE.md ├── Modulefile ├── README.md ├── Rakefile ├── files ├── awslinux │ └── etc │ │ ├── 2014.09-yum.conf │ │ ├── inittab │ │ ├── mail │ │ └── sendmail.mc │ │ ├── ntp.conf │ │ ├── selinux │ │ └── config │ │ ├── sysconfig │ │ ├── init │ │ └── ntpd │ │ └── sysctl.conf ├── el6 │ ├── etc │ │ ├── at.allow │ │ ├── audit │ │ │ ├── audit.rules │ │ │ ├── audit.rules.32 │ │ │ ├── audit.rules.64 │ │ │ └── auditd.conf │ │ ├── bashrc │ │ ├── cron.allow │ │ ├── csh.cshrc │ │ ├── default │ │ │ ├── grub │ │ │ └── useradd │ │ ├── fstab │ │ ├── issue.net │ │ ├── login.defs │ │ ├── ntp.conf │ │ ├── pam.d │ │ │ ├── su │ │ │ └── system-auth-ac │ │ ├── postfix │ │ │ └── main.cf │ │ ├── profile │ │ ├── security │ │ │ └── limits.conf │ │ ├── selinux │ │ │ └── config │ │ ├── ssh │ │ │ └── sshd_config │ │ ├── sysconfig │ │ │ ├── authconfig │ │ │ ├── init │ │ │ └── ntpd │ │ └── yum.conf │ └── root │ │ ├── bash_logout │ │ ├── bash_profile │ │ ├── bashrc │ │ ├── cshrc │ │ └── tcshrc └── linuxcontrols │ └── scripts │ ├── f0000.sh │ ├── f0001.sh │ ├── f0002.sh │ ├── f0003.sh │ ├── f0004.sh │ ├── f0005.sh │ ├── f0006.sh │ ├── f0007.sh │ ├── f0008.sh │ ├── f0009.sh │ ├── f0010.sh │ ├── f0011.sh │ ├── f0012.sh │ ├── f0013.sh │ ├── f0014.sh │ ├── f0015.sh │ ├── f0016.sh │ ├── f0017.sh │ ├── f0018.sh │ ├── f0019.sh │ ├── f0020.sh │ ├── f0021.sh │ └── f0022.sh ├── lib └── facter │ ├── f0000.rb │ ├── f0001.rb │ ├── f0002.rb │ ├── f0003.rb │ ├── f0004.rb │ ├── f0005.rb │ ├── f0006.rb │ ├── f0007.rb │ ├── f0008.rb │ ├── f0009.rb │ ├── f0010.rb │ ├── f0011.rb │ ├── f0012.rb │ ├── f0013.rb │ ├── f0014.rb │ ├── f0015.rb │ ├── f0016.rb │ ├── f0017.rb │ ├── f0018.rb │ ├── f0019.rb │ ├── f0020.rb │ ├── f0021.rb │ └── f0022.rb ├── manifests ├── awslinux.pp ├── awslinux │ ├── 1_1_1.pp │ ├── 1_1_10.pp │ ├── 1_1_14.pp │ ├── 1_1_15.pp │ ├── 1_1_16.pp │ ├── 1_1_17.pp │ ├── 1_1_2.pp │ ├── 1_1_3.pp │ ├── 1_1_4.pp │ ├── 1_1_5.pp │ ├── 1_1_6.pp │ ├── 1_1_7.pp │ ├── 1_1_8.pp │ ├── 1_1_9.pp │ ├── 1_2_1.pp │ ├── 1_2_2.pp │ ├── 1_3_1.pp │ ├── 1_3_2.pp │ ├── 1_4_1.pp │ ├── 1_4_2.pp │ ├── 1_4_3.pp │ ├── 1_4_4.pp │ ├── 1_4_5.pp │ ├── 1_4_6.pp │ ├── 1_4_7.pp │ ├── 1_5_1.pp │ ├── 1_5_2.pp │ ├── 1_5_3.pp │ ├── 1_6_1.pp │ ├── 1_6_2.pp │ ├── 1_6_3.pp │ ├── 2_1_1.pp │ ├── 2_1_10.pp │ ├── 2_1_11.pp │ ├── 2_1_12.pp │ ├── 2_1_13.pp │ ├── 2_1_14.pp │ ├── 2_1_15.pp │ ├── 2_1_16.pp │ ├── 2_1_17.pp │ ├── 2_1_18.pp │ ├── 2_1_2.pp │ ├── 2_1_3.pp │ ├── 2_1_4.pp │ ├── 2_1_5.pp │ ├── 2_1_6.pp │ ├── 2_1_7.pp │ ├── 2_1_8.pp │ ├── 2_1_9.pp │ ├── 3_1.pp │ ├── 3_16.pp │ ├── 3_2.pp │ ├── 3_3.pp │ ├── 3_5.pp │ ├── 3_6.pp │ ├── 4_1_1.pp │ ├── 4_1_2.pp │ ├── 4_2_1.pp │ ├── 4_2_2.pp │ ├── 4_2_3.pp │ ├── 4_2_4.pp │ ├── 4_2_5.pp │ ├── 4_2_6.pp │ ├── 4_2_7.pp │ ├── 4_2_8.pp │ ├── 4_4_3.pp │ ├── 4_4_5.pp │ └── 4_6.pp ├── el6 │ ├── 1_1_1.pp │ ├── 1_1_10.pp │ ├── 1_1_14.pp │ ├── 1_1_15.pp │ ├── 1_1_16.pp │ ├── 1_1_17.pp │ ├── 1_1_2.pp │ ├── 1_1_3.pp │ ├── 1_1_4.pp │ ├── 1_1_5.pp │ ├── 1_1_6.pp │ ├── 1_1_7.pp │ ├── 1_1_8.pp │ ├── 1_1_9.pp │ ├── 1_2_2.pp │ ├── 1_2_3.pp │ ├── 1_3_1.pp │ ├── 1_3_2.pp │ ├── 1_4_1.pp │ ├── 1_4_2.pp │ ├── 1_4_3.pp │ ├── 1_4_4.pp │ ├── 1_4_5.pp │ ├── 1_4_6.pp │ ├── 1_5_1.pp │ ├── 1_5_3.pp │ ├── 1_5_4.pp │ ├── 1_5_5.pp │ ├── 1_6_1.pp │ ├── 1_6_2.pp │ ├── 1_6_3.pp │ ├── 2_1_1.pp │ ├── 2_1_10.pp │ ├── 2_1_11.pp │ ├── 2_1_12.pp │ ├── 2_1_13.pp │ ├── 2_1_14.pp │ ├── 2_1_15.pp │ ├── 2_1_16.pp │ ├── 2_1_17.pp │ ├── 2_1_18.pp │ ├── 2_1_2.pp │ ├── 2_1_3.pp │ ├── 2_1_4.pp │ ├── 2_1_5.pp │ ├── 2_1_6.pp │ ├── 2_1_7.pp │ ├── 2_1_8.pp │ ├── 2_1_9.pp │ ├── 3_1.pp │ ├── 3_16.pp │ ├── 3_2.pp │ ├── 3_3.pp │ ├── 3_5.pp │ ├── 3_6.pp │ ├── 4_1_1.pp │ ├── 4_1_2.pp │ ├── 4_2_1.pp │ ├── 4_2_2.pp │ ├── 4_2_3.pp │ ├── 4_2_4.pp │ ├── 4_2_5.pp │ ├── 4_2_6.pp │ ├── 4_2_7.pp │ ├── 4_2_8.pp │ ├── 4_5_3.pp │ ├── 4_5_5.pp │ ├── 4_7.pp │ ├── 5_1_1.pp │ ├── 5_1_2.pp │ ├── 5_1_4.pp │ ├── 5_1_5.pp │ ├── 5_2_10.pp │ ├── 5_2_11.pp │ ├── 5_2_12.pp │ ├── 5_2_13.pp │ ├── 5_2_14.pp │ ├── 5_2_15.pp │ ├── 5_2_16.pp │ ├── 5_2_17.pp │ ├── 5_2_18.pp │ ├── 5_2_1_3.pp │ ├── 5_2_2.pp │ ├── 5_2_3.pp │ ├── 5_2_4.pp │ ├── 5_2_5.pp │ ├── 5_2_6.pp │ ├── 5_2_7.pp │ ├── 5_2_8.pp │ ├── 5_2_9.pp │ ├── 6_1_1.pp │ ├── 6_1_10.pp │ ├── 6_1_11.pp │ ├── 6_1_2.pp │ ├── 6_1_3.pp │ ├── 6_1_4.pp │ ├── 6_1_5.pp │ ├── 6_1_6.pp │ ├── 6_1_7.pp │ ├── 6_1_8.pp │ ├── 6_1_9.pp │ ├── 6_2_1.pp │ ├── 6_2_10.pp │ ├── 6_2_11.pp │ ├── 6_2_12.pp │ ├── 6_2_13.pp │ ├── 6_2_14.pp │ ├── 6_2_2.pp │ ├── 6_2_3.pp │ ├── 6_2_4.pp │ ├── 6_2_5.pp │ ├── 6_2_6.pp │ ├── 6_2_7.pp │ ├── 6_2_8.pp │ ├── 6_2_9.pp │ ├── 6_3_1.pp │ ├── 6_3_2.pp │ ├── 6_3_3.pp │ ├── 6_3_6.pp │ ├── 6_5.pp │ ├── 7_1_1.pp │ ├── 7_1_2.pp │ ├── 7_1_3.pp │ ├── 7_2.pp │ ├── 7_3.pp │ ├── 7_4.pp │ ├── 7_5.pp │ ├── 8_1.pp │ ├── 8_2.pp │ ├── 9_1_11.pp │ ├── 9_1_12.pp │ ├── 9_1_2.pp │ ├── 9_1_3.pp │ ├── 9_1_4.pp │ ├── 9_1_5.pp │ ├── 9_1_6.pp │ ├── 9_1_7.pp │ ├── 9_1_8.pp │ ├── 9_1_9.pp │ ├── 9_2_1.pp │ ├── 9_2_10.pp │ ├── 9_2_11.pp │ ├── 9_2_12.pp │ ├── 9_2_13.pp │ ├── 9_2_14.pp │ ├── 9_2_15.pp │ ├── 9_2_16.pp │ ├── 9_2_17.pp │ ├── 9_2_18.pp │ ├── 9_2_19.pp │ ├── 9_2_2.pp │ ├── 9_2_20.pp │ ├── 9_2_21.pp │ ├── 9_2_3.pp │ ├── 9_2_4.pp │ ├── 9_2_5.pp │ ├── 9_2_6.pp │ ├── 9_2_7.pp │ ├── 9_2_8.pp │ └── 9_2_9.pp ├── el6all.pp ├── el7 │ ├── 1_1_1.pp │ ├── 1_1_10.pp │ ├── 1_1_14.pp │ ├── 1_1_15.pp │ ├── 1_1_16.pp │ ├── 1_1_17.pp │ ├── 1_1_2.pp │ ├── 1_1_3.pp │ ├── 1_1_4.pp │ ├── 1_1_5.pp │ ├── 1_1_6.pp │ ├── 1_1_7.pp │ ├── 1_1_8.pp │ ├── 1_1_9.pp │ ├── 1_2_2.pp │ ├── 1_2_3.pp │ ├── 1_3_1.pp │ ├── 1_3_2.pp │ ├── 1_4_1.pp │ ├── 1_4_2.pp │ ├── 1_4_3.pp │ ├── 1_4_4.pp │ ├── 1_4_5.pp │ ├── 1_4_6.pp │ ├── 1_5_1.pp │ ├── 1_5_3.pp │ ├── 1_5_4.pp │ ├── 1_5_5.pp │ ├── 1_6_1.pp │ ├── 1_6_2.pp │ ├── 1_6_3.pp │ ├── 2_1_1.pp │ ├── 2_1_10.pp │ ├── 2_1_11.pp │ ├── 2_1_12.pp │ ├── 2_1_13.pp │ ├── 2_1_14.pp │ ├── 2_1_15.pp │ ├── 2_1_16.pp │ ├── 2_1_17.pp │ ├── 2_1_18.pp │ ├── 2_1_2.pp │ ├── 2_1_3.pp │ ├── 2_1_4.pp │ ├── 2_1_5.pp │ ├── 2_1_6.pp │ ├── 2_1_7.pp │ ├── 2_1_8.pp │ ├── 2_1_9.pp │ ├── 3_1.pp │ ├── 3_16.pp │ ├── 3_2.pp │ ├── 3_3.pp │ ├── 3_5.pp │ ├── 3_6.pp │ ├── 4_1_1.pp │ ├── 4_1_2.pp │ ├── 4_2_1.pp │ ├── 4_2_2.pp │ ├── 4_2_3.pp │ ├── 4_2_4.pp │ ├── 4_2_5.pp │ ├── 4_2_6.pp │ ├── 4_2_7.pp │ ├── 4_2_8.pp │ ├── 4_5_3.pp │ ├── 4_5_5.pp │ ├── 4_7.pp │ ├── 5_1_1.pp │ ├── 5_1_2.pp │ ├── 5_1_4.pp │ ├── 5_1_5.pp │ ├── 5_2_10.pp │ ├── 5_2_11.pp │ ├── 5_2_12.pp │ ├── 5_2_13.pp │ ├── 5_2_14.pp │ ├── 5_2_15.pp │ ├── 5_2_16.pp │ ├── 5_2_17.pp │ ├── 5_2_18.pp │ ├── 5_2_1_3.pp │ ├── 5_2_2.pp │ ├── 5_2_3.pp │ ├── 5_2_4.pp │ ├── 5_2_5.pp │ ├── 5_2_6.pp │ ├── 5_2_7.pp │ ├── 5_2_8.pp │ ├── 5_2_9.pp │ ├── 6_1_1.pp │ ├── 6_1_10.pp │ ├── 6_1_11.pp │ ├── 6_1_2.pp │ ├── 6_1_3.pp │ ├── 6_1_4.pp │ ├── 6_1_5.pp │ ├── 6_1_6.pp │ ├── 6_1_7.pp │ ├── 6_1_8.pp │ ├── 6_1_9.pp │ ├── 6_2_1.pp │ ├── 6_2_10.pp │ ├── 6_2_11.pp │ ├── 6_2_12.pp │ ├── 6_2_13.pp │ ├── 6_2_14.pp │ ├── 6_2_2.pp │ ├── 6_2_3.pp │ ├── 6_2_4.pp │ ├── 6_2_5.pp │ ├── 6_2_6.pp │ ├── 6_2_7.pp │ ├── 6_2_8.pp │ ├── 6_2_9.pp │ ├── 6_3_1.pp │ ├── 6_3_2.pp │ ├── 6_3_3.pp │ ├── 6_3_6.pp │ ├── 6_5.pp │ ├── 7_1_1.pp │ ├── 7_1_2.pp │ ├── 7_1_3.pp │ ├── 7_2.pp │ ├── 7_3.pp │ ├── 7_4.pp │ ├── 7_5.pp │ ├── 8_1.pp │ ├── 8_2.pp │ ├── 9_1_11.pp │ ├── 9_1_12.pp │ ├── 9_1_2.pp │ ├── 9_1_3.pp │ ├── 9_1_4.pp │ ├── 9_1_5.pp │ ├── 9_1_6.pp │ ├── 9_1_7.pp │ ├── 9_1_8.pp │ ├── 9_1_9.pp │ ├── 9_2_1.pp │ ├── 9_2_10.pp │ ├── 9_2_11.pp │ ├── 9_2_12.pp │ ├── 9_2_13.pp │ ├── 9_2_14.pp │ ├── 9_2_15.pp │ ├── 9_2_16.pp │ ├── 9_2_17.pp │ ├── 9_2_18.pp │ ├── 9_2_19.pp │ ├── 9_2_2.pp │ ├── 9_2_20.pp │ ├── 9_2_21.pp │ ├── 9_2_3.pp │ ├── 9_2_4.pp │ ├── 9_2_5.pp │ ├── 9_2_6.pp │ ├── 9_2_7.pp │ ├── 9_2_8.pp │ └── 9_2_9.pp ├── el7all.pp ├── init.pp └── linuxcontrols │ ├── c0000.pp │ ├── c0001.pp │ ├── c0002.pp │ ├── c0003.pp │ ├── c0004.pp │ ├── c0005.pp │ ├── c0006.pp │ ├── c0007.pp │ ├── c0008.pp │ ├── c0009.pp │ ├── c0010.pp │ ├── c0011.pp │ ├── c0012.pp │ ├── c0013.pp │ ├── c0014.pp │ ├── c0015.pp │ ├── c0016.pp │ ├── c0017.pp │ ├── c0018.pp │ ├── c0019.pp │ ├── c0020.pp │ ├── c0021.pp │ ├── c0022.pp │ ├── c0023.pp │ ├── c0024.pp │ ├── c0025.pp │ ├── c0026.pp │ ├── c0027.pp │ ├── c0028.pp │ ├── c0029.pp │ ├── c0030.pp │ ├── c0031.pp │ ├── c0032.pp │ ├── c0033.pp │ ├── c0034.pp │ ├── c0035.pp │ ├── c0036.pp │ ├── c0037.pp │ ├── c0038.pp │ ├── c0039.pp │ ├── c0040.pp │ ├── c0041.pp │ ├── c0042.pp │ ├── c0043.pp │ ├── c0044.pp │ ├── c0045.pp │ ├── c0046.pp │ ├── c0047.pp │ ├── c0048.pp │ ├── c0049.pp │ ├── c0050.pp │ ├── c0051.pp │ ├── c0052.pp │ ├── c0053.pp │ ├── c0054.pp │ ├── c0055.pp │ ├── c0056.pp │ ├── c0057.pp │ ├── c0058.pp │ ├── c0059.pp │ ├── c0060.pp │ ├── c0061.pp │ ├── c0062.pp │ ├── c0063.pp │ ├── c0064.pp │ ├── c0065.pp │ ├── c0066.pp │ ├── c0067.pp │ ├── c0068.pp │ ├── c0069.pp │ ├── c0070.pp │ ├── c0071.pp │ ├── c0072.pp │ ├── c0073.pp │ ├── c0074.pp │ ├── c0075.pp │ ├── c0076.pp │ ├── c0077.pp │ ├── c0078.pp │ ├── c0079.pp │ ├── c0080.pp │ ├── c0081.pp │ ├── c0082.pp │ ├── c0083.pp │ ├── c0084.pp │ ├── c0085.pp │ ├── c0086.pp │ ├── c0087.pp │ ├── c0088.pp │ ├── c0089.pp │ ├── c0090.pp │ ├── c0091.pp │ ├── c0092.pp │ ├── c0093.pp │ ├── c0094.pp │ ├── c0095.pp │ ├── c0096.pp │ ├── c0097.pp │ ├── c0098.pp │ ├── c0099.pp │ ├── c0100.pp │ ├── c0101.pp │ ├── c0102.pp │ ├── c0103.pp │ └── c0104.pp └── templates ├── awslinux └── etc │ └── grub.conf.erb └── el6 └── etc ├── ntp.conf.erb └── rsyslog.conf.erb /.gitignore: -------------------------------------------------------------------------------- 1 | *.sw? 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/Modulefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/Rakefile -------------------------------------------------------------------------------- /files/awslinux/etc/2014.09-yum.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/awslinux/etc/2014.09-yum.conf -------------------------------------------------------------------------------- /files/awslinux/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/awslinux/etc/inittab -------------------------------------------------------------------------------- /files/awslinux/etc/mail/sendmail.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/awslinux/etc/mail/sendmail.mc -------------------------------------------------------------------------------- /files/awslinux/etc/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/awslinux/etc/ntp.conf -------------------------------------------------------------------------------- /files/awslinux/etc/selinux/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/awslinux/etc/selinux/config -------------------------------------------------------------------------------- /files/awslinux/etc/sysconfig/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/awslinux/etc/sysconfig/init -------------------------------------------------------------------------------- /files/awslinux/etc/sysconfig/ntpd: -------------------------------------------------------------------------------- 1 | OPTIONS="-u ntp:ntp" 2 | -------------------------------------------------------------------------------- /files/awslinux/etc/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/awslinux/etc/sysctl.conf -------------------------------------------------------------------------------- /files/el6/etc/at.allow: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/el6/etc/audit/audit.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/audit/audit.rules -------------------------------------------------------------------------------- /files/el6/etc/audit/audit.rules.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/audit/audit.rules.32 -------------------------------------------------------------------------------- /files/el6/etc/audit/audit.rules.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/audit/audit.rules.64 -------------------------------------------------------------------------------- /files/el6/etc/audit/auditd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/audit/auditd.conf -------------------------------------------------------------------------------- /files/el6/etc/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/bashrc -------------------------------------------------------------------------------- /files/el6/etc/cron.allow: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/el6/etc/csh.cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/csh.cshrc -------------------------------------------------------------------------------- /files/el6/etc/default/grub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/default/grub -------------------------------------------------------------------------------- /files/el6/etc/default/useradd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/default/useradd -------------------------------------------------------------------------------- /files/el6/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/fstab -------------------------------------------------------------------------------- /files/el6/etc/issue.net: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/issue.net -------------------------------------------------------------------------------- /files/el6/etc/login.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/login.defs -------------------------------------------------------------------------------- /files/el6/etc/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/ntp.conf -------------------------------------------------------------------------------- /files/el6/etc/pam.d/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/pam.d/su -------------------------------------------------------------------------------- /files/el6/etc/pam.d/system-auth-ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/pam.d/system-auth-ac -------------------------------------------------------------------------------- /files/el6/etc/postfix/main.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/postfix/main.cf -------------------------------------------------------------------------------- /files/el6/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/profile -------------------------------------------------------------------------------- /files/el6/etc/security/limits.conf: -------------------------------------------------------------------------------- 1 | * hard core 0 2 | -------------------------------------------------------------------------------- /files/el6/etc/selinux/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/selinux/config -------------------------------------------------------------------------------- /files/el6/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/ssh/sshd_config -------------------------------------------------------------------------------- /files/el6/etc/sysconfig/authconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/sysconfig/authconfig -------------------------------------------------------------------------------- /files/el6/etc/sysconfig/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/sysconfig/init -------------------------------------------------------------------------------- /files/el6/etc/sysconfig/ntpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/sysconfig/ntpd -------------------------------------------------------------------------------- /files/el6/etc/yum.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/etc/yum.conf -------------------------------------------------------------------------------- /files/el6/root/bash_logout: -------------------------------------------------------------------------------- 1 | # ~/.bash_logout 2 | 3 | -------------------------------------------------------------------------------- /files/el6/root/bash_profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/root/bash_profile -------------------------------------------------------------------------------- /files/el6/root/bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/root/bashrc -------------------------------------------------------------------------------- /files/el6/root/cshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/root/cshrc -------------------------------------------------------------------------------- /files/el6/root/tcshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/el6/root/tcshrc -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0000.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0001.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0001.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0002.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0002.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0003.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0003.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0004.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0004.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0005.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0005.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0006.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0006.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0007.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0008.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0008.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0009.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0009.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0010.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0010.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0011.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0011.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0012.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0013.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0013.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0014.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0014.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0015.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0015.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0016.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0016.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0017.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0018.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0018.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0019.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0019.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0020.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0020.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0021.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0021.sh -------------------------------------------------------------------------------- /files/linuxcontrols/scripts/f0022.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/files/linuxcontrols/scripts/f0022.sh -------------------------------------------------------------------------------- /lib/facter/f0000.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0000.rb -------------------------------------------------------------------------------- /lib/facter/f0001.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0001.rb -------------------------------------------------------------------------------- /lib/facter/f0002.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0002.rb -------------------------------------------------------------------------------- /lib/facter/f0003.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0003.rb -------------------------------------------------------------------------------- /lib/facter/f0004.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0004.rb -------------------------------------------------------------------------------- /lib/facter/f0005.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0005.rb -------------------------------------------------------------------------------- /lib/facter/f0006.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0006.rb -------------------------------------------------------------------------------- /lib/facter/f0007.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0007.rb -------------------------------------------------------------------------------- /lib/facter/f0008.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0008.rb -------------------------------------------------------------------------------- /lib/facter/f0009.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0009.rb -------------------------------------------------------------------------------- /lib/facter/f0010.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0010.rb -------------------------------------------------------------------------------- /lib/facter/f0011.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0011.rb -------------------------------------------------------------------------------- /lib/facter/f0012.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0012.rb -------------------------------------------------------------------------------- /lib/facter/f0013.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0013.rb -------------------------------------------------------------------------------- /lib/facter/f0014.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0014.rb -------------------------------------------------------------------------------- /lib/facter/f0015.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0015.rb -------------------------------------------------------------------------------- /lib/facter/f0016.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0016.rb -------------------------------------------------------------------------------- /lib/facter/f0017.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0017.rb -------------------------------------------------------------------------------- /lib/facter/f0018.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0018.rb -------------------------------------------------------------------------------- /lib/facter/f0019.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0019.rb -------------------------------------------------------------------------------- /lib/facter/f0020.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0020.rb -------------------------------------------------------------------------------- /lib/facter/f0021.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0021.rb -------------------------------------------------------------------------------- /lib/facter/f0022.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/lib/facter/f0022.rb -------------------------------------------------------------------------------- /manifests/awslinux.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_10.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_14.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_15.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_16.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_17.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_4.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_5.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_6.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_7.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_8.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_1_9.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_2_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_2_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_3_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_3_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_4_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_4_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_4_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_4_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_4_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_4_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_4_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_4_4.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_4_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_4_5.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_4_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_4_6.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_4_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_4_7.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_5_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_5_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_5_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_5_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_5_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_5_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_6_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_6_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_6_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_6_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/1_6_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/1_6_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_10.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_11.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_12.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_13.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_14.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_15.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_16.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_17.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_18.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_18.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_4.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_5.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_6.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_7.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_8.pp -------------------------------------------------------------------------------- /manifests/awslinux/2_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/2_1_9.pp -------------------------------------------------------------------------------- /manifests/awslinux/3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/3_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/3_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/3_16.pp -------------------------------------------------------------------------------- /manifests/awslinux/3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/3_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/3_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/3_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/3_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/3_5.pp -------------------------------------------------------------------------------- /manifests/awslinux/3_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/3_6.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_1_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_1_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_1.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_2.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_4.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_5.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_6.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_7.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_2_8.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_4_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_4_3.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_4_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_4_5.pp -------------------------------------------------------------------------------- /manifests/awslinux/4_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/awslinux/4_6.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_1.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_10.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_14.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_15.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_16.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_17.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_2.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_3.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_4.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_5.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_6.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_7.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_8.pp -------------------------------------------------------------------------------- /manifests/el6/1_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_1_9.pp -------------------------------------------------------------------------------- /manifests/el6/1_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_2_2.pp -------------------------------------------------------------------------------- /manifests/el6/1_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_2_3.pp -------------------------------------------------------------------------------- /manifests/el6/1_3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_3_1.pp -------------------------------------------------------------------------------- /manifests/el6/1_3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_3_2.pp -------------------------------------------------------------------------------- /manifests/el6/1_4_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_4_1.pp -------------------------------------------------------------------------------- /manifests/el6/1_4_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_4_2.pp -------------------------------------------------------------------------------- /manifests/el6/1_4_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_4_3.pp -------------------------------------------------------------------------------- /manifests/el6/1_4_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_4_4.pp -------------------------------------------------------------------------------- /manifests/el6/1_4_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_4_5.pp -------------------------------------------------------------------------------- /manifests/el6/1_4_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_4_6.pp -------------------------------------------------------------------------------- /manifests/el6/1_5_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_5_1.pp -------------------------------------------------------------------------------- /manifests/el6/1_5_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_5_3.pp -------------------------------------------------------------------------------- /manifests/el6/1_5_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_5_4.pp -------------------------------------------------------------------------------- /manifests/el6/1_5_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_5_5.pp -------------------------------------------------------------------------------- /manifests/el6/1_6_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_6_1.pp -------------------------------------------------------------------------------- /manifests/el6/1_6_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_6_2.pp -------------------------------------------------------------------------------- /manifests/el6/1_6_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/1_6_3.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_1.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_10.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_11.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_12.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_13.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_14.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_15.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_16.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_17.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_18.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_18.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_2.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_3.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_4.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_5.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_6.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_7.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_8.pp -------------------------------------------------------------------------------- /manifests/el6/2_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/2_1_9.pp -------------------------------------------------------------------------------- /manifests/el6/3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/3_1.pp -------------------------------------------------------------------------------- /manifests/el6/3_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/3_16.pp -------------------------------------------------------------------------------- /manifests/el6/3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/3_2.pp -------------------------------------------------------------------------------- /manifests/el6/3_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/3_3.pp -------------------------------------------------------------------------------- /manifests/el6/3_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/3_5.pp -------------------------------------------------------------------------------- /manifests/el6/3_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/3_6.pp -------------------------------------------------------------------------------- /manifests/el6/4_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_1_1.pp -------------------------------------------------------------------------------- /manifests/el6/4_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_1_2.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_1.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_2.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_3.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_4.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_5.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_6.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_7.pp -------------------------------------------------------------------------------- /manifests/el6/4_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_2_8.pp -------------------------------------------------------------------------------- /manifests/el6/4_5_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_5_3.pp -------------------------------------------------------------------------------- /manifests/el6/4_5_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_5_5.pp -------------------------------------------------------------------------------- /manifests/el6/4_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/4_7.pp -------------------------------------------------------------------------------- /manifests/el6/5_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_1_1.pp -------------------------------------------------------------------------------- /manifests/el6/5_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_1_2.pp -------------------------------------------------------------------------------- /manifests/el6/5_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_1_4.pp -------------------------------------------------------------------------------- /manifests/el6/5_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_1_5.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_10.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_11.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_12.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_13.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_14.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_15.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_16.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_17.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_18.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_18.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_1_3.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_2.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_3.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_4.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_5.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_6.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_7.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_8.pp -------------------------------------------------------------------------------- /manifests/el6/5_2_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/5_2_9.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_1.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_10.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_11.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_2.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_3.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_4.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_5.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_6.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_7.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_8.pp -------------------------------------------------------------------------------- /manifests/el6/6_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_1_9.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_1.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_10.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_11.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_12.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_13.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_14.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_2.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_3.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_4.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_5.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_6.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_7.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_8.pp -------------------------------------------------------------------------------- /manifests/el6/6_2_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_2_9.pp -------------------------------------------------------------------------------- /manifests/el6/6_3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_3_1.pp -------------------------------------------------------------------------------- /manifests/el6/6_3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_3_2.pp -------------------------------------------------------------------------------- /manifests/el6/6_3_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_3_3.pp -------------------------------------------------------------------------------- /manifests/el6/6_3_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_3_6.pp -------------------------------------------------------------------------------- /manifests/el6/6_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/6_5.pp -------------------------------------------------------------------------------- /manifests/el6/7_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/7_1_1.pp -------------------------------------------------------------------------------- /manifests/el6/7_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/7_1_2.pp -------------------------------------------------------------------------------- /manifests/el6/7_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/7_1_3.pp -------------------------------------------------------------------------------- /manifests/el6/7_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/7_2.pp -------------------------------------------------------------------------------- /manifests/el6/7_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/7_3.pp -------------------------------------------------------------------------------- /manifests/el6/7_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/7_4.pp -------------------------------------------------------------------------------- /manifests/el6/7_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/7_5.pp -------------------------------------------------------------------------------- /manifests/el6/8_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/8_1.pp -------------------------------------------------------------------------------- /manifests/el6/8_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/8_2.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_11.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_12.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_2.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_3.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_4.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_5.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_6.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_7.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_8.pp -------------------------------------------------------------------------------- /manifests/el6/9_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_1_9.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_1.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_10.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_11.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_12.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_13.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_14.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_15.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_16.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_17.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_18.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_18.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_19.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_19.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_2.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_20.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_20.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_21.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_21.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_3.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_4.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_5.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_6.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_7.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_8.pp -------------------------------------------------------------------------------- /manifests/el6/9_2_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6/9_2_9.pp -------------------------------------------------------------------------------- /manifests/el6all.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el6all.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_1.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_10.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_14.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_15.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_16.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_17.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_2.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_3.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_4.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_5.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_6.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_7.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_8.pp -------------------------------------------------------------------------------- /manifests/el7/1_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_1_9.pp -------------------------------------------------------------------------------- /manifests/el7/1_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_2_2.pp -------------------------------------------------------------------------------- /manifests/el7/1_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_2_3.pp -------------------------------------------------------------------------------- /manifests/el7/1_3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_3_1.pp -------------------------------------------------------------------------------- /manifests/el7/1_3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_3_2.pp -------------------------------------------------------------------------------- /manifests/el7/1_4_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_4_1.pp -------------------------------------------------------------------------------- /manifests/el7/1_4_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_4_2.pp -------------------------------------------------------------------------------- /manifests/el7/1_4_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_4_3.pp -------------------------------------------------------------------------------- /manifests/el7/1_4_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_4_4.pp -------------------------------------------------------------------------------- /manifests/el7/1_4_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_4_5.pp -------------------------------------------------------------------------------- /manifests/el7/1_4_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_4_6.pp -------------------------------------------------------------------------------- /manifests/el7/1_5_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_5_1.pp -------------------------------------------------------------------------------- /manifests/el7/1_5_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_5_3.pp -------------------------------------------------------------------------------- /manifests/el7/1_5_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_5_4.pp -------------------------------------------------------------------------------- /manifests/el7/1_5_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_5_5.pp -------------------------------------------------------------------------------- /manifests/el7/1_6_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_6_1.pp -------------------------------------------------------------------------------- /manifests/el7/1_6_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_6_2.pp -------------------------------------------------------------------------------- /manifests/el7/1_6_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/1_6_3.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_1.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_10.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_11.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_12.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_13.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_14.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_15.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_16.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_17.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_18.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_18.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_2.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_3.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_4.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_5.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_6.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_7.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_8.pp -------------------------------------------------------------------------------- /manifests/el7/2_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/2_1_9.pp -------------------------------------------------------------------------------- /manifests/el7/3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/3_1.pp -------------------------------------------------------------------------------- /manifests/el7/3_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/3_16.pp -------------------------------------------------------------------------------- /manifests/el7/3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/3_2.pp -------------------------------------------------------------------------------- /manifests/el7/3_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/3_3.pp -------------------------------------------------------------------------------- /manifests/el7/3_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/3_5.pp -------------------------------------------------------------------------------- /manifests/el7/3_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/3_6.pp -------------------------------------------------------------------------------- /manifests/el7/4_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_1_1.pp -------------------------------------------------------------------------------- /manifests/el7/4_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_1_2.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_1.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_2.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_3.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_4.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_5.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_6.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_7.pp -------------------------------------------------------------------------------- /manifests/el7/4_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_2_8.pp -------------------------------------------------------------------------------- /manifests/el7/4_5_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_5_3.pp -------------------------------------------------------------------------------- /manifests/el7/4_5_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_5_5.pp -------------------------------------------------------------------------------- /manifests/el7/4_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/4_7.pp -------------------------------------------------------------------------------- /manifests/el7/5_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_1_1.pp -------------------------------------------------------------------------------- /manifests/el7/5_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_1_2.pp -------------------------------------------------------------------------------- /manifests/el7/5_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_1_4.pp -------------------------------------------------------------------------------- /manifests/el7/5_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_1_5.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_10.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_11.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_12.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_13.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_14.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_15.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_16.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_17.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_18.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_18.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_1_3.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_2.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_3.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_4.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_5.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_6.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_7.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_8.pp -------------------------------------------------------------------------------- /manifests/el7/5_2_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/5_2_9.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_1.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_10.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_11.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_2.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_3.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_4.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_5.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_6.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_7.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_8.pp -------------------------------------------------------------------------------- /manifests/el7/6_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_1_9.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_1.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_10.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_11.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_12.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_13.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_14.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_2.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_3.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_4.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_5.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_6.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_7.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_8.pp -------------------------------------------------------------------------------- /manifests/el7/6_2_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_2_9.pp -------------------------------------------------------------------------------- /manifests/el7/6_3_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_3_1.pp -------------------------------------------------------------------------------- /manifests/el7/6_3_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_3_2.pp -------------------------------------------------------------------------------- /manifests/el7/6_3_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_3_3.pp -------------------------------------------------------------------------------- /manifests/el7/6_3_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_3_6.pp -------------------------------------------------------------------------------- /manifests/el7/6_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/6_5.pp -------------------------------------------------------------------------------- /manifests/el7/7_1_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/7_1_1.pp -------------------------------------------------------------------------------- /manifests/el7/7_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/7_1_2.pp -------------------------------------------------------------------------------- /manifests/el7/7_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/7_1_3.pp -------------------------------------------------------------------------------- /manifests/el7/7_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/7_2.pp -------------------------------------------------------------------------------- /manifests/el7/7_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/7_3.pp -------------------------------------------------------------------------------- /manifests/el7/7_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/7_4.pp -------------------------------------------------------------------------------- /manifests/el7/7_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/7_5.pp -------------------------------------------------------------------------------- /manifests/el7/8_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/8_1.pp -------------------------------------------------------------------------------- /manifests/el7/8_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/8_2.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_11.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_12.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_2.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_3.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_4.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_5.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_6.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_7.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_8.pp -------------------------------------------------------------------------------- /manifests/el7/9_1_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_1_9.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_1.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_1.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_10.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_10.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_11.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_11.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_12.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_12.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_13.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_13.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_14.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_14.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_15.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_15.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_16.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_16.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_17.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_17.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_18.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_18.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_19.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_19.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_2.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_2.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_20.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_20.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_21.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_21.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_3.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_3.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_4.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_4.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_5.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_5.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_6.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_6.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_7.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_7.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_8.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_8.pp -------------------------------------------------------------------------------- /manifests/el7/9_2_9.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7/9_2_9.pp -------------------------------------------------------------------------------- /manifests/el7all.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/el7all.pp -------------------------------------------------------------------------------- /manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/init.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0000.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0000.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0001.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0001.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0002.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0002.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0003.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0003.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0004.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0004.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0005.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0005.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0006.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0006.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0007.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0007.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0008.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0008.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0009.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0009.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0010.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0010.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0011.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0011.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0012.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0012.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0013.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0013.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0014.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0014.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0015.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0015.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0016.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0016.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0017.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0017.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0018.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0018.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0019.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0019.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0020.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0020.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0021.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0021.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0022.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0022.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0023.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0023.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0024.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0024.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0025.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0025.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0026.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0026.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0027.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0027.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0028.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0028.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0029.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0029.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0030.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0030.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0031.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0031.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0032.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0032.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0033.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0033.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0034.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0034.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0035.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0035.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0036.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0036.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0037.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0037.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0038.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0038.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0039.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0039.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0040.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0040.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0041.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0041.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0042.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0042.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0043.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0043.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0044.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0044.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0045.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0045.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0046.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0046.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0047.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0047.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0048.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0048.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0049.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0049.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0050.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0050.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0051.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0051.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0052.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0052.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0053.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0053.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0054.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0054.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0055.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0055.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0056.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0056.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0057.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0057.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0058.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0058.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0059.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0059.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0060.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0060.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0061.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0061.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0062.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0062.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0063.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0063.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0064.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0064.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0065.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0065.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0066.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0066.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0067.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0067.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0068.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0068.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0069.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0069.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0070.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0070.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0071.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0071.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0072.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0072.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0073.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0073.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0074.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0074.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0075.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0075.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0076.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0076.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0077.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0077.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0078.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0078.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0079.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0079.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0080.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0080.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0081.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0081.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0082.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0082.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0083.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0083.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0084.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0084.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0085.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0085.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0086.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0086.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0087.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0087.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0088.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0088.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0089.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0089.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0090.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0090.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0091.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0091.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0092.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0092.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0093.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0093.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0094.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0094.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0095.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0095.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0096.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0096.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0097.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0097.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0098.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0098.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0099.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0099.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0100.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0100.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0101.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0101.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0102.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0102.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0103.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0103.pp -------------------------------------------------------------------------------- /manifests/linuxcontrols/c0104.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/manifests/linuxcontrols/c0104.pp -------------------------------------------------------------------------------- /templates/awslinux/etc/grub.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/templates/awslinux/etc/grub.conf.erb -------------------------------------------------------------------------------- /templates/el6/etc/ntp.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/templates/el6/etc/ntp.conf.erb -------------------------------------------------------------------------------- /templates/el6/etc/rsyslog.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arildjensen/cis-puppet/HEAD/templates/el6/etc/rsyslog.conf.erb --------------------------------------------------------------------------------