├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── Makefile ├── README.md ├── centos ├── clean.sh └── install-extras.sh ├── clean.sh ├── common ├── download.sh ├── lxc-template-openmandriva ├── lxc-template.bkp ├── package.sh ├── prepare-vagrant-user.sh ├── ui.sh └── utils.sh ├── conf ├── centos ├── debian ├── debian-jessie ├── debian-stretch ├── fedora ├── metadata.json ├── ubuntu ├── ubuntu-wily └── ubuntu-xenial ├── debian ├── clean.sh ├── install-ansible.sh ├── install-extras.sh └── vagrant-lxc-fixes.sh ├── fedora ├── clean.sh └── install-extras.sh ├── mk-centos.sh ├── mk-debian.sh └── mk-fedora.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /log 2 | /output 3 | *_packages 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/README.md -------------------------------------------------------------------------------- /centos/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/centos/clean.sh -------------------------------------------------------------------------------- /centos/install-extras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/centos/install-extras.sh -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/clean.sh -------------------------------------------------------------------------------- /common/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/common/download.sh -------------------------------------------------------------------------------- /common/lxc-template-openmandriva: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/common/lxc-template-openmandriva -------------------------------------------------------------------------------- /common/lxc-template.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/common/lxc-template.bkp -------------------------------------------------------------------------------- /common/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/common/package.sh -------------------------------------------------------------------------------- /common/prepare-vagrant-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/common/prepare-vagrant-user.sh -------------------------------------------------------------------------------- /common/ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/common/ui.sh -------------------------------------------------------------------------------- /common/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/common/utils.sh -------------------------------------------------------------------------------- /conf/centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/centos -------------------------------------------------------------------------------- /conf/debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/debian -------------------------------------------------------------------------------- /conf/debian-jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/debian-jessie -------------------------------------------------------------------------------- /conf/debian-stretch: -------------------------------------------------------------------------------- 1 | debian-jessie -------------------------------------------------------------------------------- /conf/fedora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/fedora -------------------------------------------------------------------------------- /conf/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/metadata.json -------------------------------------------------------------------------------- /conf/ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/ubuntu -------------------------------------------------------------------------------- /conf/ubuntu-wily: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/ubuntu-wily -------------------------------------------------------------------------------- /conf/ubuntu-xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/conf/ubuntu-xenial -------------------------------------------------------------------------------- /debian/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/debian/clean.sh -------------------------------------------------------------------------------- /debian/install-ansible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/debian/install-ansible.sh -------------------------------------------------------------------------------- /debian/install-extras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/debian/install-extras.sh -------------------------------------------------------------------------------- /debian/vagrant-lxc-fixes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/debian/vagrant-lxc-fixes.sh -------------------------------------------------------------------------------- /fedora/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/fedora/clean.sh -------------------------------------------------------------------------------- /fedora/install-extras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/fedora/install-extras.sh -------------------------------------------------------------------------------- /mk-centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/mk-centos.sh -------------------------------------------------------------------------------- /mk-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/mk-debian.sh -------------------------------------------------------------------------------- /mk-fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obnoxxx/vagrant-lxc-base-boxes/HEAD/mk-fedora.sh --------------------------------------------------------------------------------