13 lines
146 B
Plaintext
13 lines
146 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
confile="/etc/bpq32.cfg"
|
||
|
node="/opt/oarc/bpq/bpq32.cfg"
|
||
|
|
||
|
if [ -L $confile ]; then
|
||
|
rm $confile
|
||
|
cp $node $confile
|
||
|
rm $node
|
||
|
fi
|