# HG changeset patch # User Rob Hoelz # Date 1430310247 18000 # Node ID 752d52d61186c04512a0aead7a289690ebbd8ee7 # Parent a9df1f7e273dfe612d206f2c671e81833b52f5e4# Parent 94c4d4899a21ee59f003c30af30c7501f333693d Merge my branch containing proctitle module diff -r a9df1f7e273d -r 752d52d61186 mod_proctitle/mod_proctitle.lua --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_proctitle/mod_proctitle.lua Wed Apr 29 07:24:07 2015 -0500 @@ -0,0 +1,10 @@ +-- Changes the process name to 'prosody' rather than 'lua'/'lua5.1' +-- Copyright (C) 2015 Rob Hoelz +-- +-- This file is MIT/X11 licensed. + +-- To use this module, you'll need the proctitle Lua library: +-- https://github.com/hoelzro/lua-proctitle +local proctitle = require 'proctitle'; + +proctitle 'prosody';