From d66b8f47c48c2403a935dd9fa7c0e16404392c82 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Thu, 7 Jul 2016 15:04:53 +0000 Subject: [PATCH] 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 --- launch/launch-node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launch/launch-node.py b/launch/launch-node.py index c33771936b..76731aaff3 100755 --- a/launch/launch-node.py +++ b/launch/launch-node.py @@ -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()