├── .gitignore ├── AUTHORS.in ├── LICENSE ├── MANIFEST.in ├── NEWS.md ├── README.md ├── man └── virt-bootstrap.pod ├── pylintrc ├── requirements.txt ├── run ├── setup.py ├── src └── virtBootstrap │ ├── __init__.py │ ├── progress.py │ ├── sources │ ├── __init__.py │ ├── docker_source.py │ ├── file_source.py │ └── virt_builder_source.py │ ├── utils.py │ ├── virt_bootstrap.py │ └── whiteout.py ├── tests ├── __init__.py ├── docker_source.py ├── file_source.py ├── password.txt ├── test_utils.py └── virt_builder_source.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/AUTHORS.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/README.md -------------------------------------------------------------------------------- /man/virt-bootstrap.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/man/virt-bootstrap.pod -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/pylintrc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/requirements.txt -------------------------------------------------------------------------------- /run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/run -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/setup.py -------------------------------------------------------------------------------- /src/virtBootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/__init__.py -------------------------------------------------------------------------------- /src/virtBootstrap/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/progress.py -------------------------------------------------------------------------------- /src/virtBootstrap/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/sources/__init__.py -------------------------------------------------------------------------------- /src/virtBootstrap/sources/docker_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/sources/docker_source.py -------------------------------------------------------------------------------- /src/virtBootstrap/sources/file_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/sources/file_source.py -------------------------------------------------------------------------------- /src/virtBootstrap/sources/virt_builder_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/sources/virt_builder_source.py -------------------------------------------------------------------------------- /src/virtBootstrap/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/utils.py -------------------------------------------------------------------------------- /src/virtBootstrap/virt_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/virt_bootstrap.py -------------------------------------------------------------------------------- /src/virtBootstrap/whiteout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/src/virtBootstrap/whiteout.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/docker_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/tests/docker_source.py -------------------------------------------------------------------------------- /tests/file_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/tests/file_source.py -------------------------------------------------------------------------------- /tests/password.txt: -------------------------------------------------------------------------------- 1 | my secret root password 2 | -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/virt_builder_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/tests/virt_builder_source.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virt-manager/virt-bootstrap/HEAD/tox.ini --------------------------------------------------------------------------------