~ubuntu-branches/debian/sid/opennebula/sid

« back to all changes in this revision

Viewing changes to src/vmm_mad/remotes/xen/cancel

  • Committer: Package Import Robot
  • Author(s): Damien Raude-Morvan
  • Date: 2012-05-11 19:27:43 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120511192743-lnz8gog5uxzmx2f3
Tags: 3.4.1-1
* New upstream release:
  - d/patches/default_conf.diff: Drop, transfert manager is now handled
    on a datasatore basis.
  - d/patches/genisoimage.diff: Merged upstream.
  - d/patches/oneacct-system-wide-installation.patch: Merged upstream.
  - Refresh others patches.
  - Update *.install files.
* Improve OCCI Self-Service UI integration:
  - Install into /usr/share/opennebula/occi/.
  - occi_system_jquery.diff: Use system wide jquery/jqueryui.
  - Add Recommends: libjs-jquery, libjs-jquery-ui for opennebula package.
* Add Suggests: ruby-uuidtools for econe-server.
* Install more manpages from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
deploy_id=$1
23
23
 
 
24
function gdm {
 
25
    $XM_LIST | grep "$deploy_id "
 
26
}
 
27
 
24
28
exec_and_log "$XM_CANCEL $deploy_id" \
25
29
    "Could not destroy $deploy_id"
 
30
 
 
31
OUT=$(gdm)
 
32
 
 
33
while [ -n "$OUT" ]; do
 
34
    sleep 1
 
35
    OUT=$(gdm)
 
36
done
 
37