mirror of
https://github.com/jerikan-network/cmdb.git
synced 2024-05-06 04:54:50 +00:00
12 lines
267 B
Bash
12 lines
267 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
conf=$(mktemp)
|
||
|
|
trap "rm -f $conf" EXIT
|
||
|
|
|
||
|
|
(
|
||
|
|
grep -qFx "table public;" output/"$1"/bird.conf || echo "table public;"
|
||
|
|
grep -qFx "table private;" output/"$1"/bird.conf || echo "table private;"
|
||
|
|
cat output/"$1"/bird.conf
|
||
|
|
) > $conf
|
||
|
|
bird -d -p -c $conf
|