summaryrefslogtreecommitdiff
path: root/man
Commit message (Collapse)AuthorAge
...
* man: netdev - add some minimal explanation to the different netdev kinds and ↵Tom Gundersen2015-01-28
| | | | | | modes Would be awesome to expand on this a lot, as there is currently no decent documentation for most of these things.
* networkd: tunnel - call tunnel modes ipip6, not ip4ipv6 to match ip(8)Tom Gundersen2015-01-28
|
* tmpfiles: fix help textZbigniew Jędrzejewski-Szmek2015-01-27
| | | | | The help text, apart from being too long, did not describe what the options really do.
* man: document the new Ctrl-Alt-Del magicLennart Poettering2015-01-28
|
* man: systemd.service(5): add some simple examplesChristian Seiler2015-01-27
| | | | | Add a couple of exampels, at least one for each service type that include some explanations and pointers to various relevant options.
* man: systemd.unit(5): add examples for common tasksChristian Seiler2015-01-27
| | | | | Add examples for (a) how to allow units to be enabled and (b) overriding vendor settings to the man page.
* man: mention that 99-default.link is shipped by default, and users hence ↵Lennart Poettering2015-01-27
| | | | need to install a lexically earlier .link file for it to be honoured
* man: document that ProtectSystem= also covers /bootLennart Poettering2015-01-27
|
* man: fix minor type in man pageLennart Poettering2015-01-26
|
* treewide: fix multiple typosTorstein Husebø2015-01-26
|
* man: minor typo fixLennart Poettering2015-01-26
| | | | Spotted by John Paul Adrian Glaubitz
* tmpfiles: do not bump access times of directories we are cleaning upZbigniew Jędrzejewski-Szmek2015-01-24
| | | | | | | | | | | | | Both plain opendir() and glob() will bump access time. Privileged option O_NOATIME can be used to prevent the access time from being updated. We already used it for subdirectories of the directories which we were cleaning up. But for the directories specified directly in the config files, we wouldn't do that. This means that, paradoxically, our own temporary directories for PrivateTmp would stay around forever, as long as one let systemd-tmpfiles-clean.service run regularly, because they had their own glob patterns specified. https://bugzilla.redhat.com/show_bug.cgi?id=1183684
* man: bring tmpfiles.d(5) in line with codeZbigniew Jędrzejewski-Szmek2015-01-23
|
* man: fix typosRonny Chevalier2015-01-22
|
* networkd: Introduce ip6gre and ip6gretapSusant Sahani2015-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch introduces ipv6 gre and gretap. test: ip6gre.netdev: [NetDev] Name=ip6gretap Kind=ip6gretap [Tunnel] Local=2a00:ffde:4567:edde::4987 Remote=2001:473:fece:cafe::5179 ip6gre.network: [Match] Name=eno16777736 [Network] Tunnel=ip6gretap ip link 6: ip6gre@eno16777736: <POINTOPOINT,NOARP> mtu 1448 qdisc noop state DOWN mode DEFAULT group default link/gre6 2a:00:ff:de:45:67:ed:de:00:00:00:00:00:00:49:87 peer 20:01:04:73:fe:ce:ca:fe:00:00:00:00:00:00:51:79
* networkd: Introduce IP6 tunnelSusant Sahani2015-01-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | This patch enables networkd to create IP6 tunnels example conf: ipip6.netdev: [NetDev] Name=ipip6-tunnel Kind=ip6tnl [Tunnel] Mode=ip4ipv6 Local=2a00:ffde:4567:edde::4987 Remote=2001:473:fece:cafe::5179 ipip6.network [Match] Name=wlan0 [Network] Tunnel=ipip6-tunnel 23: ipip6-tunnel@wlan0: <POINTOPOINT,NOARP> mtu 1452 qdisc noop state DOWN mode DEFAULT group default link/tunnel6 2a00:ffde:4567:edde::4987 peer 2001:473:fece:cafe::5179
* networkd: introduce gretapSusant Sahani2015-01-22
| | | | This patch introdeces gretap to networkd
* man: document new download magicLennart Poettering2015-01-22
|
* Use eurlatgr as the example console fontMarko Myllynen2015-01-22
| | | | | | See https://fedoraproject.org/wiki/Changes/NewDefaultConsoleFont https://bugzilla.redhat.com/show_bug.cgi?id=1182529
* shared/acl-util: add mask only when needed, always add base ACLsZbigniew Jędrzejewski-Szmek2015-01-22
| | | | | | | | For ACLs to be valid, a set of entries for user, group, and other must be always present. Always add those entries. While at it, only add the mask ACL if it is actually required, i.e. when at least on ACL for non-owner group or user exists.
* tmpfiles: implement augmenting of existing ACLsZbigniew Jędrzejewski-Szmek2015-01-22
| | | | This is much more useful in practice (equivalent to setfacl -m).
* tmpfiles: make t and a globby, add their recursive versions T and AZbigniew Jędrzejewski-Szmek2015-01-22
| | | | | | | | | | | | | | For types which adapt existing files it is generally more useful to accept globs. In analogy to z and Z, add recursive versions using uppercase letters. Technically, making a accept globs is backwards incompatible, but in practice it probably isn't yet widely used and we can assume that most people don't create files with wildcards in names. Functions which are used as callbacks, but not directly on items, are renamed not to have "item_" prefix.
* tmpfiles: add 'a' type to set ACLsZbigniew Jędrzejewski-Szmek2015-01-22
|
* tmpfiles: attach an array of items to each pathZbigniew Jędrzejewski-Szmek2015-01-22
| | | | | | | | | | | | | | | | The data structure used by tmpfiles is changed: instead of hashmaps mapping {path → Item*} we now have hashmaps containing {path -> ItemArray}, where ItemArray contains a pointer to an array of Items. For current code it doesn't matter much, but when we add new types it is easier to simply add a new Item for a given path, then to coalesce multiple lines into one Item. In the future, this change will also make it possible to remember the file and line where each Item originates, and use that in reporting errors. Currently this is not possible, since each Item can be created from multiple lines.
* man: add networkctl(1)Zbigniew Jędrzejewski-Szmek2015-01-19
|
* man: use one description of --no-legendZbigniew Jędrzejewski-Szmek2015-01-19
|
* nspawn: add ipvlan supportTom Gundersen2015-01-20
|
* networkd: netdev - add ipvlan supportTom Gundersen2015-01-19
|
* systemctl: fix import-environment description, trim help to 80 colsZbigniew Jędrzejewski-Szmek2015-01-19
|
* man: reindent tmpfiles.d(5)Zbigniew Jędrzejewski-Szmek2015-01-18
| | | | Reindent to 2 spaces, use more markup.
* man: mention "wheel" and "adm" in journalctl(1)Zbigniew Jędrzejewski-Szmek2015-01-18
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=70866
* man: reindent journalctl(1)Zbigniew Jędrzejewski-Szmek2015-01-18
| | | | Reindent with two spaces, use non-breaking spaces, add <literal> tags.
* os-release: Add PRIVACY_POLICY_URLBastien Nocera2015-01-15
|
* nspawn,machined: change default container image location from ↵Lennart Poettering2015-01-15
| | | | | | | | | | | /var/lib/container to /var/lib/machines Given that this is also the place to store raw disk images which are very much bootable with qemu/kvm it sounds like a misnomer to call the directory "container". Hence, let's change this sooner rather than later, and use the generic name, in particular since we otherwise try to use the generic "machine" preferably over the more specific "container" or "vm".
* man: remove "nofail" from systemd.swap(5)Zbigniew Jędrzejewski-Szmek2015-01-13
| | | | As suggested by Marcos Felipe Rasia de Mello <marcosfrm@gmail.com>.
* networkd: make IP forwarding for IPv4 and IPv6 individually configurableLennart Poettering2015-01-13
|
* networkd: introduce an AddressFamilyBoolean enum typeLennart Poettering2015-01-13
| | | | | | This introduces am AddressFamilyBoolean type that works more or less like a booleaan, but can optionally turn on/off things for ipv4 and ipv6 independently. THis also ports the DHCP field over to it.
* nspawn: add "-n" shortcut for "--network-veth"Lennart Poettering2015-01-13
| | | | | | | Now that networkd's IP masquerading support means that running containers with "--network-veth" will provide network access out of the box for the container, let's add a shortcut "-n" for it, to make it easily accessible.
* doc: add cross-references between systemd.{link, netdev, network}Jan Engelhardt2015-01-13
|
* nspawn: add new option "--port=" for exposing container ports on the local hostLennart Poettering2015-01-13
| | | | This exposes an IP port on the container as local port using DNAT.
* networkd: add minimal IP forwarding and masquerading support to .network filesLennart Poettering2015-01-13
| | | | | | | | | | | | | | This adds two new settings to networkd's .network files: IPForwarding=yes and IPMasquerade=yes. The former controls the "forwarding" sysctl setting of the interface, thus controlling whether IP forwarding shall be enabled on the specific interface. The latter controls whether a firewall rule shall be installed that exposes traffic coming from the interface as coming from the local host to all other interfaces. This also enables both options by default for container network interfaces, thus making "systemd-nspawn --network-veth" have network connectivity out of the box.
* loginctl: make session/user arguments optional for a number commands, and ↵Lennart Poettering2015-01-09
| | | | | | | | imply calling session/user instead This turns "lock-session", "activate", "unlock-session", "enable-linger", "disable-linger" into commands that take no argument, optionally in which case the callers session/user is implied.
* man: document that 'loginctl activate' only takes a single argumentLennart Poettering2015-01-09
|
* loginctl: make "loginctl session-status" without session ID show the ↵Lennart Poettering2015-01-09
| | | | | | caller's session status Similar for user-status and seat-status.
* man: remove references to systemadm from systemctl man pageLennart Poettering2015-01-08
| | | | The tool is badly maintained and we shouldn't refence such old cruft.
* man: bring machinectl man page up-to-dateLennart Poettering2015-01-08
|
* man: bring systemctl man page and --help text into the same orderLennart Poettering2015-01-08
|
* man: add the same command sections to the man page as the --help text showsLennart Poettering2015-01-08
|
* machinectl: given that machinectl invokes a number of polkit enabled ↵Lennart Poettering2015-01-08
| | | | methods, start the polkit agent on terminals
* machinectl: show most recent log output in "machinectl status", tooLennart Poettering2015-01-08
|