| 1 | #!/bin/sh |
| 2 | # SPDX-License-Identifier: GPL-3.0-or-later |
| 3 | |
| 4 | # This script is started using the shell of the system |
| 5 | # and executes our 'install-or-update.sh' script |
| 6 | # using the netdata supplied, statically linked BASH |
| 7 | # |
| 8 | # so, at 'install-or-update.sh' we are always sure |
| 9 | # we run under BASH v4. |
| 10 | |
| 11 | ./bin/bash system/install-or-update.sh "${@}" |