diff options
| author | Joey Hess <joeyh@joeyh.name> | 2015-02-10 21:04:32 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-02-10 21:04:32 -0400 |
| commit | e32f1573741bcbbe93a7e801cecdea560b64c713 (patch) | |
| tree | 6dfd53cf1cb10b60b06f86569f380f28e74c7697 /src | |
| parent | 8d73419dbec51ea51e51b2507d9eab809b937f31 (diff) | |
Fix Git.daemonRunning to restart inetd after enabling the git server.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Propellor/Property/Git.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Git.hs b/src/Propellor/Property/Git.hs index c363d8c8..91f1e3ed 100644 --- a/src/Propellor/Property/Git.hs +++ b/src/Propellor/Property/Git.hs @@ -23,7 +23,7 @@ daemonRunning exportdir = setup <!> unsetup `requires` Apt.serviceInstalledRunning "openbsd-inetd" `onChange` - Service.running "openbsd-inetd" + Service.reloaded "openbsd-inetd" `describe` ("git-daemon exporting " ++ exportdir) unsetup = lacksLine conf (mkl "tcp4") `requires` |
