Merge "Revert "Set up /var/run/sysinv as sysinv's default temp files location""

This commit is contained in:
Zuul 2020-06-18 15:31:23 +00:00 committed by Gerrit Code Review
commit 3a893d1586
2 changed files with 0 additions and 42 deletions

View File

@ -56,7 +56,6 @@ OCF_RESKEY_client_binary_default="system"
: ${OCF_RESKEY_client_binary=${OCF_RESKEY_client_binary_default}}
mydaemon="/usr/bin/${OCF_RESKEY_binary}"
TMP_DIR=/var/run/sysinv
#######################################################################
@ -137,22 +136,6 @@ END
return ${OCF_SUCCESS}
}
sysinv_api_tmpdir () {
local rc
if [ ! -d "$TMP_DIR" ]; then
mkdir -p "$TMP_DIR"
rc=$?
if [ $rc -ne 0 ]; then
ocf_log err "Inventory Service (${OCF_RESKEY_binary}) failed to create temp dir (rc=${rc})"
return ${OCF_NOT_RUNNING}
fi
chown sysinv:sysinv "$TMP_DIR"
fi
export TMPDIR="$TMP_DIR"
return ${OCF_SUCCESS}
}
sysinv_api_validate() {
local rc
@ -409,10 +392,6 @@ esac
# Anything except meta-data and help must pass validation
sysinv_api_validate || exit $?
# Set up tmpfiles directory to avoid temp files being
# cleaned up by systemd tmpfiles clean service.
sysinv_api_tmpdir || exit $?
if [ ${OCF_RESKEY_dbg} = "true" ] ; then
ocf_log info "${binname}:${__OCF_ACTION} action"
fi

View File

@ -40,7 +40,6 @@ OCF_RESKEY_config_default="/etc/sysinv/sysinv.conf"
: ${OCF_RESKEY_config=${OCF_RESKEY_config_default}}
mydaemon="/usr/bin/${OCF_RESKEY_binary}"
TMP_DIR="/var/run/sysinv_tmp"
#######################################################################
@ -112,21 +111,6 @@ END
return ${OCF_SUCCESS}
}
sysinv_conductor_tmpdir () {
local rc
if [ ! -d "$TMP_DIR" ]; then
mkdir -p "$TMP_DIR"
rc=$?
if [ $rc -ne 0 ]; then
ocf_log err "Inventory Service (${OCF_RESKEY_binary}) failed to create temp dir (rc=${rc})"
return ${OCF_NOT_RUNNING}
fi
chown sysinv:sysinv "$TMP_DIR"
fi
export TMPDIR="$TMP_DIR"
return ${OCF_SUCCESS}
}
sysinv_conductor_validate() {
local rc
@ -405,15 +389,10 @@ esac
# Anything except meta-data and help must pass validation
sysinv_conductor_validate || exit $?
# Set up tmpfiles directory to avoid temp files being
# cleaned up by systemd tmpfiles clean service.
sysinv_conductor_tmpdir || exit $?
if [ ${OCF_RESKEY_dbg} = "true" ] ; then
ocf_log info "${binname}:${__OCF_ACTION} action"
fi
case ${__OCF_ACTION} in
start) sysinv_conductor_start