Here's a copy-pastable way to restore the three files (they are, luckily, all pretty small).
# Daemon sudo tee /usr/bin/timekprd >/dev/null <<'EOF' #!/bin/sh exec /usr/bin/python3 /usr/lib/python3/dist-packages/timekpr/server/timekprd.py "$@" EOF # Admin client sudo tee /usr/bin/timekpra >/dev/null <<'EOF' #!/bin/sh exec /usr/bin/python3 /usr/lib/python3/dist-packages/timekpr/client/timekpra.py "$@" EOF # Client tray sudo tee /usr/bin/timekprc >/dev/null <<'EOF' #!/bin/sh exec /usr/bin/python3 /usr/lib/python3/dist-packages/timekpr/client/timekprc.py "$@" EOF sudo chmod 755 /usr/bin/timekpra /usr/bin/timekprc /usr/bin/timekprd # test: sudo timekpra --userlist -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/2148102 Title: timkpra does not start after upgrade to 26.04 To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/timekpr-next/+bug/2148102/+subscriptions -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
