[modules] Minor documentation work on modules a-g

This commit is contained in:
Adriaan de Groot 2018-06-26 05:47:23 -04:00
parent c086d18a26
commit 52f09f7f46
6 changed files with 16 additions and 2 deletions

View file

@ -12,8 +12,10 @@ kernel: "/vmlinuz-linux"
img: "/initramfs-linux.img" img: "/initramfs-linux.img"
fallback: "/initramfs-linux-fallback.img" fallback: "/initramfs-linux-fallback.img"
timeout: "10" timeout: "10"
# Optionally set the menu entry name and kernel name to use in systemd-boot. # Optionally set the menu entry name and kernel name to use in systemd-boot.
# If not specified here, these settings will be taken from branding.desc. # If not specified here, these settings will be taken from branding.desc.
#
# bootloaderEntryName: "Generic GNU/Linux" # bootloaderEntryName: "Generic GNU/Linux"
# kernelLine: ", with Stable-Kernel" # kernelLine: ", with Stable-Kernel"
# fallbackKernelLine: ", with Stable-Kernel (fallback initramfs)" # fallbackKernelLine: ", with Stable-Kernel (fallback initramfs)"

View file

@ -1,3 +1,5 @@
# Configure one or more display managers (e.g. SDDM)
# with a "best effort" approach.
--- ---
#The DM module attempts to set up all the DMs found in this list, in that precise order. #The DM module attempts to set up all the DMs found in this list, in that precise order.
#It also sets up autologin, if the feature is enabled in globalstorage. #It also sets up autologin, if the feature is enabled in globalstorage.

View file

@ -1,3 +1,6 @@
# This is a dummy (example) module for C++ Jobs.
#
# The code is the documentation for the configuration file.
--- ---
syntax: "YAML map of anything" syntax: "YAML map of anything"
example: example:
@ -15,4 +18,4 @@ a_list_of_maps:
- "another element" - "another element"
- name: "another item" - name: "another item"
contents: contents:
- "not much" - "not much"

View file

@ -1,3 +1,6 @@
# This is a dummy (example) module for a Python Job Module.
#
# The code is the documentation for the configuration file.
--- ---
syntax: "YAML map of anything" syntax: "YAML map of anything"
example: example:
@ -15,4 +18,4 @@ a_list_of_maps:
- "another element" - "another element"
- name: "another item" - name: "another item"
contents: contents:
- "not much" - "not much"

View file

@ -1,3 +1,6 @@
# This is a dummy (example) module for PythonQt.
#
# The code is the documentation for the configuration file.
--- ---
syntax: "YAML map of anything" syntax: "YAML map of anything"
example: example:

View file

@ -2,6 +2,7 @@
# If set to true, always creates /etc/default/grub from scratch even if the file # If set to true, always creates /etc/default/grub from scratch even if the file
# already existed. If set to false, edits the existing file instead. # already existed. If set to false, edits the existing file instead.
overwrite: false overwrite: false
# Default entries to write to /etc/default/grub if it does not exist yet or if # Default entries to write to /etc/default/grub if it does not exist yet or if
# we are overwriting it. Note that in addition, GRUB_CMDLINE_LINUX_DEFAULT and # we are overwriting it. Note that in addition, GRUB_CMDLINE_LINUX_DEFAULT and
# GRUB_DISTRIBUTOR will always be written, with automatically detected values. # GRUB_DISTRIBUTOR will always be written, with automatically detected values.