diff options
author | Lennart Poettering <lennart@poettering.net> | 2021-03-11 17:49:18 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2021-03-26 12:21:37 +0100 |
commit | f6ab6199a2e8cbda64fe2574af572b8800da48bd (patch) | |
tree | 082d0184ad43318b554e0c0b69dd74d467ed2c39 /man/systemd-nspawn.xml | |
parent | firstboot: allow provisioning of firstboot params via creds too (diff) | |
download | systemd-f6ab6199a2e8cbda64fe2574af572b8800da48bd.tar.xz systemd-f6ab6199a2e8cbda64fe2574af572b8800da48bd.zip |
man: document in nspawn docs how to make use of the new firstboot/sysusers features
Diffstat (limited to 'man/systemd-nspawn.xml')
-rw-r--r-- | man/systemd-nspawn.xml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/man/systemd-nspawn.xml b/man/systemd-nspawn.xml index 6a27bab1e3..c4732507df 100644 --- a/man/systemd-nspawn.xml +++ b/man/systemd-nspawn.xml @@ -1487,7 +1487,31 @@ After=sys-subsystem-net-devices-ens1.device</programlisting> <para>In order to embed binary data into the credential data for <option>--set-credential=</option> use C-style escaping (i.e. <literal>\n</literal> to embed a newline, or <literal>\x00</literal> to embed a <constant>NUL</constant> byte. Note that the invoking shell might already apply unescaping - once, hence this might require double escaping!).</para></listitem> + once, hence this might require double escaping!).</para> + + <para>The + <citerefentry><refentrytitle>systemd-sysusers.service</refentrytitle><manvolnum>8</manvolnum></citerefentry> + and + <citerefentry><refentrytitle>systemd-firstboot</refentrytitle><manvolnum>1</manvolnum></citerefentry> + services read credentials configured this way for the purpose of configuring the container's root + user's password and shell, as well as system locale, keymap and timezone during the first boot + process of the container. This is particularly useful in combination with + <option>--volatile=yes</option> where every single boot appears as first boot, since configuration + applied to <filename>/etc/</filename> is lost on container reboot cycles. See the respective man + pages for details. Example:</para> + + <programlisting># systemd-nspawn -i image.raw \ + --volatile=yes \ + --set-credential=firstboot.locale:de_DE.UTF-8 \ + --set-credential=passwd.hashed-password.root:'$y$j9T$yAuRJu1o5HioZAGDYPU5d.$F64ni6J2y2nNQve90M/p0ZP0ECP/qqzipNyaY9fjGpC' \ + -b</programlisting> + + <para>The above command line will invoke the specified image file <filename>image.raw</filename> in + volatile mode, i.e with an empty <filename>/etc/</filename> and <filename>/var/</filename>, so that + the container's payload recognizes this as first boot condition, and will invoke + <filename>systemd-firstboot.service</filename>, which then read the two passed credentials to + configure the system's initial locale and root password.</para> + </listitem> </varlistentry> </variablelist> |