mirror of
https://git.proxmox.com/git/fwupd
synced 2025-07-25 00:14:00 +00:00
12 lines
269 B
Bash
12 lines
269 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
#DEBHELPER#
|
|
|
|
# 1.3.2 had fwupd-refresh.service and fwupd.service both claiming
|
|
# this directory, but fwupd-refresh.service used DynamicUser directive
|
|
# meaning no other unit could access it.
|
|
if [ -L /var/cache/fwupd ]; then
|
|
rm -f /var/cache/fwupd
|
|
fi
|