Correct launch-node.py --config-drive default

For --config-drive to actually work as advertised in launch-node.py,
it needs to default to False. Otherwise this option is useless.

Change-Id: Ib29fa758779e89d3d25399615fd009b836dda598
This commit is contained in:
Jeremy Stanley 2016-07-07 15:04:53 +00:00
parent 4c4b4449d3
commit d66b8f47c4

@ -275,7 +275,7 @@ def main():
parser.add_argument("--config-drive", dest="config_drive",
help="Boot with config_drive attached.",
action='store_true',
default=True)
default=False)
parser.add_argument("--az", dest="availability_zone", default=None,
help="AZ to boot in.")
options = parser.parse_args()