summaryrefslogtreecommitdiff
path: root/man/systemd-nspawn.xml
Commit message (Collapse)AuthorAge
* man: typo fixesThomas Hindoe Paaboel Andersen2012-10-26
| | | | | | | | | https://bugs.freedesktop.org/show_bug.cgi?id=55890 Fixed typos, serial comma, and removed "either" as there were more than two options. Also did an extra rename of "system-shutdown" to "systemd-shutdown" that was forgotten in commit 8bd3b8620c80d0f2383f2fb04315411fc8077ca1
* nspawn: use automatic cleanup and provide debug infoZbigniew Jędrzejewski-Szmek2012-10-02
| | | | The documentation for --link-journal is also reworded.
* trivial: fix typoZbigniew Jędrzejewski-Szmek2012-10-02
|
* nspawn: Fix minor typo in man pagePierre Schmitz2012-09-14
|
* nspawn: handle poweroff/reboot nicely in containersLennart Poettering2012-09-05
|
* nspawn: introduce new --link-journal= switch to link container journals into ↵Lennart Poettering2012-07-19
| | | | host
* man: add various links from man pages to appropriate wiki pagesLennart Poettering2012-06-28
|
* nspawn: introduce new --capabilities= flag and make use of it in the nspawn ↵Lennart Poettering2012-06-28
| | | | test case
* nspawn: add --read-only switchLennart Poettering2012-04-25
|
* man: rework nspawn man page to suggest yum --installroot instead of mockLennart Poettering2012-04-24
|
* nspawn: add --uuid= switch to allow setting the machine id for the containerLennart Poettering2012-04-22
|
* nspawn: add -b switch to automatically look for an init binaryLennart Poettering2012-04-22
|
* One can specify in which cgroup hierarchies a systemd-nspawn container will ↵Léo Gillot-Lamure2012-04-12
| | | | appear
* relicense to LGPLv2.1 (with exceptions)Lennart Poettering2012-04-12
| | | | | | | | | | | | | | We finally got the OK from all contributors with non-trivial commits to relicense systemd from GPL2+ to LGPL2.1+. Some udev bits continue to be GPL2+ for now, but we are looking into relicensing them too, to allow free copy/paste of all code within systemd. The bits that used to be MIT continue to be MIT. The big benefit of the relicensing is that closed source code may now link against libsystemd-login.so and friends.
* move /usr/bin/systemd to /usr/lib/systemd/systemdKay Sievers2012-02-08
|
* exec: optionally apply cgroup attributes to the cgroups we createLennart Poettering2011-08-20
|
* exec: introduce PrivateNetwork= process option to turn off network access to ↵Lennart Poettering2011-08-02
| | | | specific services
* man: nspawn fixesLennart Poettering2011-08-02
|
* nspawn: add new --no-net switch to turn off networking in the containerLennart Poettering2011-08-02
|
* nspawn: spawn shell under specified --userMichal Vyskocil2011-07-01
| | | | | | | | | Add -u/--user option, which changes the effective and real user and group id to the new value. The user must exists in the chroot, otherwise it will fail. Both username and user id are accepted. The user home is created as well. It also setup HOME, USER, LOGNAME and SHELL variables .
* man: Documentation spelling fixesVille Skyttä2011-06-20
|
* use /run instead of /dev/.runKay Sievers2011-03-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of the /dev/.run trick we have currently implemented, we decided to move the early-boot runtime dir to /run. An existing /var/run directory is bind-mounted to /run. If /var/run is already a symlink, no action is taken. An existing /var/lock directory is bind-mounted to /run/lock. If /var/lock is already a symlink, no action is taken. To implement the directory vs. symlink logic, we have a: ConditionPathIsDirectory= now, which is used in the mount units. Skipped mount unit in case of symlink: $ systemctl status var-run.mount var-run.mount - Runtime Directory Loaded: loaded (/lib/systemd/system/var-run.mount) Active: inactive (dead) start condition failed at Fri, 25 Mar 2011 04:51:41 +0100; 6min ago Where: /var/run What: /run CGroup: name=systemd:/system/var-run.mount The systemd rpm needs to make sure to add something like: %pre mkdir -p -m0755 /run >/dev/null 2>&1 || : or it needs to be added to filesystem.rpm. Udev -git already uses /run if that exists, and is writable at bootup. Otherwise it falls back to the current /dev/.udev. Dracut and plymouth need to be adopted to switch from /dev/.run to run too. Cheers, Kay
* man: document systemd-nspawnLennart Poettering2011-03-15