From a7c64469b68f442bcaaf771ac14a88c1b2a08b29 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 21 Nov 2010 20:41:00 +0100 Subject: [PATCH] man: document /etc/modules-load.d/ --- Makefile.am | 3 +- TODO | 2 - man/modules-load.d.xml | 95 ++++++++++++++++++++++++++++++++++++++++++ man/tmpfiles.d.xml | 22 ++++++---- 4 files changed, 110 insertions(+), 12 deletions(-) create mode 100644 man/modules-load.d.xml diff --git a/Makefile.am b/Makefile.am index 35bbc3a64..4330db06d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -509,7 +509,8 @@ MANPAGES = \ man/hostname.5 \ man/vconsole.conf.5 \ man/locale.conf.5 \ - man/os-release.5 + man/os-release.5 \ + man/modules-load.d.5 MANPAGES_ALIAS = \ man/reboot.8 \ diff --git a/TODO b/TODO index 7de0ebb70..b083529ba 100644 --- a/TODO +++ b/TODO @@ -53,8 +53,6 @@ * readahead: btrfs/LVM SSD detection -* man pages for: modules-load.d, /etc/os-release - * when processes remain in a service even though the start command failed enter active * add seperate man page for [Install] settings diff --git a/man/modules-load.d.xml b/man/modules-load.d.xml new file mode 100644 index 000000000..47acc08e6 --- /dev/null +++ b/man/modules-load.d.xml @@ -0,0 +1,95 @@ + + + + + + + + modules-load.d + systemd + + + + Developer + Lennart + Poettering + lennart@poettering.net + + + + + + modules-load.d + 5 + + + + modules-load.d + Configure kernel modules to load at boot + + + + /etc/modules-load.d/*.conf + + + + Description + + systemd uses + /etc/modules-load.d/ to configure + kernel modules to load during boot in a static list. + Each configuration file is named in the style of + /etc/modules-load.d/<program>.conf. Note + that it is usally a better idea to use the automatic + module loading by PCI ID, by DMI ID or similar + triggers configured in the kernel modules themselves + instead of relying on static configuration like + this. + + + + Configuration Format + + The configuration files should simply contain a + list of kernel modul names to load, seperated by + newlines. Empty lines and lines whose first + non-whitespace character is # or ; are ignored. + + + + + Example + + /etc/modules-load.d/uinput.conf example: + + # Load uinput.ko at boot +uinput + + + + + See Also + + systemd1, + modprobe8 + + + + diff --git a/man/tmpfiles.d.xml b/man/tmpfiles.d.xml index 7bdb6de0b..1df4a043e 100644 --- a/man/tmpfiles.d.xml +++ b/man/tmpfiles.d.xml @@ -42,9 +42,13 @@ tmpfiles.d - configuration for creation, deletion and cleaning of tmpfiles + Configuration for creation, deletion and cleaning of temporary and volatile files + + /etc/tmpfiles.d/*.conf + + Description @@ -55,7 +59,7 @@ /var/run or /tmp). Each configuration file is named in the style of - /etc/tmpfiles.d/<program>.conf + /etc/tmpfiles.d/<program>.conf. @@ -73,37 +77,37 @@ d /var/run/user 0755 root root 10d f - create a file if it doesn't exist yet + Create a file if it doesn't exist yet F - create or truncate a file + Create or truncate a file d - create a directory if it doesn't exist yet + Create a directory if it doesn't exist yet D - create or empty a directory + Create or empty a directory x - ignore a path + Ignore a path r - remove a path + Remove a path R - recursively remove a path + Recursively remove a path -- 2.30.2