1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

Feature #1224: snapshot-* actions should be local for the vmware driver

This commit is contained in:
Jaime Melis 2013-02-26 19:18:48 +01:00
parent 43398673ab
commit 4a92a51e04

View File

@ -22,4 +22,8 @@ else
MAD_LOCATION=$ONE_LOCATION/lib/mads
fi
exec $MAD_LOCATION/one_vmm_exec -l deploy,shutdown,reboot,cancel,save,restore,migrate,poll,pre,post,clean $*
LOCAL_ACTIONS="deploy,shutdown,reboot,cancel,save,restore,migrate,poll,pre"
LOCAL_ACTIONS="${LOCAL_ACTIONS},post,clean"
LOCAL_ACTIONS="${LOCAL_ACTIONS},snapshotcreate,snapshotrevert,snapshotdelete"
exec $MAD_LOCATION/one_vmm_exec -l $LOCAL_ACTIONS $*