├── CHANGES.txt ├── README.md ├── VERSION ├── docker_build.py ├── docker_launcher.py ├── extras ├── Vagrantfile.base ├── __init__.py ├── __init__.pyc └── docker │ ├── Dockerfile.base │ ├── Dockerfile.redhat │ ├── __init__.py │ ├── __init__.pyc │ ├── docker_helpers.py │ ├── docker_helpers.pyc │ ├── dockerclean.sh │ ├── faraday-docker.prv │ └── faraday-docker.pub ├── images.txt ├── redhat_images.txt ├── root ├── .bashrc ├── .gitconfig └── .scripts │ ├── git-completion.sh │ ├── git-prompt.sh │ └── z.sh ├── roothelper ├── roothelper.c ├── roothelper_setpasswd ├── run.sh ├── shellshock_test.sh └── vagrant_build.py /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v1.0.1 2 | -------------------------------------------------------------------------------- /docker_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/docker_build.py -------------------------------------------------------------------------------- /docker_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/docker_launcher.py -------------------------------------------------------------------------------- /extras/Vagrantfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/Vagrantfile.base -------------------------------------------------------------------------------- /extras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/__init__.py -------------------------------------------------------------------------------- /extras/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/__init__.pyc -------------------------------------------------------------------------------- /extras/docker/Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/Dockerfile.base -------------------------------------------------------------------------------- /extras/docker/Dockerfile.redhat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/Dockerfile.redhat -------------------------------------------------------------------------------- /extras/docker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/__init__.py -------------------------------------------------------------------------------- /extras/docker/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/__init__.pyc -------------------------------------------------------------------------------- /extras/docker/docker_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/docker_helpers.py -------------------------------------------------------------------------------- /extras/docker/docker_helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/docker_helpers.pyc -------------------------------------------------------------------------------- /extras/docker/dockerclean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/dockerclean.sh -------------------------------------------------------------------------------- /extras/docker/faraday-docker.prv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/faraday-docker.prv -------------------------------------------------------------------------------- /extras/docker/faraday-docker.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/extras/docker/faraday-docker.pub -------------------------------------------------------------------------------- /images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/images.txt -------------------------------------------------------------------------------- /redhat_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/redhat_images.txt -------------------------------------------------------------------------------- /root/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/root/.bashrc -------------------------------------------------------------------------------- /root/.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/root/.gitconfig -------------------------------------------------------------------------------- /root/.scripts/git-completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/root/.scripts/git-completion.sh -------------------------------------------------------------------------------- /root/.scripts/git-prompt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/root/.scripts/git-prompt.sh -------------------------------------------------------------------------------- /root/.scripts/z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/root/.scripts/z.sh -------------------------------------------------------------------------------- /roothelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/roothelper -------------------------------------------------------------------------------- /roothelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/roothelper.c -------------------------------------------------------------------------------- /roothelper_setpasswd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/roothelper_setpasswd -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/run.sh -------------------------------------------------------------------------------- /shellshock_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/shellshock_test.sh -------------------------------------------------------------------------------- /vagrant_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/infobyte/distro_checker/HEAD/vagrant_build.py --------------------------------------------------------------------------------