Example of 'action':
# Source function library. . /etc/rc.d/init.d/functions # Now you can use action: action $"Perform an action:" /bin/trueIn Centos 7, 'action' definition inside /etc/rc.d/init.d/functions is as the following:
# Run some action. Log its output. action() { local STRING rc STRING=$1 echo -n "$STRING " shift "$@" && success $"$STRING" || failure $"$STRING" rc=$? echo return $rc }
0 comments:
Post a Comment