Add presets support

This commit is contained in:
Roey Darwish Dror
2019-06-05 10:05:59 +03:00
parent 91215703bf
commit ffbd34e14f
7 changed files with 150 additions and 19 deletions

View File

@@ -41,6 +41,10 @@ pub struct CreateCommand {
/// Encrypt the root partition
#[structopt(short = "e", long = "encrypted-root")]
pub encrypted_root: bool,
/// Path to preset files
#[structopt(long = "presets")]
pub presets: Vec<PathBuf>,
}
#[derive(StructOpt)]