linbpq/debian/preinst

15 lines
169 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
2023-12-28 10:33:19 +00:00
#DEBHELPER#