Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-10 | importd: drop dkr support | Lennart Poettering | |
The current code is not compatible with current dkr protocols anyway, and dkr has a different focus ("microservices") than nspawn anyway ("whole machine containers"), hence drop support for it, we cannot reasonably keep this up to date, and it creates the impression we'd actually care for the microservices usecase. | |||
2015-11-24 | bash-completion: list valid signal names | Evgeny Vereshchagin | |
this is a follow-up for commit 18540892d18addc4dcb81 | |||
2015-11-24 | bash-completion: list only valid signal names | Zbigniew Jędrzejewski-Szmek | |
Fixup for #1999. | |||
2015-11-23 | bash-completion: nspawn: add completion for --kill-signal | Evgeny Vereshchagin | |
2015-11-15 | shell-completion: journalctl: add --sync | Marcos Mello | |
From 94b6551 | |||
2015-11-11 | execute: Add new PassEnvironment= directive | Filipe Brandenburger | |
This directive allows passing environment variables from the system manager to spawned services. Variables in the system manager can be set inside a container by passing `--set-env=...` options to systemd-spawn. Tested with an on-disk test.service unit. Tested using multiple variable names on a single line, with an empty setting to clear the current list of variables, with non-existing variables. Tested using `systemd-run -p PassEnvironment=VARNAME` to confirm it works with transient units. Confirmed that `systemctl show` will display the PassEnvironment settings. Checked that man pages are generated correctly. No regressions in `make check`. | |||
2015-11-11 | shell-completion: journalctl: add -S and -U options | Marcos Mello | |
Added by 66f5292 | |||
2015-11-10 | Remove snapshot unit type | Zbigniew Jędrzejewski-Szmek | |
Snapshots were never useful or used for anything. Many systemd developers that I spoke to at systemd.conf2015, didn't even know they existed, so it is fairly safe to assume that this type can be deleted without harm. The fundamental problem with snapshots is that the state of the system is dynamic, devices come and go, users log in and out, timers fire... and restoring all units to some state from the past would "undo" those changes, which isn't really possible. Tested by creating a snapshot, running the new binary, and checking that the transition did not cause errors, and the snapshot is gone, and snapshots cannot be created anymore. New systemctl says: Unknown operation snapshot. Old systemctl says: Failed to create snapshot: Support for snapshots has been removed. IgnoreOnSnaphost settings are warned about and ignored: Support for option IgnoreOnSnapshot= has been removed and it is ignored http://lists.freedesktop.org/archives/systemd-devel/2015-November/034872.html | |||
2015-11-04 | Merge pull request #1775 from fbuihuu/set-property-completion | Lennart Poettering | |
bash-completion: add minimal support fpr 'set-property' command | |||
2015-11-04 | bash-completion: add minimal support fpr 'set-property' command | Franck Bui | |
'set-property' was missing from the list of known command. Also a list of unit names will be proposed as next argument. However no support on property names is provided since it would require a hard coded list of them. | |||
2015-11-02 | Merge pull request #1690 from evverx/run-runtime-directory | Lennart Poettering | |
systemd-run can launch units with RuntimeDirectory | |||
2015-10-30 | shell-completion: systemctl: show completions for `user` in `global` mode | Evgeny Vereshchagin | |
2015-10-29 | shell-completion: hostnamectl: add the command set-location | Evgeny Vereshchagin | |
2015-10-27 | shell-completion: systemd-run: add the property RuntimeDirectory | Evgeny Vereshchagin | |
2015-10-26 | shell-completion: systemd-run: add the property ProtectHome | Evgeny Vereshchagin | |
2015-10-25 | zsh-completion: journalctl --identifier | Zbigniew Jędrzejewski-Szmek | |
Fixes #1549. | |||
2015-10-24 | shell-completion: systemd-run: add the property ProtectSystem | Evgeny Vereshchagin | |
2015-10-21 | shell-completion: systemd-run: add new property EnvironmentFile | Nicolas Cornu | |
2015-10-21 | Add zsh completion on systemd-run's properties | Nicolas Cornu | |
2015-10-20 | shell-completion: systemd-run: add new properties | Evgeny Vereshchagin | |
"ReadWriteDirectories", "ReadOnlyDirectories", "InaccessibleDirectories" | |||
2015-10-17 | shell-completion: systemd-run: add property OOMScoreAdjust | Evgeny Vereshchagin | |
2015-10-15 | shell-completion: systemd-run: add TimerSlackNSec property | Evgeny Vereshchagin | |
2015-10-14 | shell-completion: systemd-run: add SyslogFacility property | Evgeny Vereshchagin | |
2015-10-14 | shell-completion: systemd-run: add SyslogLevel property | Evgeny Vereshchagin | |
2015-10-09 | zsh: don't mention /etc/mtab | Lennart Poettering | |
The file is obsolete, use /proc/self/mounts instead. Also, yuck, the code is so awful... | |||
2015-10-09 | shell-completion: systemd-run: add new properties | Evgeny Vereshchagin | |
2015-10-09 | shell-completion: systemd-run: add new properties | Evgeny Vereshchagin | |
See: * 602b83559a7cfcd3eee05 * b9c50073fcc1460ca1ff3 | |||
2015-10-08 | shell-completion: add pseudo machine ".host" to shell completion | Lennart Poettering | |
2015-10-08 | shell-completion: add "machinectl shell" to bash completion logic | Lennart Poettering | |
2015-09-30 | Merge pull request #1419 from keszybz/shell-completion | Lennart Poettering | |
Shell completion tweaks | |||
2015-09-30 | shell-completion: journalctl: add --rotate | Evgeny Vereshchagin | |
2015-09-28 | bash-completion: remove one more sort and sub-shell | Zbigniew Jędrzejewski-Szmek | |
{} is preferred to (), because the first is just grouping, while the second invokes a separate shell. | |||
2015-09-28 | bash-completion: use builtins when generating list | Zbigniew Jędrzejewski-Szmek | |
2015-09-28 | bash-completion: use builtins when generating list | Zbigniew Jędrzejewski-Szmek | |
awk is an external program, and it is better to stick to shell built-ins. Also, even with external awk, sort -u is redundant, because the shell does this on its own. | |||
2015-09-28 | shell-completion: use systemctl --state=help | Zbigniew Jędrzejewski-Szmek | |
This way completion lists should stay up to date. Also use systemctl -t help to list types in zsh, as was already done in bash. | |||
2015-09-26 | shell-completion: nspawn: add missing values for --link-journal | Evgeny Vereshchagin | |
2015-09-25 | shell-completion: journalctl: add missing options | Evgeny Vereshchagin | |
2015-09-25 | shell-completion: journalctl: add missing fields | Evgeny Vereshchagin | |
2015-09-21 | shell-completion: cgtop bash completion: add -r,--raw,-k,-P,--order | Evgeny Vereshchagin | |
2015-09-21 | shell-completion: cgtop bash completion: -n,--iterations,-d,--delay require arg | Evgeny Vereshchagin | |
2015-09-21 | shell-completion: update systemd-cgtop bash completion: --recursive | Evgeny Vereshchagin | |
2015-09-21 | cgtop: add -M/--machine | Evgeny Vereshchagin | |
2015-09-07 | shell-completion: update systemd-analyze bash-completion | Evgeny Vereshchagin | |
* Change --no-man to --man (see dad29df) * --{from,to}-pattern require arg | |||
2015-09-04 | shell-completion: update systemctl bash completion | Evgeny Vereshchagin | |
Many new options have been added since the bash completion was last updated. | |||
2015-09-01 | run: enable interactive authorization | Evgeny Vereshchagin | |
2015-08-31 | shell-completion: bash: add systemd-path completion | Evgeny Vereshchagin | |
2015-08-28 | shell-completion: bash: add networkctl completion | Evgeny Vereshchagin | |
2015-08-28 | shell-completion: add `failed` state to --state compwords | Evgeny Vereshchagin | |
2015-08-27 | shell-completion: update systemd-run bash completion | Evgeny Vereshchagin | |
Many new options have been added since the bash completion was last updated. | |||
2015-08-18 | shell-completion: bash: make list-transfers and cancel-transfer STANDALONE | Seth Jennings | |
list-transfers and cancel-transfers don't take machine arguments. |