summaryrefslogtreecommitdiff
path: root/src/cmd/delete.rs
blob: 620ec9817c18c009ac4c02f102c64d23d7c8f081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//! The `delete` sub-command.

use crate::libvirt::{Libvirt, VirtError};
use crate::progress::Progress;
use crate::spec::Specification;

/// Delete VMs corresponding to specifications.
///
/// Delete the VM corresponding to each specification provided by the caller.
pub fn delete(specs: &[Specification], progress: &Progress) -> Result<(), VirtError> {
    progress.chatty("deleting virtual machines");

    let libvirt = Libvirt::connect("qemu:///system")?;
    for spec in specs {
        progress.chatty(&format!("asking virtual machine {} to shutdown", spec.name));
        libvirt.trigger_shutdown(&spec.name)?;
    }
    for spec in specs {
        progress.step(&format!("deleting virtual machine {}", spec.name));
        libvirt.shutdown(&spec.name)?;
        libvirt.delete(&spec.name, &spec.image)?;
    }

    progress.chatty("deletion successful");
    Ok(())
}