Fix os-svc-install

The 'a' option was missing from the getops set of available options
in os-svc-restart.  This is causing CI failures in patces with an
"illegal operation -- a" error.[1]  This patch adds the 'a' option
to os-svc-restart.

[1] Ib3bc5c47de1b8bb6006530d56e9d47c3763af7b5

Change-Id: I527c5b0cda0cda7877d23422702517760c1bf340
This commit is contained in:
Ryan Brady 2014-10-09 18:09:23 -04:00
parent 07e7f1f963
commit 90b2f10302
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ SERVICENAME=${SERVICENAME:-""}
MAPPING_COMMAND=map-services
nshift=0
while getopts "hn:" opt; do
while getopts "ahn:" opt; do
case "$opt" in
n) SERVICENAME=$OPTARG;;
h) usage 0;;