#1110767 usbmuxd fails after sleep, hackaround

Package:
usbmuxd
Source:
usbmuxd
Description:
USB multiplexor daemon for iPhone and iPod Touch devices
Submitter:
debian user
Date:
2025-08-10 22:45:02 UTC
Severity:
normal
Tags:
#1110767#5
Date:
2025-08-10 22:43:30 UTC
From:
To:
Dear Maintainer,

usbmuxd has an issue with sleep. If you see spam in 'systemctl status usbmuxd' about failure, old connection,
and what-not... I can get some info if necessary, but yeah.

I was hoping it was fixed in trixie, but no.

Here's my hackaround, working about two years now.
#/lib/systemd/system-sleep/usbmuxd
#!/bin/sh

case $1 in
  post)
    systemctl restart usbmuxd
    ;;
esac
#end script