(service_path: &Path, socket_path: &Path)
| 787 | } |
| 788 | |
| 789 | fn launchd_refresh(service_path: &Path, socket_path: &Path) -> Result<()> { |
| 790 | ensure_launchd_runtime_dirs()?; |
| 791 | let target = launchd_service_target()?; |
| 792 | launchd_start(&target, service_path, socket_path) |
| 793 | } |
| 794 | |
| 795 | fn launchd_start(target: &str, service_path: &Path, socket_path: &Path) -> Result<()> { |
| 796 | let domain = launchd_domain()?; |
no test coverage detected