mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-09 07:45:23 +00:00
15 lines
305 B
Bash
15 lines
305 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
if [ "$1" = remove -o "$1" = purge ]; then
|
|
if [ -f /etc/fwupd/daemon.conf ]; then
|
|
if [ "$CI" = "true" ]; then
|
|
sed "s,^BlacklistPlugins=,BlacklistPlugins=test," -i /etc/fwupd/daemon.conf
|
|
else
|
|
echo "To disable test suite, modify /etc/fwupd/daemon.conf"
|
|
fi
|
|
fi
|
|
fi
|