use customizable paths for '/usr/sbin'
[util-vserver.git] / util-vserver / scripts / vsysvwrapper
index 309a9d1..f26ccf5 100755 (executable)
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 # Helper script for all the v_xxx scripts
-USR_SBIN=/usr/sbin
+: ${UTIL_VSERVER_VARS:=$(dirname $0)/util-vserver-vars}
+test -e "$UTIL_VSERVER_VARS" || {
+    echo "Can not find util-vserver installation; aborting..."
+    exit 1
+}
+. "$UTIL_VSERVER_VARS"
+
 if [ $# = 0 ] ; then
        echo vsysvwrapper service_name >&2
 else
@@ -33,8 +39,8 @@ else
        do
                IPOPT="$IPOPT --ip $oneip"
        done
-       echo exec $USR_SBIN/chbind $IPOPT /etc/init.d/$SERVICE $*
-       exec $USR_SBIN/chbind $IPOPT /etc/init.d/$SERVICE $*
+       echo exec $SBINDIR/chbind $IPOPT /etc/init.d/$SERVICE $*
+       exec $SBINDIR/chbind $IPOPT /etc/init.d/$SERVICE $*
 fi