├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── ansible ├── README.md ├── ansible.cfg ├── inventory │ └── hosts ├── prereq-check.yml └── roles │ └── prereq-checks │ ├── defaults │ └── main.yml │ ├── files │ └── prereq-check.sh │ └── tasks │ └── main.yml ├── images ├── sample-run-fail.png └── sample-run-pass.png ├── lib ├── cdsw-checks.sh ├── checks.sh ├── info.sh ├── security │ ├── cldap.pl │ └── security-checks.sh └── utils.sh ├── prereq-check-dev.sh ├── prereq-check.sh └── vagrant ├── .gitignore ├── README.md ├── centos6.7 └── Vagrantfile ├── centos7.3 └── Vagrantfile └── v /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | *.swp 4 | *.retry 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/README.md -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/ansible/README.md -------------------------------------------------------------------------------- /ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/ansible/ansible.cfg -------------------------------------------------------------------------------- /ansible/inventory/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/ansible/inventory/hosts -------------------------------------------------------------------------------- /ansible/prereq-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/ansible/prereq-check.yml -------------------------------------------------------------------------------- /ansible/roles/prereq-checks/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | outputdir: . 3 | -------------------------------------------------------------------------------- /ansible/roles/prereq-checks/files/prereq-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/ansible/roles/prereq-checks/files/prereq-check.sh -------------------------------------------------------------------------------- /ansible/roles/prereq-checks/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/ansible/roles/prereq-checks/tasks/main.yml -------------------------------------------------------------------------------- /images/sample-run-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/images/sample-run-fail.png -------------------------------------------------------------------------------- /images/sample-run-pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/images/sample-run-pass.png -------------------------------------------------------------------------------- /lib/cdsw-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/lib/cdsw-checks.sh -------------------------------------------------------------------------------- /lib/checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/lib/checks.sh -------------------------------------------------------------------------------- /lib/info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/lib/info.sh -------------------------------------------------------------------------------- /lib/security/cldap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/lib/security/cldap.pl -------------------------------------------------------------------------------- /lib/security/security-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/lib/security/security-checks.sh -------------------------------------------------------------------------------- /lib/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/lib/utils.sh -------------------------------------------------------------------------------- /prereq-check-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/prereq-check-dev.sh -------------------------------------------------------------------------------- /prereq-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/prereq-check.sh -------------------------------------------------------------------------------- /vagrant/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | prereq-check.sh 3 | -------------------------------------------------------------------------------- /vagrant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/vagrant/README.md -------------------------------------------------------------------------------- /vagrant/centos6.7/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/vagrant/centos6.7/Vagrantfile -------------------------------------------------------------------------------- /vagrant/centos7.3/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/vagrant/centos7.3/Vagrantfile -------------------------------------------------------------------------------- /vagrant/v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudera-ps/prereq-checks/HEAD/vagrant/v --------------------------------------------------------------------------------