summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-20job: job_uninstall()Michal Schmidt
Split the uninstallation of the job from job_free() into a separate function. Adjust the callers. job_free() now only works on unlinked and uninstalled jobs. This enforces clear thinking about job lifetimes.
2012-04-20manager: simplify transaction_abort()Michal Schmidt
This is equivalent.
2012-04-20job: allow job_free() only on already unlinked jobsMichal Schmidt
job_free() is IMO too helpful when it unlinks the job from the transaction. The callers should ensure the job is already unlinked before freeing. The added assertions check if anyone gets it wrong.
2012-04-20manager: fix commentMichal Schmidt
2012-04-20tmpfiles: fix error messageMichal Schmidt
2012-04-20docs: remove duplicated install hookKay Sievers
2012-04-20log: fix LOG_TARGET_JOURNAL_OR_KMSGLennart Poettering
2012-04-20mount-setup: don't log with LOG_ERROR if a mount that doesn't matter failsLennart Poettering
2012-04-20main: log to the journal in container mode, by defaultLennart Poettering
2012-04-20docs: hook-up gtk-doc to 'make check'Kay Sievers
2012-04-19docs: rebase html documentation for online and local useKay Sievers
2012-04-19docs: do not generate tmpl filesJavier Jardón
Its not needed as all the documentation is inline source code, not in separate *.tmpl files
2012-04-19fix typo in src/shared/install.cSven Anders
2012-04-18update TODOKay Sievers
2012-04-18udev: units - reference systemd-* unitsKay Sievers
2012-04-18build-sys: move dev-setup to label.laKay Sievers
2012-04-18remove MS_* which can not be combined with current kernel codeKay Sievers
MS_BIND|MS_MOVE can not be combined: do_mount() else if (flags & MS_BIND) do_loopback(&path, dev_name, flags & MS_REC); [...] else if (flags & MS_MOVE) do_move_mount(&path, dev_name); MS_REMOUNT|MS_UNBINDABLE can not be combined: do_mount() if (flags & MS_REMOUNT) do_remount(&path, flags & ~MS_REMOUNT, mnt_flags, data_page); [...] else if (flags & (MS_SHARED | MS_PRIVATE | MS_SLAVE | MS_UNBINDABLE)) do_change_type(&path, flags);
2012-04-17udev: unify /dev static symlink setupKay Sievers
2012-04-17udev: docs - updated index page to match common gtk styleKay Sievers
2012-04-17update TODOKay Sievers
2012-04-17silence a bunch of gcc warningsKay Sievers
2012-04-17build-sys: silence gtk-doc check, remove gtk-doc options from configure and ↵Kay Sievers
distcheck
2012-04-17build-sys: make gtk-doc dependency optionalJavier Jardón
2012-04-17update TODOKay Sievers
2012-04-17selinux: unify systemd and udev codeKay Sievers
2012-04-17mkdir: do not use alloca() in a loopKay Sievers
2012-04-17update .gitignoreLennart Poettering
2012-04-17configure.ac: Use a auxiliar directory to store autogenerated filesJavier Jardón
2012-04-17configure.ac: Use the new autoconf field to set the project webpageJavier Jardón
2012-04-17update TODOLennart Poettering
2012-04-17man: Fix a few typosMichael Biebl
Reported-by: A. Costa <agcosta@gis.net> Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=668344
2012-04-17Fix typoTollef Fog Heen
2012-04-17update TODOKay Sievers
2012-04-17udev: kill udev_selinux_setfscreateconat()Kay Sievers
2012-04-17udev: replace util_create_path() with mkdir_parents()Kay Sievers
2012-04-17udev: install udevd as /usr/lib/systemd/systemd-udevdKay Sievers
2012-04-16udev: use startswith() and streq()Kay Sievers
2012-04-16udev: remove configuration options for /dev, /sys, /run directoriesKay Sievers
2012-04-16udev: replace ARRAY_SIZE() with ELEMENTSOF()Kay Sievers
2012-04-16logind: remove redundant entries from logind's default controller lists tooLennart Poettering
2012-04-16systemctl: show main and control PID explicitly in cgroup-showLennart Poettering
In some cases the main/control PID of a service can be outside of the services cgroups (for example, if logind readjusts the processes' cgroup). In order to clarify this for the user show the main/control PID in the cgroup tree nonetheless, but mark them specially.
2012-04-16util: introduce memdup()Lennart Poettering
2012-04-16cgls: don't show empty cgroups by defaultLennart Poettering
2012-04-16logind: hook up inhibit logic with idle hint logicLennart Poettering
2012-04-16logind: add shutdown/suspend/idle inhibition frameworkLennart Poettering
2012-04-16manager: remove unavailable/redundant entries from default controllers listLennart Poettering
2012-04-16cgroup: if a controller is not available don't try to create cgroups in its ↵Lennart Poettering
hierarchy
2012-04-15udev: udev_monitor_new_from_socket() - log error and remove from public headerKay Sievers
2012-04-15udev: update some rulesKay Sievers
2012-04-15udev: doc - sync libudev and gudevKay Sievers