mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-05 07:00:30 +00:00
12 lines
228 B
Bash
12 lines
228 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
#only enable on installation not upgrade
|
|
if [ "$1" = configure ] && [ -z "$2" ]; then
|
|
if [ -f /etc/fwupd.conf ]; then
|
|
sed "s,^EnableTestSuite=.*,EnableTestSuite=true," -i /etc/fwupd.conf
|
|
fi
|
|
fi
|