
It is possible to rebuild the pre-built tinyipa image available at tarballs.openstack.org to make it usable with ansible-deploy driver. The rebuild is rather fast, and only downloads 2 packages from TC mirrors (SSH server and dependencies). Change-Id: Ie39ce67dc93e7d53bf75937c7defacafad5fbfcf Related-Bug: #1526308
14 lines
226 B
Makefile
14 lines
226 B
Makefile
.PHONY: all dependencies rebuild clean
|
|
all: dependencies rebuild
|
|
|
|
dependencies:
|
|
./install-deps.sh
|
|
rebuild:
|
|
./rebuild-tinyipa.sh
|
|
clean:
|
|
sudo -v
|
|
sudo rm -rf rebuild
|
|
rm -f *.initramfs
|
|
rm -f *.gz
|
|
rm -rf build_files/cache/*
|