post-installer.sh 336 B

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