summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)Author
2014-07-03networkd: Introduce tun/tap deviceSusant Sahani
This patch introduces TUN/TAP device creation support to networkd. Example conf to create a tap device: file: tap.netdev ------------------ [NetDev] Name=tap-test Kind=tap [Tap] OneQueue=true MultiQueue=true PacketInfo=true User=sus Group=sus ------------------ Test: 1. output of ip link tap-test: tap pi one_queue UNKNOWN_FLAGS:900 user 1000 group 1000 id: uid=1000(sus) gid=10(wheel) groups=10(wheel),1000(sus) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 Modifications: Added: 1. file networkd-tuntap.c 3. netdev kind NETDEV_KIND_TUN and NETDEV_KIND_TAP 2. Tun and Tap Sections and config params to parse conf and gperf conf parameters [tomegun: tweak the 'kind' checking for received ifindex]
2014-07-03man: /usr/bin may contain binaries in any compatible arch, not just the ↵Lennart Poettering
primary one
2014-07-03man: fix links to systemd-efi-boot-generator(8)Lennart Poettering
2014-07-02path: add new "systemd-path" utility for querying paths described in ↵Lennart Poettering
file-hierarchy(7) This new tool is based on "sd-path", a new (so far unexported) API for libsystemd, that can hopefully grow into a workable API covering /opt and more one day.
2014-07-01networkd: netdev - add dummy supportTom Gundersen
2014-07-01networkd: send hostname to dhcp serverEugene Yakubovich
Send hostname (option 12) in DISCOVER and REQUEST messages so the DHCP server could use it to register with dynamic DNS and such. To opt-out of this behaviour set SendHostname to false in [DHCP] section of .network file [tomegun: rebased, made sure a failing set_hostname is a noop and moved config from DHCPv4 to DHCP]
2014-07-01man: bring systemd.network(5) up-to-dateTom Gundersen
Based on diff by 'poma'.
2014-07-01man: bring systemd.netdev(5) up-to-dateTom Gundersen
Based on a diff by the mysterious 'poma'.
2014-07-01typo fixesThomas Hindoe Paaboel Andersen
2014-07-01man: file-hierarchy - emphasize /usr/lib/$arch-id instead of $libdirKay Sievers
2014-07-01man/sd_journal_get_data: fix variable naming in exampleChristian Hesse
2014-07-01man/sd_journal_next: fix argument in exampleChristian Hesse
The example does not compile, it fails with: error: passing argument 3 of ‘sd_journal_get_data’ from incompatible pointer type Cast to (const void **) to avoid this.
2014-07-01man: document directories in $HOME, too, in file-hierarchy(7)Lennart Poettering
2014-07-01man: document ConditionNeedsUpdate=Lennart Poettering
2014-07-01man: extend a bit what to expect from the various places apps can store dataLennart Poettering
2014-07-01man: add sections about file node types and write access to file-hierarchy(7)Lennart Poettering
2014-06-30man: mention x-initrd.mount option in fstab options listZbigniew Jędrzejewski-Szmek
2014-06-30man: mention that x-systemd.device-timeout is only for fstabZbigniew Jędrzejewski-Szmek
Reformat fstab options description. Now they are easier to read and show up in systemd.directives(7). Use a single sublist for both /etc/fstab and /etc/crypttab options. Many of them can be used in both places. crypttab(5) is updated to use the same docbook elements, so formatting is uniform.
2014-06-30man: beef up systemd-fsck descriptionZbigniew Jędrzejewski-Szmek
2014-07-01man: reference $TMPDIR, not $TMP in file-hierarchy(7)Lennart Poettering
This what environ(7) and POSIX define, so that's what we should reference.
2014-07-01man: document systemd-update-done.serviceLennart Poettering
2014-07-01man: file-hierarchy - minor fixesTom Gundersen
Leave non-specified top-level dirs out of the spec, and minor cleanups.
2014-06-30man: document how to query $libdir for the primary architecture using pkg-configLennart Poettering
2014-06-30man: file-hierarchy - typo fixesThomas Hindoe Paaboel Andersen
2014-06-30man: deemphesize Fedora-specific "lib64", only mention the more generic $libdirLennart Poettering
2014-06-30man: daemon - typo fixThomas Hindoe Paaboel Andersen
2014-06-30man: a couple of additions to file-hierarchy(7)Lennart Poettering
2014-06-30man: drop references to manual StandardError=syslog from daemon(7), we do ↵Lennart Poettering
this implicitly since ages
2014-06-30man: add a minimized, modernized description of the file system hierarchy ↵Lennart Poettering
systemd suggests
2014-06-29man: document the sysusers toolLennart Poettering
2014-06-29Add support for DHCP static route optionsEugene Yakubovich
This adds support for DHCP options 33 and 121: Static Route and Classless Static Route. To enable this feature, set UseRoutes=true in .network file. Returned routes are added to the routing table.
2014-06-29networkd: merge DHCPv4 and DHCPv6 configTom Gundersen
If there are v4 or v6 specific options we can keep those in separate sections, but for the common options, we will use only one. Moreovere only use DHCP=[yes/both|no/none|v4|v6] to enable or disable the clients.
2014-06-28doc: typographical improvements and choice of wordsJan Engelhardt
2014-06-28doc: grammatical correctionsJan Engelhardt
2014-06-27man: split systemd.network(5) and related into various sections for better ↵Lennart Poettering
readability
2014-06-27man: document automatic networkd IP range allocationLennart Poettering
2014-06-27man: fix sd_watchdog_enabled() prototype in man pageLennart Poettering
https://bugs.freedesktop.org/show_bug.cgi?id=80597
2014-06-27coredump: replace Compression= setting by simpler Compress= boolean settingLennart Poettering
Let's move things closer to journald's configuration settings, which knows Compress= already, as a boolean. This makes things more uniform, but also gives us more freedom to possibly swap out the used compression algorithm one day.
2014-06-27coredump: don't expose the compression level as configuration optionLennart Poettering
This sounds overly low-level and implementation-detaily. Let's just use the default level XZ suggests. This gives us more room to possibly swap out the compression algorithm used, as the compression level range will not leak into user configuration.
2014-06-27coredump: add simple coredump vacuumingLennart Poettering
When disk space taken up by coredumps grows beyond a configured limit start removing the oldest coredump of the user with the most coredumps, until we get below the limit again.
2014-06-26man: add coredump.conf(5)Zbigniew Jędrzejewski-Szmek
2014-06-25systemctl: add new "is-system-running" command to check whether system is ↵Lennart Poettering
fully up https://bugs.freedesktop.org/show_bug.cgi?id=66926
2014-06-23Revert "Add systemd-coredumpctl as an alias for coredumpctl"Zbigniew Jędrzejewski-Szmek
This reverts the documentation part of commit dfdd0e0730385eef08f019863fd41168b05b6ab0.
2014-06-23man: fix path in crypttab(5)Zbigniew Jędrzejewski-Szmek
https://bugs.freedesktop.org/show_bug.cgi?id=75816
2014-06-22Add systemd-coredumpctl as an alias for coredumpctlZbigniew Jędrzejewski-Szmek
Should make the transition easier for exisiting users.
2014-06-22man: untabify systemd-resolved.service.xmlZbigniew Jędrzejewski-Szmek
2014-06-22fix systemd-resolved reference in man pageJonathan Boulle
Guess this was missed in the copy-paste :-)
2014-06-20tmpfiles: copy/link /usr/share/factory/ files when the source argument is ↵Kay Sievers
omitted
2014-06-20debug-generator: add new kernel cmdline option systemd.wants= to add units ↵Lennart Poettering
to the initial transaction
2014-06-19man: also describe an udev rule for bridge sysctlZbigniew Jędrzejewski-Szmek