gitextract_1yek9sw7/ ├── .ansible-lint ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── ansible-lint.yml │ └── run-molecule.yml ├── .gitignore ├── .travis.yml ├── .yamllint ├── LICENSE ├── Makefile ├── README.md ├── defaults/ │ └── main.yml ├── files/ │ └── etc/ │ └── systemd/ │ └── system/ │ └── tmp.mount ├── handlers/ │ └── main.yml ├── meta/ │ └── main.yml ├── molecule/ │ └── default/ │ ├── INSTALL.rst │ ├── converge.yml │ ├── molecule.yml │ ├── prepare.yml │ ├── tests/ │ │ └── test_default.py │ └── verify.yml ├── requirements.txt ├── tasks/ │ ├── main.yml │ ├── post.yml │ ├── prelim.yml │ ├── section1.yml │ ├── section2.yml │ ├── section3.yml │ ├── section4.yml │ ├── section5.yml │ └── section6.yml ├── templates/ │ ├── at.allow.j2 │ ├── audit/ │ │ ├── ubuntu1804cis_rule_4_1_10.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_11.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_12.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_13.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_14.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_15.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_16.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_17.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_3.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_4.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_5.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_6.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_7.rules.j2 │ │ ├── ubuntu1804cis_rule_4_1_8.rules.j2 │ │ └── ubuntu1804cis_rule_4_1_9.rules.j2 │ ├── chrony.conf.j2 │ ├── cron.allow.j2 │ ├── etc/ │ │ ├── issue.j2 │ │ ├── issue.net.j2 │ │ └── motd.j2 │ ├── hosts.allow.j2 │ └── ntp.conf.j2 └── vars/ └── main.yml