Is that possible ?

Thanks

  • KaKi87@jlai.luOP
    link
    fedilink
    arrow-up
    0
    ·
    27 days ago

    Sorry I thought that Discover was only used on KDE neon, which thefore is the distro, and the CLI equivalent is indeed the one you mentioned.

    So what’s the solution for this distro ?

    Thanks

    • boredsquirrel@slrpnk.net
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      26 days ago

      I used Neon for a while. Again, can you please give the needed information. If the password dialog shows, at the left click on “expand”/“show more” and you see the exact action that is executed.

      Then have a look at the rules in my linked repo, and replace the action in “libvirt” with that, and the group with “wheel”

      (Use groups and send me the output, no idea if the sudo users are in the sudo group on Ubuntu)

      Then send that rule, embed it in

      ``` Rule ```

      To format correctly. I look at it and if it is correct, we go on.

        • boredsquirrel@slrpnk.net
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          25 days ago

          I have examples in the repo I linked

          polkit.addRule(function(action, subject) {
            if action.id == "ACTION" {
              if subject.isInGroup("wheel") {
                return polkit.Result.YES;
              }
            }
          });
          
          • KaKi87@jlai.luOP
            link
            fedilink
            English
            arrow-up
            0
            ·
            14 days ago

            I don’t have a rules.d directory at /etc/polkit-1/ though, I only have localauthority and localauthority.conf.d.

            Should I create the directory then create the file ?

            Thanks