Changeset e47d291


Ignore:
Timestamp:
07/24/2014 06:07:26 AM (10 years ago)
Author:
Christopher Gregory <cjg@…>
Branches:
systemd-11177
Children:
5dc594e
Parents:
34c467e
Message:

updated gnome-bluetooth page to match what is done in systemd.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/systemd@13598 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
gnome-systemd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gnome-systemd/desktop/gnome-bluetooth.xml

    r34c467e re47d291  
    99  <!ENTITY gnome-bluetooth-download-ftp
    1010           "&gnome-download-ftp;/gnome-bluetooth/3.12/gnome-bluetooth-&gnome-bluetooth-version;.tar.xz">
    11   <!ENTITY gnome-bluetooth-md5sum        "a3b0b6c2c542b3264cb0144a4efb3342">
     11  <!ENTITY gnome-bluetooth-md5sum        "c23666aa1d0bfc37be38f45493679de2">
    1212  <!ENTITY gnome-bluetooth-size          "1.3 MB">
    1313  <!ENTITY gnome-bluetooth-buildsize     "21 MB">
     
    131131      <application>Udev</application> rule that will allow
    132132      normal users to write to <filename>/dev/rfkill</filename>
    133       with the following command as the
     133      with the following commands as the
    134134      <systemitem class="username">root</systemitem> user:
    135135    </para>
    136136
    137 <screen role="root"><userinput>cat &gt; /lib/udev/rules.d/61-gnome-bluetooth.rules &lt;&lt; "EOF"
     137    <para>
     138      First create a new group:
     139    </para>
     140
     141<screen role="root"><userinput>groupadd -r rfkill</userinput></screen>
     142
     143    <para>
     144      Create the udev rule:
     145    </para>
     146
     147<screen role="root"><userinput>cat &gt; /lib/udev/rules.d/61-rfkill.rules &lt;&lt; "EOF"
    138148<literal># Get access to /dev/rfkill for users
    139 # See https://bugzilla.redhat.com/show_bug.cgi?id=514798
    140 #
    141 # Updated for udev &gt;= 154
    142 # http://bugs.debian.org/582188
    143 # https://bugzilla.redhat.com/show_bug.cgi?id=588660
    144 
    145 ENV{ACL_MANAGE}=="0", GOTO="gnome_bluetooth_end"
    146 ACTION!="add|change", GOTO="gnome_bluetooth_end"
    147 KERNEL=="rfkill", TAG+="udev-acl"
    148 LABEL="gnome_bluetooth_end"</literal>
     149KERNEL=="rfkill", GROUP="rfkill", MODE="0664"</literal>
    149150EOF</userinput></screen>
    150151
     152    <para>
     153      Add a user to the new group:
     154    </para>
     155
     156<screen role="root"><userinput>usermod -a -G rfkill <replaceable>&lt;username&gt;</replaceable></userinput></screen>
     157 
    151158  </sect2>
    152159
  • gnome-systemd/intro/build-order.xml

    r34c467e re47d291  
    231231</listitem>
    232232<listitem>
     233<para><xref linkend="shared-mime-info"/>,</para>
     234</listitem>
     235<listitem>
    233236<para><xref linkend="nautilus"/>,</para>
    234237</listitem>
Note: See TracChangeset for help on using the changeset viewer.