mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-13 11:24:04 +02:00
13 lines
228 B
Plaintext
13 lines
228 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# This code is from radvd package found on:
|
||
|
# http://openwrt.org/ipkg/
|
||
|
|
||
|
if [ ! -f /etc/radvd.conf ] ; then
|
||
|
echo
|
||
|
echo
|
||
|
echo See /etc/radvd.conf for configuration.
|
||
|
echo
|
||
|
cp /etc/radvd.conf.example /etc/radvd.conf
|
||
|
fi
|