20 lines
326 B
Bash
20 lines
326 B
Bash
#!/bin/bash
|
|
|
|
cd
|
|
git clone https://git.nia.ink/brnet/bird_config.git
|
|
|
|
rm /etc/bird/template -rf
|
|
mv ./bird_config/bird/template /etc/bird/template
|
|
|
|
rm /etc/bird/function/unet.conf -f
|
|
mv ./bird_config/bird/function/unet.conf /etc/bird/function/unet.conf
|
|
|
|
|
|
chmod -R 755 /etc/bird
|
|
|
|
birdc c
|
|
cd
|
|
rm -rf bird_config
|
|
|
|
cd
|
|
rm update.sh |