(name: &str)
| 77 | } |
| 78 | |
| 79 | pub fn delete_system_user(name: &str) -> Result<(), Error> { |
| 80 | let mut command = Command::new("userdel"); |
| 81 | command.arg(name); |
| 82 | command_status(&mut command, "userdel") |
| 83 | } |
| 84 | |
| 85 | pub fn install_autostart_post_write(_service_path: &str) -> Result<(), Error> { |
| 86 | let mut daemon_reload = Command::new("systemctl"); |
no test coverage detected