Skip to content

Commit

Permalink
dont catch SIGHUP
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Aug 16, 2024
1 parent 4c8cf9d commit 1c93740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ww/managers/signal_manager.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ signal_manager_t *createSignalManager(void)
.raise_defaults = true,
.handle_sigint = true,
.handle_sigquit = true,
.handle_sighup = true,
.handle_sighup = false, // exits after ssh closed even with nohup
.handle_sigill = true,
.handle_sigfpe = true,
.handle_sigabrt = true,
Expand Down

0 comments on commit 1c93740

Please sign in to comment.