2157c962c5
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10734 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
222 B
Bash
12 lines
222 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=98
|
|
start() {
|
|
# 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
|
|
}
|