Skip to content

Commit

Permalink
Add READMEs in all .d directories
Browse files Browse the repository at this point in the history
  • Loading branch information
keszybz committed Mar 26, 2021
1 parent 3b0754b commit d83e90c
Show file tree
Hide file tree
Showing 12 changed files with 76 additions and 14 deletions.
11 changes: 11 additions & 0 deletions hwdb.d/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Files in this directory specify a description of hardware devices, in the form
of mappings from modalias-like keys (which identify specific hardware devices)
to udev properties.

Files in this directory are not read by udev directly. Instead,
man:systemd-hwdb(8) compiles them into a binary database.

See man:hwdb(7) for an overview of the configuration file format, and
man:systemd-udevd.service(8) for a description of the udev daemon.

Use 'systemd-analyze cat-config udev/hwdb.d' to display the effective config.
1 change: 1 addition & 0 deletions hwdb.d/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# they are very long but quite repetitive and the parser is not very fast.
# So we don't "test" them.
hwdb_files_notest = files('''
README
20-dmi-id.hwdb
20-pci-vendor-model.hwdb
20-pci-classes.hwdb
Expand Down
3 changes: 2 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -3472,7 +3472,8 @@ if install_sysconfdir
install_data('xorg/50-systemd-user.sh',
install_dir : xinitrcdir)
endif
install_data('modprobe.d/systemd.conf',
install_data('README',

This comment has been minimized.

Copy link
@shaba

shaba May 10, 2021

Contributor

Please, fix to modprobe.d/README

This comment has been minimized.

Copy link
@mbiebl

mbiebl May 10, 2021

Contributor

Indeed, well spotted.

This comment has been minimized.

Copy link
@mbiebl

mbiebl May 10, 2021

Contributor

Or, for consistencies sake, we could have a modprobe.d/meson.build

'modprobe.d/systemd.conf',
install_dir : modprobedir)
install_data('LICENSE.GPL2',
'LICENSE.LGPL2.1',
Expand Down
7 changes: 7 additions & 0 deletions modprobe.d/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Files in this directory contain configuration for modprobe, a program to load
kernel modules.

See man:modprobe.d(5) for explanation of the configuration file format, and
man:modprobe(8) for a description of the program itself.

Use 'systemd-analyze cat-config modprobe.d' to display the effective config.
8 changes: 8 additions & 0 deletions rules.d/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Files in this directory contain configuration for systemd-udev.service, a
daemon that manages symlinks to device nodes, permissions of devices nodes,
emits device events for userspace, and renames network interfaces.

See man:udev(7) for an overview of the configuration file format, and
man:systemd-udevd.service(8) for a description of service itself.

Use 'systemd-analyze cat-config udev/rules.d' to display the effective config.
4 changes: 4 additions & 0 deletions rules.d/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SPDX-License-Identifier: LGPL-2.1-or-later

install_data(
'README',
install_dir : udevrulesdir)

rules = files('''
60-autosuspend.rules
60-block.rules
Expand Down
8 changes: 8 additions & 0 deletions sysctl.d/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Files in this directory contain configuration for systemd-sysctl.service, a
service to configure sysctl kernel parameters.

See man:sysctl.d(5) for explanation of the configuration file format, and
man:sysctl(8) and man:systemd-sysctl.service(8) for a description of when and
how this configuration is applied.

Use 'systemd-analyze cat-config sysctl.d' to display the effective config.
1 change: 1 addition & 0 deletions sysctl.d/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# SPDX-License-Identifier: LGPL-2.1-or-later

install_data(
'README',
'50-default.conf',
install_dir : sysctldir)

Expand Down
8 changes: 8 additions & 0 deletions sysusers.d/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Files in this directory contain configuration for systemd-sysusers, a program
to allocate system users and groups.

See man:sysusers.d(5) for explanation of the configuration file format, and
man:systemd-sysusers(8) for a description of when and how this configuration is
applied.

Use 'systemd-analyze cat-config sysusers.d' to display the effective config.
4 changes: 4 additions & 0 deletions sysusers.d/meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SPDX-License-Identifier: LGPL-2.1-or-later

if enable_sysusers
install_data('README', install_dir : sysusersdir)
endif

in_files = ['basic.conf']

foreach file : in_files
Expand Down
8 changes: 8 additions & 0 deletions tmpfiles.d/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Files in this directory contain configuration for systemd-tmpfiles, a program
to create, delete, and clean up volatile and temporary files and directories.

See man:tmpfiles.d(5) for explanation of the configuration file format, and
man:systemd-tmpfiles(8) for a description of when and how this configuration is
applied.

Use 'systemd-analyze cat-config tmpfiles.d' to display the effective config.
27 changes: 14 additions & 13 deletions tmpfiles.d/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@

enable_tmpfiles = conf.get('ENABLE_TMPFILES') == 1

tmpfiles = [['home.conf', ''],
['journal-nocow.conf', ''],
['systemd-nologin.conf', 'HAVE_PAM'],
['systemd-nspawn.conf', 'ENABLE_MACHINED'],
['systemd-tmp.conf', ''],
['portables.conf', 'ENABLE_PORTABLED'],
['systemd-pstore.conf', 'ENABLE_PSTORE'],
['tmp.conf', ''],
['x11.conf', ''],
['legacy.conf', 'HAVE_SYSV_COMPAT'],
]

foreach pair : tmpfiles
files = [['README', ''],
['home.conf', ''],
['journal-nocow.conf', ''],
['systemd-nologin.conf', 'HAVE_PAM'],
['systemd-nspawn.conf', 'ENABLE_MACHINED'],
['systemd-tmp.conf', ''],
['portables.conf', 'ENABLE_PORTABLED'],
['systemd-pstore.conf', 'ENABLE_PSTORE'],
['tmp.conf', ''],
['x11.conf', ''],
['legacy.conf', 'HAVE_SYSV_COMPAT'],
]

foreach pair : files
if not enable_tmpfiles
# do nothing
elif pair[1] == '' or conf.get(pair[1]) == 1
Expand Down

0 comments on commit d83e90c

Please sign in to comment.