WIP: Generic activation program #9

Draft
ecoppens wants to merge 11 commits from ecoppens/colmena:main into main
Showing only changes of commit eca9e7a425 - Show all commits

View file

@ -65,6 +65,18 @@ impl CopyOptions {
self.gzip = val;
self
}
pub fn get_include_outputs(&self) -> bool {
self.include_outputs
}
pub fn get_use_substitutes(&self) -> bool {
self.use_substitutes
}
pub fn get_gzip(&self) -> bool {
self.gzip
}
}
impl Default for RebootOptions {