changeset 1689:06f9ab0c078c

Merge
author Kim Alvefur <zash@zash.se>
date Sun, 03 May 2015 13:42:56 +0200
parents cd87a2eba8f2 (current diff) 752d52d61186 (diff)
children 8c0fbc685364
files
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_proctitle/mod_proctitle.lua	Sun May 03 13:42:56 2015 +0200
@@ -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';