</varlistentry>
<varlistentry>
- <term><option>--make-machine-id-directory=yes|no|auto</option></term>
+ <term><option>--make-machine-id-directory=yes|no</option></term>
<listitem><para>Control creation and deletion of the top-level machine ID directory on the file
system containing boot loader entries (i.e. beneath the file system returned by the
<option>--print-boot-path</option> option, see above) during <option>install</option> and
- <option>remove</option>, respectively. <literal>auto</literal> is equivalent to
- <literal>yes</literal> if <filename>/etc/machine-id</filename> resides on a filesystem other than
- tmpfs and <literal>no</literal> otherwise (in the latter case the machine ID is likely transient and
- hence should not be used persistently in the ESP). Defaults to <literal>auto</literal>. See
+ <option>remove</option>, respectively. Defaults to <literal>no</literal>. See
<citerefentry><refentrytitle>machine-id</refentrytitle><manvolnum>5</manvolnum></citerefentry> for
details about the machine ID concept and file.</para>
static bool arg_touch_variables = true;
static PagerFlags arg_pager_flags = 0;
static bool arg_graceful = false;
-static int arg_make_machine_id_directory = -1;
+static int arg_make_machine_id_directory = 0;
static sd_id128_t arg_machine_id = SD_ID128_NULL;
static char *arg_install_layout = NULL;
break;
case ARG_MAKE_MACHINE_ID_DIRECTORY:
- if (streq(optarg, "auto"))
- arg_make_machine_id_directory = -1; /* default */
+ if (streq(optarg, "auto")) /* retained for backwards compatibility */
+ arg_make_machine_id_directory = -1; /* yes if machine-id is permanent */
else {
r = parse_boolean_argument("--make-machine-id-directory=", optarg, &b);
if (r < 0)