summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-11-01 15:21:34 +0100
committerJakob Unterwurzacher2015-11-01 15:21:34 +0100
commitc272e3042fd80e0ee1c7bed6e2482ed444f86412 (patch)
tree0a6c5daab90505152039c61059b0a941e35610c8 /main.go
parent2394d644e8d976c4ccdaf8b1b9fbc27513df04ae (diff)
Fix daemonization regression
Commit af923d2d16e0eedc7d2c203e28a42b6af49a51f5 broke daemonization. Revert the change but get rid of the warning message when running in the foreground.
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/main.go b/main.go
index 780ea3c..f1fd58b 100644
--- a/main.go
+++ b/main.go
@@ -199,10 +199,8 @@ func main() {
}
fmt.Println("Filesystem ready.")
- if !foreground {
- // Send notification to our parent
- sendUsr1()
- }
+ // Send notification to our parent
+ sendUsr1()
// Wait for SIGING in the background and unmount ourselves if we get it
// This prevents a dangling "Transport endpoint is not connected" mountpoint
handleSigint(srv, mountpoint)