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.

  • kungen
    link
    fedilink
    arrow-up
    4
    ·
    11 days ago

    But that’s all part of the same argument. If it was -f or -ff that’d make sense. Duplicate parameters are usually ignored in like all other programs I can think of.

    • 𝘋𝘪𝘳𝘬@lemmy.ml
      link
      fedilink
      arrow-up
      8
      ·
      11 days ago

      The -vvv I know is the same as -v -v -v. Can’t check right now, but is the short parameter -f? So maybe give -ff a try …

    • huginn@feddit.it
      link
      fedilink
      arrow-up
      5
      ·
      11 days ago

      It’s a dangerous command - I’d rather not run it by accidentally hitting the f key a second time.

    • teawrecks@sopuli.xyz
      link
      fedilink
      arrow-up
      3
      ·
      11 days ago

      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.