<para>
Run the container as a daemon. As the container has no
more tty, if an error occurs nothing will be displayed,
- the log file can be used to check the error.
+ the log file can be used to check the error. (This is the default mode)
</para>
</listitem>
</varlistentry>
<para>
Run the container in the foreground. In this mode, the container
console will be attached to the current tty and signals will be routed
- directly to the container. (This is the default mode)
+ directly to the container.
</para>
</listitem>
</varlistentry>
\n\
Options :\n\
-n, --name=NAME NAME for name of the container\n\
- -d, --daemon Daemonize the container\n\
- -F, --foreground Start with the current tty attached to /dev/console (default)\n\
+ -d, --daemon Daemonize the container (default)\n\
+ -F, --foreground Start with the current tty attached to /dev/console\n\
-p, --pidfile=FILE Create a file with the process id\n\
-f, --rcfile=FILE Load configuration file FILE\n\
-c, --console=FILE Use specified FILE for the container console\n\
.options = my_longopts,
.parser = my_parser,
.checker = NULL,
- .daemonize = 0,
+ .daemonize = 1,
.pidfile = NULL,
};