Updating messaging about overwritting

This commit is contained in:
Joshua Harlow 2012-03-23 14:56:46 -07:00
parent 40486e2a9e
commit e59799c9f3
2 changed files with 2 additions and 1 deletions

View File

@ -73,6 +73,7 @@ class QuantumInstaller(comp.PkgInstallComponent):
self.q_vswitch_service = False
plugin = self.cfg.getdefaulted("quantum", "q_plugin", VSWITCH_PLUGIN)
if plugin == VSWITCH_PLUGIN:
# FIXME: Make these subsystems
self.q_vswitch_agent = True
self.q_vswitch_service = True

View File

@ -35,7 +35,7 @@ if [ -f $RC_DIR/$EC2_RC ];
then
echo "Woah cowboy you seem to already have '$RC_DIR/$EC2_RC'!"
while true; do
read -p "Continue? " yn
read -p "Overwrite it and continue? " yn
case $yn in
[Yy]* ) break;;
[Nn]* ) exit 1;;