summaryrefslogtreecommitdiffstats
path: root/src/fuzz (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-08-17sysctl: use ordered_hashmap_ensure_put()Yu Watanabe1-4/+1
2022-08-17run: simplificationZbigniew Jędrzejewski-Szmek1-5/+1
2022-08-17manager: allow assignment of properties on target/swap/device unitsZbigniew Jędrzejewski-Szmek2-9/+6
E.g. Documentation or Markers could apply to any unit type. This already worked partially, because a direct dbus call could be made: After rebuild with the patch, but before the manager has been restarted: $ build/systemctl --user set-property dev-zram0.swap Markers=+needs-restart $ build/systemctl --user show -p Markers dev-zram0.swap Markers=needs-restart I noticed that that the rpm unit restart helper was throwing errors for target units. We should just let the Markers be set for those too, even if it doesn't do anything in the end. This way we don't need to special-case by unit type.
2022-08-16test-network: add tests for MTUBytes= for bridge master and portsYu Watanabe4-11/+51
Prompted by #24311.
2022-08-16man: Correct information on sysext maskingKai Lueke2-3/+16
While I had tested that a symlink to /dev/null works to "mask" a sysext I must have gotten something wrong and thus the instructions in 519c2f0d6b343d140f7e08e3eb0f46708c023b4a don't work. What works, at least at the moment, is to instead have an empty directory with the extension name under /etc/extensions/. Correct the info in the man page and add a test for it.