Merge branch 'next' of github.com:Start9Labs/start-os into rebase/integration/refactors

This commit is contained in:
Aiden McClelland
2023-08-08 10:08:59 -06:00
36 changed files with 430 additions and 190 deletions

View File

@@ -76,6 +76,7 @@ pub enum ErrorKind {
Systemd = 65,
OpenSsh = 66,
Zram = 67,
Lshw = 68,
}
impl ErrorKind {
pub fn as_str(&self) -> &'static str {
@@ -148,6 +149,7 @@ impl ErrorKind {
Systemd => "Systemd Error",
OpenSsh => "OpenSSH Error",
Zram => "Zram Error",
Lshw => "LSHW Error",
}
}
}