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-04-01 23:07:50 +02:00
|
|
|
wget -Ncnv https://raw.githubusercontent.com/kylef/znc-contrib/master/privmsg.cpp
|
|
|
|
wget -Ncnv https://raw.githubusercontent.com/Zarthus/Code-Snippets/master/c++/znc-modules/ctcp_notifier.cpp
|
|
|
|
wget -Ncnv https://github.com/jpnurmi/znc-playback/raw/master/playback.cpp
|
|
|
|
wget -Ncnv https://github.com/jpnurmi/znc-chanfilter/raw/master/chanfilter.cpp
|
|
|
|
wget -Ncnv https://github.com/KindOne-/znc-modules/raw/master/modules/freenodeinfo.cpp
|
|
|
|
wget -Ncnv https://github.com/jpnurmi/znc-clientbuffer/raw/master/clientbuffer.cpp
|
2015-02-23 12:29:30 +01:00
|
|
|
|
2015-02-23 12:31:41 +01:00
|
|
|
# modpython
|
2015-04-01 23:07:50 +02:00
|
|
|
wget -Ncnv https://raw.githubusercontent.com/jreese/znc-push/python/push.py
|
|
|
|
wget -Ncnv https://github.com/Nothing4You/znc-modules/raw/master/kill_notice.py
|
2015-02-23 12:31:41 +01:00
|
|
|
|
|
|
|
# now you should compile znc normally or use zncconfigure in this
|
|
|
|
# repository.
|