From 7e3e9b8e9cea4f1bf78d127ffb915b79c854fdbe Mon Sep 17 00:00:00 2001 From: Ghe Rivero Date: Tue, 1 May 2012 14:34:55 +0200 Subject: Remove old flagfile support. Implements blueprint remove-old-flagfile nova-manage can still be used to convert old flagfiles style files to new .ini files: $ ./bin/nova-manage config convert --help Usage: nova-manage config convert [options] Options: -h, --help show this help message and exit --infile= old-style flagfile to convert to config --outfile= path for output file. Writes configto stdout if not specified. Change-Id: Ib8fbbd858b1db7faef70d7d97955e5042bf378f2 Signed-off-by: Ghe Rivero --- bin/nova-api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/nova-api') diff --git a/bin/nova-api b/bin/nova-api index d8635978e..7a601c3a6 100755 --- a/bin/nova-api +++ b/bin/nova-api @@ -42,7 +42,7 @@ from nova import service from nova import utils if __name__ == '__main__': - utils.default_flagfile() + utils.default_cfgfile() flags.FLAGS(sys.argv) logging.setup() utils.monkey_patch() -- cgit