fix tor addressing for realzies

This commit is contained in:
Aiden McClelland
2021-09-08 19:13:36 -06:00
parent e7aa79548f
commit 2d8f49e877
5 changed files with 49 additions and 22 deletions

View File

@@ -17,6 +17,13 @@ impl Shutdown {
pub fn execute(&self) {
use std::process::Command;
Command::new("systemctl")
.arg("stop")
.arg("systemd-journald")
.spawn()
.unwrap()
.wait()
.unwrap();
if let Err(e) = export_blocking(&self.zfs_pool) {
log::error!("Error Exporting ZFS Pool: {}", e);
}