diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-05-24 18:47:53 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-05-24 18:47:53 -0500 |
commit | b9980223dd469f24359d969ab24c3694507897e5 (patch) | |
tree | db70303a11b7971a7046ad2b04515a07647eca8e | |
parent | d89395c9666ac90dd7c8b46c932364307788932c (diff) | |
download | horizon-b9980223dd469f24359d969ab24c3694507897e5.tar.gz horizon-b9980223dd469f24359d969ab24c3694507897e5.tar.bz2 horizon-b9980223dd469f24359d969ab24c3694507897e5.tar.xz horizon-b9980223dd469f24359d969ab24c3694507897e5.zip |
devel: script: Add definition of svcenable key
-rw-r--r-- | devel/script/2_keys.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/devel/script/2_keys.xml b/devel/script/2_keys.xml index 309f124..c37ecc1 100644 --- a/devel/script/2_keys.xml +++ b/devel/script/2_keys.xml @@ -548,6 +548,42 @@ repository https://mirrors.servercentral.com/adelie/1.0/user </para> </formalpara> </section> + <section id="svcenable"> + <title><literal>svcenable</literal></title> + <formalpara id="svcenable.name"> + <title>Name</title> + <para><literal>svcenable</literal></para> + </formalpara> + <formalpara id="svcenable.purpose"> + <title>Purpose</title> + <para>The <literal>svcenable</literal> key specifies a service to start up on system boot.</para> + </formalpara> + <formalpara id="svcenable.format"> + <title>Format</title> + <para>The <literal>svcenable</literal> key is a string value which contains the name of a OpenRC service. The service file must be installed as part of a <literal>pkginstall</literal> key. <literal>svcenable</literal> may appear any number of times in a HorizonScript.</para> + </formalpara> + <formalpara id="svcenable.examples"> + <title>Examples</title> + <para> + <example> + <title>The <literal>svcenable</literal> Key — Enable SSH on Boot</title> + <programlisting> +svcenable sshd + </programlisting> + <para>This configures the target computer to start the SSH daemon during system boot.</para> + </example> + <example> + <title>The <literal>svcenable</literal> Key — Typical Desktop</title> + <programlisting> +svcenable dbus +svcenable consolekit +svcenable sddm + </programlisting> + <para>This configures the target computer to start up a display manager and its required daemons during system boot, enabling graphical logins.</para> + </example> + </para> + </formalpara> + </section> <section id="signingkey"> <title><literal>signingkey</literal></title> <formalpara id="signingkey.name"> |