0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-05-13 13:12:05 +00:00
netdata_netdata/packaging/makeself/jobs/00-prepare-destination.install.sh

24 lines
819 B
Bash
Raw Permalink Normal View History

2017-03-27 00:39:16 +03:00
#!/usr/bin/env bash
2018-09-30 01:36:42 +02:00
# SPDX-License-Identifier: GPL-3.0-or-later
2017-03-27 00:39:16 +03:00
# shellcheck source=packaging/makeself/functions.sh
. "$(dirname "${0}")/../functions.sh" "${@}" || exit 1
2017-03-27 00:39:16 +03:00
# shellcheck disable=SC2015
2025-03-25 07:00:54 -04:00
[ "${GITHUB_ACTIONS}" = "true" ] && echo "::group::Preparing install path" || true
2017-03-27 00:39:16 +03:00
[ -d "${NETDATA_INSTALL_PATH}.old" ] && run rm -rf "${NETDATA_INSTALL_PATH}.old"
[ -d "${NETDATA_INSTALL_PATH}" ] && run mv -f "${NETDATA_INSTALL_PATH}" "${NETDATA_INSTALL_PATH}.old"
run mkdir -p "${NETDATA_INSTALL_PATH}/bin"
run mkdir -p "${NETDATA_INSTALL_PATH}/usr"
run cd "${NETDATA_INSTALL_PATH}" || exit 1
2017-03-27 00:39:16 +03:00
run ln -s bin sbin
run cd "${NETDATA_INSTALL_PATH}/usr" || exit 1
2017-03-27 00:39:16 +03:00
run ln -s ../bin bin
run ln -s ../sbin sbin
run ln -s . local
# shellcheck disable=SC2015
[ "${GITHUB_ACTIONS}" = "true" ] && echo "::endgroup::" || true