#!/bin/bash -i

#
# This script removes an Upstart service of the ExaGear guest 
# from the list of host services
#
# Copyright (c) 2013 "Elbrus Technologies" LLC. All rights reserved.
#
# This script comes NO warranty, not even for MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.
#

my_dir=$(dirname $0)
etc="/etc/"

mgmt_script="$etc/init/$1.conf"

rm -f $mgmt_script

exit 0
