summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Git.hs
diff options
context:
space:
mode:
authorJoey Hess2015-02-10 21:04:32 -0400
committerJoey Hess2015-02-10 21:04:32 -0400
commite32f1573741bcbbe93a7e801cecdea560b64c713 (patch)
tree6dfd53cf1cb10b60b06f86569f380f28e74c7697 /src/Propellor/Property/Git.hs
parent8d73419dbec51ea51e51b2507d9eab809b937f31 (diff)
Fix Git.daemonRunning to restart inetd after enabling the git server.
Diffstat (limited to 'src/Propellor/Property/Git.hs')
-rw-r--r--src/Propellor/Property/Git.hs2
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`