Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix initialization of SHARE_PATH variable on DSM 7 #6163

Merged
merged 1 commit into from
Jun 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions mk/spksrc.service.installer.functions
Original file line number Diff line number Diff line change
@@ -18,6 +18,8 @@ TAR="/bin/tar"

INST_ETC="/var/packages/${SYNOPKG_PKGNAME}/etc"
INST_VARIABLES="${INST_ETC}/installer-variables"
# DSM7 only
INST_SHARES="/var/packages/${SYNOPKG_PKGNAME}/shares"

if [ -z "${SYNOPKG_PKGVAR}" ]; then
# define SYNOPKG_PKGVAR for compatibility with DSM7 (replaces former INST_VAR)
@@ -51,10 +53,20 @@ initialize_variables ()
# this is required for installers without resource worker for file share (SRM 1, DSM 5, DSM 6 old packages)
if [ "$(echo ${SHARE_PATH} | grep ^/)" != "${SHARE_PATH}" ]; then
SHARE_NAME=${SHARE_PATH}
if synoshare --get "${SHARE_NAME}" &> /dev/null; then
SHARE_PATH=$(synoshare --get "${SHARE_NAME}" | awk 'NR==4' | cut -d] -f1 | cut -d[ -f2)
install_log "Path of existing share [${SHARE_NAME}] is [${SHARE_PATH}]"
if [ ${SYNOPKG_DSM_VERSION_MAJOR} -lt 7 ]; then
if synoshare --get "${SHARE_NAME}" &> /dev/null; then
SHARE_PATH=$(synoshare --get "${SHARE_NAME}" | awk 'NR==4' | cut -d] -f1 | cut -d[ -f2)
install_log "Path of existing share [${SHARE_NAME}] is [${SHARE_PATH}]"
fi
else
# synoshare fails on DSM 7 (at least on 7.2.1) with "Permission denied"
# but DSM 7 links package specific shares to the package installation folder
if [ -d ${INST_SHARES}/${SHARE_NAME} ]; then
SHARE_PATH=$(realpath ${INST_SHARES}/${SHARE_NAME})
install_log "Path of existing share [${SHARE_NAME}] is [${SHARE_PATH}]"
fi
fi
if [ ! -d "${SHARE_PATH}" ]; then
install_log "SHARE_NAME is not an existing share [${SHARE_PATH}]."
fi
fi