scripts/bash/zncmodules

21 lines
1016 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
# This script downloads external ZNC modules which I use.
2014-09-24 19:00:24 +03:00
set -x
2015-01-16 11:17:12 +02:00
# znc/ is the cloned git repostiory (https://github.com/znc/znc.git)
cd znc/modules
2015-04-02 00:07:50 +03: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 13:31:41 +02:00
# modpython
2015-04-02 00:07:50 +03: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-09-20 08:18:34 +03:00
wget -Ncnv https://github.com/jdarmst/znc-modules/raw/master/python/myinsanity.py
2015-02-23 13:31:41 +02:00
# now you should compile znc normally or use zncconfigure in this
# repository.