f99f7755b8
Change-Id: Iea6c60943b0fd611b87a5c2ba9bd7a73c91fc91d Related-Blueprint: Controller-maintenance-mode
18 lines
346 B
Plaintext
18 lines
346 B
Plaintext
# umm-run - UMM command executert.
|
|
#
|
|
|
|
description "Openstack maintenance mode - custom command executer"
|
|
author "pzhurba@mirantis.com"
|
|
|
|
script
|
|
|
|
. /usr/lib/umm/umm_vars
|
|
|
|
if [ -f $UMM_DATA/UMM_CMD ] ; then
|
|
cmd=$(cat $UMM_DATA/UMM_CMD )
|
|
rm $UMM_DATA/UMM_CMD
|
|
exec $cmd &> $UMM_DATA/UMM_CMD.out
|
|
fi
|
|
|
|
end script
|