mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-11 11:37:31 +02:00
8 lines
181 B
Plaintext
8 lines
181 B
Plaintext
|
#!/bin/sh
|
||
|
# make /tmp/.bitchxrc as many servers ban root
|
||
|
if [ ! -e /tmp/.bitchxrc ]
|
||
|
then
|
||
|
echo "IRCUSER OpenWrt" >/tmp/.bitchxrc
|
||
|
echo "IRCNAME OpenWrt User!" >>/tmp/.bitchxrc
|
||
|
fi
|