experimental features for zram and reset tor (#2299)

* experimental features for zram and reset tor

* zram backend

---------

Co-authored-by: Aiden McClelland <me@drbonez.dev>
This commit is contained in:
Matt Hill
2023-06-09 15:47:11 -06:00
parent 71a15cf222
commit 3ccbc626ff
17 changed files with 320 additions and 1 deletions

View File

@@ -75,6 +75,7 @@ pub enum ErrorKind {
Grub = 64,
Systemd = 65,
OpenSsh = 66,
Zram = 67,
}
impl ErrorKind {
pub fn as_str(&self) -> &'static str {
@@ -146,6 +147,7 @@ impl ErrorKind {
Grub => "Grub Error",
Systemd => "Systemd Error",
OpenSsh => "OpenSSH Error",
Zram => "Zram Error",
}
}
}