Gracefully Exit Dedicated ServerMami Tomoe User Offline 26.09.25 04:03:54 am Hello! Does anybody know the best approach to gracefully stop a dedicated server? I've considered exit/ disconnect versus quit. Thanks.
Re: Gracefully Exit Dedicated ServerHajt User Offline 26.09.25 02:20:02 pm The commands exit and disconnect are not available for dedicated servers. Use quit instead or send SIGTERM . Both perform a graceful shutdown. I assume this because I tested it with: 12345addhook("shutdown", "test") function test() msg("test triggered") end parse("quit")