Unverified Commit c5abcd42 authored by Robert Hensing's avatar Robert Hensing Committed by GitHub
Browse files

Merge pull request #183361 from olafklingt/jane2alice

use consistently user alice for examples
parents 4ee298da 9f041684
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -169,7 +169,7 @@ configuration, GPU devices have world-read/write permissions
(`/dev/dri/renderD*`) or are tagged as `uaccess` (`/dev/dri/card*`). The
access control lists of devices with the `uaccess` tag will be updated
automatically when a user logs in through `systemd-logind`. For example,
if the user *jane* is logged in, the access control list should look as
if the user *alice* is logged in, the access control list should look as
follows:

```ShellSession
@@ -178,7 +178,7 @@ $ getfacl /dev/dri/card0
# owner: root
# group: video
user::rw-
user:jane:rw-
user:alice:rw-
group::rw-
mask::rw-
other::---
+2 −2
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ environment.variables.VK_ICD_FILENAMES =
        devices with the <literal>uaccess</literal> tag will be updated
        automatically when a user logs in through
        <literal>systemd-logind</literal>. For example, if the user
        <emphasis>jane</emphasis> is logged in, the access control list
        <emphasis>alice</emphasis> is logged in, the access control list
        should look as follows:
      </para>
      <programlisting>
@@ -203,7 +203,7 @@ $ getfacl /dev/dri/card0
# owner: root
# group: video
user::rw-
user:jane:rw-
user:alice:rw-
group::rw-
mask::rw-
other::---
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ with lib;
  # services.xserver.libinput.enable = true;

  # Define a user account. Don't forget to set a password with ‘passwd’.
  # users.users.jane = {
  # users.users.alice = {
  #   isNormalUser = true;
  #   extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
  # };
+1 −1
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ in
        # services.xserver.libinput.enable = true;

        # Define a user account. Don't forget to set a password with ‘passwd’.
        # users.users.jane = {
        # users.users.alice = {
        #   isNormalUser = true;
        #   extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
        #   packages = with pkgs; [
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ in {
        {
          dm_file = '''
            admin:secret_password:localhost
            jane:xyzzy:*
            alice:xyzzy:*
          ''';
          ban_file = '''
            # Bob is a jerk
Loading