mirror of
https://github.com/netdata/netdata.git
synced 2025-03-16 22:13:38 +00:00
11 lines
336 B
Bash
Executable file
11 lines
336 B
Bash
Executable file
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# This script is started using the shell of the system
|
|
# and executes our 'install-or-update.sh' script
|
|
# using the netdata supplied, statically linked BASH
|
|
#
|
|
# so, at 'install-or-update.sh' we are always sure
|
|
# we run under BASH v4.
|
|
|
|
./bin/bash system/install-or-update.sh "${@}"
|