rtkbase
rtkbase copied to clipboard
Bundle install not work
In the install_rtkbase_bundled in install.sh there is line:
sudo -u "${RTKBASE_USER}" tail -n+${ARCHIVE} "${0}" | tar xpJv && \
In that line tail work as ${RTKBASE_USER}, but tar work as root.
Then tar work as root, tar use ownerships and permissions from archive. You must use --no-same-owner --no-same-permissions or execute tar as ${RTKBASE_USER}.
It's my correction: rtkbase_install_sh.patch
This error has many consequences, but the main thing is that sudo -u "${RTKBASE_USER}" python3 -m venv "${rtkbase_path}"/venv is not executed due to a permission error