()
| 175 | } |
| 176 | |
| 177 | pub fn remove_autostart_post_delete() -> Result<(), Error> { |
| 178 | let mut daemon_reload = Command::new("systemctl"); |
| 179 | daemon_reload.args(["daemon-reload"]); |
| 180 | command_status(&mut daemon_reload, "systemctl daemon-reload")?; |
| 181 | Ok(()) |
| 182 | } |
| 183 | |
| 184 | pub fn set_owner(path: &Path, recursive: bool) -> Result<(), Error> { |
| 185 | let mut command = Command::new("chown"); |
no test coverage detected