fwupd/contrib/debian/fwupd-tests.postinst
2017-08-17 13:19:08 -05:00

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