mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-27 07:52:24 +00:00
11 lines
224 B
Bash
11 lines
224 B
Bash
#!/bin/sh -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
|