linbpq/debian/preinst

13 lines
156 B
Plaintext
Raw Normal View History

2023-12-16 13:35:16 +00:00
#!/bin/sh
set -e
confile="/etc/bpq32.cfg"
node="/opt/oarc/bpq/bpq32.cfg"
if [ -L $confile ]; then
rm $confile
cp $node $confile
2023-12-16 14:40:33 +00:00
mv $node $node.bak
2023-12-16 13:35:16 +00:00
fi