Today I just learned that systemctl --force --force reboot
is a command. We had a computer we remotely connected to which got permission errors and bus errors when we tried to reboot it normally. For some reason the mentioned command did actually manage to shutdown the computer bit did not manage to reboot it correctly.
I wonder what the double --force flag actually accomplishes and what possibly could hinder a regular reboot in this scenario.
I agree. Specifying the same param twice like this feels like it should be idempotent. Sometimes a final cmdline string is built by multiple tools concatenating their outputs together; if each one adds
--force
without any way to know if it’s already been added elsewhere, this could lead to undesirable behavior.Even
--forceforce
would be better.