Broken in r31714 for bug 5794. We get these when uninstalling ThinLinc packages: > Unknown operation vsmagent. > Unknown operation vsmserver. The cause is the wrong order of arguments in remove_service: > /bin/systemctl ${service} disable It should be: > /bin/systemctl disable ${service} Not sure if there are any consequences besides the error.
(In reply to comment #0) > Broken in r31714 for bug 5794. > Actually bug 5974.
The changes done in r34910 (Part of Bug 4290) moves the functionality from remove_service file to where it is needed and also fixes the order of > /bin/systemctl ${service} disable to > /bin/systemctl disable ${service} Could reproduce the issue with 4.11.0. Tested the fix with build 6415 on Ubuntu 18.04. Works fine.
Tested with build 6416 and was not able to reproduce this as I could with 4.11.0 so this is now fixed.