#!/bin/bash
#
# Copyright (c) Microsoft Corporation.
#
# Front-end shell script for azcmagent executable

# Do not remove this line ==== place Environment Variables below ======

#
if [ "$(id -u)" -ne 0 ]; then
    echo "You must be root to execute $0"
    exit 18   # utils.Exit_AdminPrivilegesNeeded
fi
/opt/azcmagent/bin/azcmagent_executable "$@"
