Your IP : 216.73.217.79


Current Path : /proc/thread-self/root/bin/
Upload File :
Current File : //proc/thread-self/root/bin/google_metadata_script_runner_adapt

#!/usr/bin/env bash
#
# This script wraps compatibility logic of guest agent's startup script
# runner. If compat manager is present run it, otherwise launch the
# known service binary.
#

if [ -e /usr/bin/gce_compat_metadata_script_runner ]; then
  /usr/bin/gce_compat_metadata_script_runner $1
else
  /usr/bin/google_metadata_script_runner $1
fi