Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-17 | chkconfig: check against runlevel 5 instead of 3, since it is a superset of ↵ | Lennart Poettering | |
the latter | |||
2011-03-17 | systemctl: accept condstop as alias for stop | Lennart Poettering | |
2011-03-17 | dbus: allow LoadUnit to unprivileged users | Lennart Poettering | |
2011-03-16 | umount: make sure skip_ro is always correctly initialized | Lennart Poettering | |
2011-03-16 | main: revert recognition of "b" argument | Jan Engelhardt | |
Commit 099663ff8c117303af369a4d412dafed0c5614c2 added "b" as a recognized argument, however, B is not a runlevel like S. (B appears as a pseudo runlevel in openSUSE's init.d scripts only for the sake of insserv being able to manage /etc/init.d/boot.d like the other dirs). | |||
2011-03-16 | main: interpret all argv[] arguments unconditionally when run in a container | Lennart Poettering | |
2011-03-16 | loopback: downgrade an error to warning | Lennart Poettering | |
2011-03-16 | nspawn: bind mount /etc/localtime | Lennart Poettering | |
2011-03-16 | nspawn: make tty code more robust against closed/reopened /dev/console | Lennart Poettering | |
2011-03-16 | util: make touched files non-writable by default | Lennart Poettering | |
2011-03-16 | nspawn: allocate a new pty instead of passing ours through to avoid terminal ↵ | Lennart Poettering | |
settings chaos | |||
2011-03-16 | main: parse the whole arv[] as kernel command line | Lennart Poettering | |
2011-03-16 | main: check if we have a valid PID before getting the name of it | Lennart Poettering | |
2011-03-16 | ask-password: reset signal mask after we are done | Lennart Poettering | |
2011-03-15 | cgroup: don't recheck all the time whether the systemd hierarchy is mounted, ↵ | Lennart Poettering | |
to make strace outputs nicer and save a few stat()s | |||
2011-03-15 | cgls: don't strip user processes and kernel threads from default output | Lennart Poettering | |
2011-03-15 | umount: don't try to remount bind mounts ro during shutdown | Lennart Poettering | |
2011-03-15 | getty: move automatic serial getty logic into generator | Lennart Poettering | |
2011-03-14 | container: skip a few things when we are run in a container such as ↵ | Lennart Poettering | |
accessing /proc/cmdline | |||
2011-03-14 | cgls: by default start with group of PID 1 | Lennart Poettering | |
2011-03-14 | pam: determine user cgroup tree from cgroup of PID 1 | Lennart Poettering | |
2011-03-14 | nspawn: move container into its own name=systemd cgroup | Lennart Poettering | |
2011-03-14 | manager: don't show kernel boot-up time for containers | Lennart Poettering | |
2011-03-14 | manager: show who killed us | Lennart Poettering | |
2011-03-14 | hostname: don't override the hostname with localhost if it is already set ↵ | Lennart Poettering | |
and /etc/hostname unset | |||
2011-03-14 | audit: give up sending auditing messages when it failed due to EPERM | Lennart Poettering | |
2011-03-14 | nspawn: don't require selinux on if it is compiled in | Lennart Poettering | |
2011-03-14 | main: remove AF_UNIX sockets before binding | Lennart Poettering | |
2011-03-14 | shutdown: print a nice message when terminating a container | Lennart Poettering | |
2011-03-14 | nspawn: mount /selinux if needed | Lennart Poettering | |
2011-03-14 | shutdown: just call exit() if we are in a container | Lennart Poettering | |
2011-03-14 | umount: assume that a non-existing /dev/loop device means it is already detached | Lennart Poettering | |
2011-03-14 | socket: use 777 as default mode for sockets | Lennart Poettering | |
2011-03-14 | nspawn: we don't want a network namespace | Lennart Poettering | |
2011-03-14 | main: log to the console in a container | Lennart Poettering | |
2011-03-14 | main: don't parse /proc/cmdline in containers | Lennart Poettering | |
2011-03-14 | util: add detect_container() | Lennart Poettering | |
2011-03-14 | nspawn: reset environment and load login shell | Lennart Poettering | |
2011-03-14 | nspawn: reset umask if needed | Lennart Poettering | |
2011-03-14 | nspawn: define MS_MOVE manually if needed | Lennart Poettering | |
2011-03-14 | nspawn: improve exit warning | Lennart Poettering | |
2011-03-14 | core: move abstract namespace sockets to /dev/.run | Lennart Poettering | |
Now that we have /dev/.run there's no need to use abstract namespace sockets. So, let's move things to /dev/.run, to make things more easily discoverable and improve compat with chroot() and fs namespacing. | |||
2011-03-14 | nspawn: add simple chroot(1) like tool to execute commands in a namespace ↵ | Lennart Poettering | |
container | |||
2011-03-14 | util: detect CLONE_NEWPID namespaces, and cache results | Lennart Poettering | |
2011-03-14 | git: ignore generated policy file | Lennart Poettering | |
2011-03-14 | util: return exit status in wait_for_terminate_and_warn() | Lennart Poettering | |
2011-03-14 | util: properly identify pty devices by their major | Lennart Poettering | |
2011-03-12 | polkit: autogenerate polkit policy with correct paths | Lennart Poettering | |
2011-03-12 | systemctl: support remote and privileged systemctl access via SSH and pkexec | Lennart Poettering | |
This adds support for executing systemctl operations remotely or as privileged user while still running systemctl itself unprivileged and locally. This currently requires a D-Bus patch to work properly. https://bugs.freedesktop.org/show_bug.cgi?id=35230 | |||
2011-03-11 | gnome-ask-password-agent.vala: check for VALA_0_12 | Kay Sievers | |
<juergbi> VALA_0_X is defined up to and including the current version <juergbi> so VALA_0_10 is defined in 0.10 and 0.11 and 0.12 <juergbi> VALA_0_12 is defined in 0.11 and 0.12 (and later versions) <juergbi> reverse the branches and use VALA_0_12 as conditional <kay> juergbi: changing api but keep the defines? <kay> how do we support vala 0.14 then? <kay> you keep that model with the old defines? <juergbi> VALA_0_10 corresponds to valaversion >= 0.10 |