Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/candy-chat/candy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/devbox
diff options
context:
space:
mode:
authorBen Langfeld <ben@langfeld.me>2015-02-10 02:06:23 +0300
committerBen Langfeld <ben@langfeld.me>2015-02-10 02:06:23 +0300
commit215a3efb867409f27b537d1f9056585d268f24da (patch)
treeef81ff6db035f81e43e65404655a1f709ff56daf /devbox
parent1a6cadcfefda4502e4f9a29e9d01099f89698c4d (diff)
Add support for message carbons to the devbox
Diffstat (limited to 'devbox')
-rw-r--r--devbox/prosody.cfg.lua1
-rw-r--r--devbox/provisioning.sh3
2 files changed, 4 insertions, 0 deletions
diff --git a/devbox/prosody.cfg.lua b/devbox/prosody.cfg.lua
index 94a644c..5572bcb 100644
--- a/devbox/prosody.cfg.lua
+++ b/devbox/prosody.cfg.lua
@@ -67,6 +67,7 @@ modules_enabled = {
--"welcome"; -- Welcome users who register accounts
--"watchregistrations"; -- Alert admins of registrations
--"motd"; -- Send a message to users when they log in
+ "carbons";
-- Debian: do not remove this module, or you lose syslog
-- support
"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
diff --git a/devbox/provisioning.sh b/devbox/provisioning.sh
index ce91aa9..76ff67c 100644
--- a/devbox/provisioning.sh
+++ b/devbox/provisioning.sh
@@ -18,6 +18,9 @@ apt-get install -y liblua5.1-bitop prosody lua-event
# Install Websockets module
wget -O /usr/lib/prosody/modules/mod_websocket.lua http://prosody-modules.googlecode.com/hg/mod_websocket/mod_websocket.lua
+# Install Carbons module
+wget -O /usr/lib/prosody/modules/mod_websocket.lua http://prosody-modules.googlecode.com/hg/mod_carbons/mod_carbons.lua
+
# Place config
cp /vagrant/devbox/prosody.cfg.lua /etc/prosody/prosody.cfg.lua