launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #10967
[Merge] lp:~racb/maas/automation into lp:maas
Robie Basak has proposed merging lp:~racb/maas/automation into lp:maas.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~racb/maas/automation/+merge/119708
Fixes around HACKING.txt and automatically getting a MAAS development environment up and running.
--
https://code.launchpad.net/~racb/maas/automation/+merge/119708
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~racb/maas/automation into lp:maas.
=== modified file 'HACKING.txt'
--- HACKING.txt 2012-08-06 09:43:11 +0000
+++ HACKING.txt 2012-08-15 13:21:29 +0000
@@ -210,7 +210,8 @@
Now run ``maas-import-pxe-files`` to download current Ubuntu releases for
installing nodes::
- $ sudo http_proxy=$http_proxy PATH=$PATH:./bin:./scripts \
+ $ sudo http_proxy=$http_proxy PATH=$PATH:$PWD/bin:$PWD/scripts \
+ MAAS_PROVISIONING_SETTINGS=$PWD/etc/pserv.yaml \
./scripts/maas-import-pxe-files
This may download dozens or hundreds of megabytes, so depending on your
=== modified file 'Makefile'
--- Makefile 2012-08-01 09:30:02 +0000
+++ Makefile 2012-08-15 13:21:29 +0000
@@ -37,7 +37,8 @@
# Install all packages required for MAAS development & operation on
# the system. This may prompt for a password.
install-dependencies:
- sudo apt-get install $(shell sort -u required-packages/*)
+ sudo DEBIAN_FRONTEND=noninteractive apt-get -y install \
+ $(shell sort -u required-packages/*)
bin/python bin/pip:
$(virtualenv) --python=$(python) --system-site-packages $(CURDIR)