diff options
author | Roy Marples <roy@marples.name> | 2007-07-10 19:09:41 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-07-10 19:09:41 +0000 |
commit | 05201b514b99d636af8067e442b2c6ab04e6d530 (patch) | |
tree | 9f41b80b1540b297ba38adc294cb700f92af4aa6 /init.d.Linux | |
parent | 445918685e559babf219cbfc775b9c582b52a2fc (diff) |
init scripts and their extra options can now have descriptions, #184327.
Diffstat (limited to 'init.d.Linux')
-rwxr-xr-x | init.d.Linux/clock | 3 | ||||
-rwxr-xr-x | init.d.Linux/consolefont | 2 | ||||
-rwxr-xr-x | init.d.Linux/keymaps | 2 | ||||
-rwxr-xr-x | init.d.Linux/modules | 2 | ||||
-rwxr-xr-x | init.d.Linux/numlock | 2 |
5 files changed, 11 insertions, 0 deletions
diff --git a/init.d.Linux/clock b/init.d.Linux/clock index a74bb289..144ecbcb 100755 --- a/init.d.Linux/clock +++ b/init.d.Linux/clock @@ -4,6 +4,9 @@ opts="save" +description="Sets the local clock to UTC or Local Time." +description_save="Saves the current time in the BIOS." + depend() { case "${CLOCK_ADJTIME}" in "") before *;; diff --git a/init.d.Linux/consolefont b/init.d.Linux/consolefont index dc568059..33d5676a 100755 --- a/init.d.Linux/consolefont +++ b/init.d.Linux/consolefont @@ -2,6 +2,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +description="Sets a font for the consoles." + depend() { need localmount need keymaps # sets up terminal encoding scheme diff --git a/init.d.Linux/keymaps b/init.d.Linux/keymaps index 1e0f28fa..17485124 100755 --- a/init.d.Linux/keymaps +++ b/init.d.Linux/keymaps @@ -2,6 +2,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +description="Applies a keymap for the consoles." + depend() { need localmount } diff --git a/init.d.Linux/modules b/init.d.Linux/modules index 090bd7c9..53ad52ae 100755 --- a/init.d.Linux/modules +++ b/init.d.Linux/modules @@ -2,6 +2,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +description="Loads a user defined list of kernel modules." + depend() { need checkroot use isapnp diff --git a/init.d.Linux/numlock b/init.d.Linux/numlock index 9597475a..3326e132 100755 --- a/init.d.Linux/numlock +++ b/init.d.Linux/numlock @@ -2,6 +2,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 +description="Turns numlock on for the consoles." + depend() { need localmount } |