(target: &str, service_path: &Path, socket_path: &Path)
| 793 | } |
| 794 | |
| 795 | fn launchd_start(target: &str, service_path: &Path, socket_path: &Path) -> Result<()> { |
| 796 | let domain = launchd_domain()?; |
| 797 | run_launchd_commands(&launchd_start_command_plan(&domain, target, service_path))?; |
| 798 | verify_launchd_started(target, socket_path) |
| 799 | } |
| 800 | |
| 801 | fn launchd_before_uninstall(stop: bool) -> Result<()> { |
| 802 | if !stop { |
no test coverage detected