mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-11-17 00:29:33 +01:00
Mikaela Suomalainen
45bcdda6d4
This reverts commit 3705f59a95
.
* * * * *
Potential cause of znc/znc#1116
21 lines
1016 B
Bash
Executable File
21 lines
1016 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# This script downloads external ZNC modules which I use.
|
|
set -x
|
|
|
|
# znc/ is the cloned git repostiory (https://github.com/znc/znc.git)
|
|
cd znc/modules
|
|
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
|
|
|
|
# modpython
|
|
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
|
|
wget -Ncnv https://github.com/jdarmst/znc-modules/raw/master/python/myinsanity.py
|
|
|
|
# now you should compile znc normally or use zncconfigure in this
|
|
# repository.
|