summaryrefslogtreecommitdiff
path: root/src/cmd/reboot.rs
blob: ebbea4b123a37599457c7627d9402abff5a4412b (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
27
28
29
30
31
32
//! The `reboot` sub-command.

use crate::cmd::shutdown::shutdown;
use crate::cmd::start::{start, StartError};
use crate::libvirt::VirtError;
use crate::progress::Progress;
use crate::spec::Specification;

/// Errors returned by this module.
#[derive(Debug, thiserror::Error)]
pub enum RebootError {
    /// Problem with new.
    #[error(transparent)]
    New(#[from] StartError),

    /// Problem from libvirt server.
    #[error(transparent)]
    VirtError(#[from] VirtError),
}

/// The `recreate` sub-command.
///
/// This shuts down, then starts virtual machines.
pub fn reboot(specs: &[Specification], progress: &Progress) -> Result<(), RebootError> {
    progress.chatty("Restarting virtual machines");

    shutdown(specs, progress)?;
    start(specs, progress)?;

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