rtkbase icon indicating copy to clipboard operation
rtkbase copied to clipboard

Bundle install not work

Open Jef239 opened this issue 1 year ago • 0 comments

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

Jef239 avatar Jul 09 '24 02:07 Jef239