Paste #151495

   
pasted on 06.11.2020 15:43
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 181230
  • Show paste tree
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
~ $ cat /usr/share/polkit-1/actions/org.freedesktop.DisplayManager.AccountsService.policy 
<?xml version="1.0" encoding="UTF-8"?>
<policyconfig>
        <action id="org.freedesktop.DisplayManager.AccountsService.ModifyOwn">
                <description>Set properties of own user</description>
                <message>Authentication is required to set one's own greeter properties.</message>
                <defaults>
                        <allow_any>yes</allow_any>
                        <allow_inactive>yes</allow_inactive>
                        <allow_active>yes</allow_active>
                </defaults>
        </action>

        <action id="org.freedesktop.DisplayManager.AccountsService.ReadAny">
                <description>Set properties of any user</description>
                <message>Authentication is required to get another user's greeter properties.</message>
                <defaults>
                        <allow_any>yes</allow_any>
                        <allow_inactive>yes</allow_inactive>
                        <allow_active>yes</allow_active>
                </defaults>
        </action>

        <action id="org.freedesktop.DisplayManager.AccountsService.ModifyAny">
                <description>Set properties of any user</description>
                <message>Authentication is required to set another user's greeter properties.</message>
                <defaults>
                        <allow_any>no</allow_any>
                        <allow_inactive>no</allow_inactive>
                        <allow_active>no</allow_active>
                </defaults>
        </action>
</policyconfig>
Add Comment
Author