# function before_start_runtime
# hook function called from init-script
# pre: none
# exit: none
# post: none
before_start_runtime () {
    :
}

# function after_start_runtime
# hook function called from init-script
# pre: none
# exit: none
# post: none
after_start_runtime () {
    :
}

# function before_stop_runtime
# hook function called from init-script
# pre: none
# exit: none
# post: none
before_stop_runtime () {
    :
}

# function after_stop_runtime
# hook function called from init-script
# pre: none
# exit: none
# post: none
after_stop_runtime () {
    :
}
