From 55e7248013601a6120d343fc6a345f0e0ae98cfb Mon Sep 17 00:00:00 2001 From: Michael Larson Date: Tue, 10 May 2011 14:21:27 -0700 Subject: support interactive mode for rest api for install image op mode commands. --- scripts/install/install-image-new | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/install/install-image-new') diff --git a/scripts/install/install-image-new b/scripts/install/install-image-new index c669da8e..3097392a 100755 --- a/scripts/install/install-image-new +++ b/scripts/install/install-image-new @@ -31,7 +31,11 @@ if [ -z "$image_name" ]; then fi echo -n "What would you like to name this image? [$image_name]: " -read response +if [ "$VYATTA_PROCESS_CLIENT" == "gui2_rest" ]; then + response=$NEWNAME +else + read response +fi if [ -n "$response" ]; then badchars=`echo $response | sed -e 's/[a-zA-Z0-9\.\_+-]//g'` if [ -n "$badchars" ]; then -- cgit v1.2.3