The AccountsService package provides a set of D-Bus interfaces for querying and manipulating user account information and an implementation of those interfaces based on the usermod(8), useradd(8) and userdel(8) commands.
This package is known to build and work properly using an LFS-8.4 platform.
Download (HTTP): https://www.freedesktop.org/software/accountsservice/accountsservice-0.6.54.tar.xz
Download MD5 sum: 6420f2e619ddcf92230d8f10bad049fe
Download size: 92 KB
Estimated disk space required: 9.1 MB
Estimated build time: 0.1 SBU
libgcrypt-1.8.4 and Polkit-0.115
gobject-introspection-1.58.3 and Systemd-240
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/accountsservice
Install AccountsService by running the following commands:
mkdir build && cd build && meson --prefix=/usr \ -Dadmin_group=adm \ -Dsystemd=true \ .. && ninja
This package does not come with a test suite.
Now, as the root
user:
ninja install
-Dadmin_group=adm
: This
switch sets the group for administrator accounts.
-Ddocbook=true
: This switch enables
building the D-Bus interface API documentation.
To allow users in the adm group to be listed as Administrators,
execute the following commands as the root
user:
cat > /etc/polkit-1/rules.d/40-adm.rules << "EOF"
polkit.addAdminRule(function(action, subject) {
return ["unix-group:adm"];
});
EOF
Last updated on 2019-02-27 08:55:47 -0800