mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-28 04:38:32 +00:00
10 lines
335 B
Bash
Executable File
10 lines
335 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
sed "s,^DisabledPlugins=.*,DisabledPlugins=," -i /etc/fwupd/daemon.conf
|
|
sed "s,^VerboseDomains=.*,VerboseDomains=*," -i /etc/fwupd/daemon.conf
|
|
sed "s,ConditionVirtualization=.*,," \
|
|
/lib/systemd/system/fwupd.service > \
|
|
/etc/systemd/system/fwupd.service
|
|
systemctl daemon-reload
|
|
gnome-desktop-testing-runner fwupd
|