03-13-2020, 07:44 PM
Thanks for the pointers @cmicallef !
I couldn't reproduce initially because of my habit to always log in through the console as soon as the system is up, but with everyone's details things were much more clear to me and I could find a fix/workaround.
That's bad luck, as systemd 245 was only uploaded to debian on March 11th, I guess this should force me to try and port to bullseye now that the most important parts are working...
Building a new systemd package right now, which should fix the issue![Smile Smile](https://forum.pine64.org/images/smilies/smile.png)
In the meantime, here's a workaround, by editing /usr/share/polkit-1/actions/org.freedesktop.login1.policy
Search for the following text (at the end of the file):
And change the following line:
with
I couldn't reproduce initially because of my habit to always log in through the console as soon as the system is up, but with everyone's details things were much more clear to me and I could find a fix/workaround.
That's bad luck, as systemd 245 was only uploaded to debian on March 11th, I guess this should force me to try and port to bullseye now that the most important parts are working...
Building a new systemd package right now, which should fix the issue
![Smile Smile](https://forum.pine64.org/images/smilies/smile.png)
In the meantime, here's a workaround, by editing /usr/share/polkit-1/actions/org.freedesktop.login1.policy
Search for the following text (at the end of the file):
Code:
<action id="org.freedesktop.login1.chvt">
<description gettext-domain="systemd">Change Session</description>
<message gettext-domain="systemd">Authentication is required to change the virtual terminal.</message>
<defaults>
<allow_any>auth_admin_keep</allow_any>
<allow_inactive>auth_admin_keep</allow_inactive>
<allow_active>yes</allow_active>
</defaults>
</action>
And change the following line:
Code:
<allow_inactive>auth_admin_keep</allow_inactive>
Code:
<allow_inactive>yes</allow_inactive>