Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-30 | nspawn: only pass in slice setting if it is set | Lennart Poettering | |
2013-10-30 | util: when we use path_strv_canonicalize() we must allocate the strv from ↵ | Lennart Poettering | |
the heap | |||
2013-10-30 | run: add support for executing commands remotely via SSH or in a container | Lennart Poettering | |
Also, unify the transport logic a bit, since we reuse the same scheme in many of our client tools. | |||
2013-10-30 | general: various cleanups | Lennart Poettering | |
2013-10-30 | timedated: support --enable-split-usr | Dave Reisner | |
2013-10-30 | link-config: support --enable-split-usr | Dave Reisner | |
2013-10-30 | udev: rules - move parsing error to log_error() | Kay Sievers | |
2013-10-30 | udev: config-link - one less log_info | Tom Gundersen | |
2013-10-30 | machinectl: we don't really just show information, we execute operations | Lennart Poettering | |
2013-10-30 | bus: add API call to create bus connection to the system bus of local containers | Lennart Poettering | |
Also, add support for this to machinectl, so that we can enumerate the machines that run inside a container. We must go deeper! | |||
2013-10-30 | bus: move ssh support into public API of libsystem-bus | Lennart Poettering | |
2013-10-30 | libudev: default log_priority to INFO | Tom Gundersen | |
This brings it in sync with the default config file. | |||
2013-10-30 | udev: link-config - less verbose logging | Tom Gundersen | |
Also reinstate print to kmsg when renaming netif. | |||
2013-10-30 | udev: link-config - let udevd set the ifname | Tom Gundersen | |
2013-10-30 | machinectl: privileged option is gone | Marc-Antoine Perennou | |
2013-10-30 | udev: ata_id: log faling ioctls as "debug" | Kay Sievers | |
2013-10-30 | machinectl: port to sd-bus | Tom Gundersen | |
2013-10-30 | build-sys: remove default CFLAGS assignment | Kay Sievers | |
2013-10-30 | bus: fix build | Lennart Poettering | |
2013-10-30 | git: indicate that tabs are never OK in the systemd tree | Lennart Poettering | |
2013-10-30 | machined: port over to libsystemd-bus | Lennart Poettering | |
2013-10-30 | update TODO | Lennart Poettering | |
2013-10-30 | bus: make sure we can match well-known names | Lennart Poettering | |
2013-10-30 | autogen: use -O0 for "autogen.sh c" after all | Lennart Poettering | |
-Og actually breaks gdb still, so let's stick to -O0 for now, but introduce "autogen.sh g" for those who don't need gdb. | |||
2013-10-30 | bus: it is OK to have signals with multiple parameters | Lennart Poettering | |
2013-10-30 | bus: don't fail if GetAll() is used to get properties of the built-in interfaces | Lennart Poettering | |
2013-10-30 | bus: make bus message dump output a bit smaller | Lennart Poettering | |
2013-10-30 | bus: don't include the introspected object in list of subobjects | Lennart Poettering | |
2013-10-30 | udev: do not allow to change the DEVPATH of a device | Kay Sievers | |
2013-10-29 | udev: link-config - reset ctx on exit | Tom Gundersen | |
2013-10-29 | rtnl-util: add missing files | Tom Gundersen | |
2013-10-29 | udev-event: use rtnl to set ifname | Tom Gundersen | |
2013-10-29 | rtnl: move set_link_properties to rtnl-utils | Tom Gundersen | |
2013-10-29 | rtnl: fix sockaddr confusion | Tom Gundersen | |
2013-10-29 | strv: introduce new STRV_MAKE and STRV_MAKE_EMPTY macros to create string ↵ | Lennart Poettering | |
arrays nicely on the fly | |||
2013-10-29 | bus: add extra validity checks | Lennart Poettering | |
2013-10-29 | strv: introduce new strv_from_stdarg_alloca() macro to generate a string ↵ | Lennart Poettering | |
array from stdarg function parameters This allows us to turn lists of strings passed in easily into string arrays without having to allocate memory. | |||
2013-10-29 | rc-local: use access(X_OK) to check if files are executable | Lennart Poettering | |
... and other modernizations. | |||
2013-10-29 | timedate: handle more nicely if something or somebody keeps open /dev/rtc ↵ | Lennart Poettering | |
and thus blocks out everybody else chrony is appears to keep the RTC open continuously these days which is a bad idea, and /dev/rtc is a single-user device, which is a bad idea too. Together both bad ideas mean that nobody else can access the RTC anymore. That's something to fix, but in the meantime we should handle this more gracefully. | |||
2013-10-29 | bus: add a macro to simplify reading of UUIDs | Lennart Poettering | |
2013-10-29 | bus: add new sd_bus_message_verify_type() and sd_bus_message_copy() API calls | Lennart Poettering | |
2013-10-29 | rtnl: cleanup socket_read_message | Tom Gundersen | |
2013-10-29 | udev: link-config - split connection to sockets from loading of configs | Tom Gundersen | |
We want to load the config in _init, but not connect to the sockets before we are forked. | |||
2013-10-29 | rtnl: complain if used after fork | Tom Gundersen | |
2013-10-29 | rtnl: introduce default timeout | Tom Gundersen | |
We set it to 10 secs (as we are only communicating with the kernel, it seems we should be able to bail out sooner than sd-bus, which uses 25). When passing timout 0, the default is used, use this in link-config. | |||
2013-10-29 | udev: link-config - use safe_atou instead of strtoul | Tom Gundersen | |
2013-10-29 | udev: link-config - use zero instead of memset | Tom Gundersen | |
2013-10-29 | udev: link-config - use proper return values | Tom Gundersen | |
Not sure if -ENOENT is the correct return value for when no persistent network name is set, but couldn't think of anything better. | |||
2013-10-29 | udev: link-config - use new0 instead of calloc | Tom Gundersen | |
2013-10-29 | rtnl: use malloc0 instead of calloc | Tom Gundersen | |