2014-08-26 19:19:03 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# This script downloads external ZNC modules which I use.
|
2014-09-24 18:00:24 +02:00
|
|
|
set -x
|
2015-01-16 10:17:12 +01:00
|
|
|
|
|
|
|
# znc/ is the cloned git repostiory (https://github.com/znc/znc.git)
|
2015-01-16 10:11:50 +01:00
|
|
|
cd znc/modules
|
2015-11-21 14:05:20 +01:00
|
|
|
sleep 2
|
|
|
|
curl -LO https://raw.githubusercontent.com/kylef/znc-contrib/master/privmsg.cpp
|
|
|
|
sleep 2
|
2016-12-11 14:03:43 +01:00
|
|
|
curl -LO https://raw.githubusercontent.com/Zarthus/znc-modules/master/ctcp_notifier.cpp
|
2015-11-21 14:05:20 +01:00
|
|
|
sleep 2
|
|
|
|
curl -LO https://github.com/jpnurmi/znc-playback/raw/master/playback.cpp
|
|
|
|
sleep 2
|
|
|
|
curl -LO https://github.com/jpnurmi/znc-chanfilter/raw/master/chanfilter.cpp
|
|
|
|
sleep 2
|
2017-10-08 11:19:58 +02:00
|
|
|
curl -LO https://github.com/CyberShadow/znc-clientbuffer/raw/master/clientbuffer.cpp
|
2015-02-23 12:29:30 +01:00
|
|
|
|
2015-02-23 12:31:41 +01:00
|
|
|
# modpython
|
2015-11-21 14:05:20 +01:00
|
|
|
sleep 2
|
|
|
|
curl -LO https://raw.githubusercontent.com/jreese/znc-push/python/push.py
|
|
|
|
sleep 2
|
|
|
|
curl -LO https://github.com/Nothing4You/znc-modules/raw/master/kill_notice.py
|
|
|
|
sleep 2
|
2015-11-21 14:19:45 +01:00
|
|
|
curl -LO https://github.com/emagaliff/znc-nicktrace/raw/master/aka.py
|
2015-02-23 12:31:41 +01:00
|
|
|
|
|
|
|
# now you should compile znc normally or use zncconfigure in this
|
|
|
|
# repository.
|