summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-01-14journal: hook up coredumping with journalLennart Poettering
2012-01-14journal: add new system-cat tool as kind of a more powerfull BSD loggerLennart Poettering
2012-01-14util: split out tty_is_vc_resolve() from default_term_for_tty()Lennart Poettering
2012-01-14util: rework ANSI escape code macrosLennart Poettering
2012-01-14mount: fix quotaMichal Schmidt
quotacheck.service and quotaon.service were not pulled in for fstab mounts. Fix it by not clearing the default_dependencies flag. The root filesystem may have quotas too, so don't check for "/" there. No need to have duplicate code for adding dependencies on umount.target. https://bugzilla.redhat.com/show_bug.cgi?id=773431
2012-01-13pam: fix buildLennart Poettering
2012-01-13pam: work correctly if a seat is specified but not vtnrLennart Poettering
2012-01-13journal: add output mode that just prints simple messages without any ↵Lennart Poettering
decorations
2012-01-13api: add C++ guards to all headersLennart Poettering
2012-01-13sd-login: teach sd_pid_get_unit() proper handling of instantiated servicesLennart Poettering
2012-01-12journal: if the syslog forwarder socket is full, then don't blockLennart Poettering
2012-01-12core: switch all log targets to go directly to the journal, instead via syslogLennart Poettering
2012-01-12log: make internal log api log directly to the journalLennart Poettering
2012-01-11journal: add SELinux context to all logged messagesLennart Poettering
2012-01-11journal: fix more 32/64 bit issuesLennart Poettering
2012-01-11tmpfiles: fix parsing of /proc/net/unix on 32Bit machinesLennart Poettering
Tracked down by Michael Meeks
2012-01-11logs-show: fix missing newline in short outputMichal Schmidt
Ellipsized messages were printed without a newline.
2012-01-11journald: don't assume size_t and uint64_t are the sameLennart Poettering
2012-01-11journald: set group ownership of journal files to 'adm' by defaultLennart Poettering
2012-01-11journal: make requirement for ACLs optionalLennart Poettering
2012-01-11journalctl: fix --help textLennart Poettering
2012-01-11journal: don't realign window twiceLennart Poettering
2012-01-11sd-journal: implement a number of non-implemented calls from the API for nowLennart Poettering
2012-01-11systemd: reconnect to syslog as soon as the journal is fully upLennart Poettering
2012-01-11journalctl: always show monotonic timestamp even if it's from an old bootLennart Poettering
2012-01-11unit: implement new PropagateReloadTo=/PropagateReloadFrom= operationsLennart Poettering
2012-01-11shutdown: add link to root storage daemon textLennart Poettering
2012-01-11service: brutally slaughter processes that are running in the cgroup when we ↵Lennart Poettering
enter START_PRE and START
2012-01-10shutdown: exclude processes with argv[0][0] from killingLennart Poettering
2012-01-07journalctl: display source timestamp, not journald timestamp, if knownLennart Poettering
2012-01-07journalctl: add new short-monotonic output modeLennart Poettering
2012-01-07journald: add kmsg sourceLennart Poettering
2012-01-07journald: remove inner loop debug messageLennart Poettering
2012-01-07fix compiler warningKay Sievers
2012-01-07sd-id128: let's make our API a bit smaller, since sd_id128_make_v4_uuid() is ↵Lennart Poettering
dispensable
2012-01-07journalctl: rename --new-id to --new-id128 in order not to introduce yet ↵Lennart Poettering
another new name
2012-01-07build-sys: move .pc files next to the matching sourcesLennart Poettering
2012-01-07load-fragment: fix parsing of Socket= settingLennart Poettering
2012-01-07main: fix spellingLennart Poettering
2012-01-07journald: introduce systemd_journald.forward_to_kmsg=1 (and friends) to ↵Lennart Poettering
enable kmsg forwarding globally via kernel cmdline
2012-01-06journald: shorten the time we wait for a forwarding syslogLennart Poettering
2012-01-06unit: properly update references to units which are mergedLennart Poettering
When we merge units that some kind of object points to, those pointers might become invalidated, and needs to be updated. Introduce a UnitRef struct which links up all the unit references, to ensure corrected references. At the same time, drop configured_sockets in the Service object, and replace it by proper UNIT_TRIGGERS resp. UNIT_TRIGGERED_BY dependencies, which allow us to simplify a lot of code.
2012-01-06service: add dependencies on configured socketsLennart Poettering
2012-01-06kmsg-syslogd: remove kmsg-syslogd, since it's entirely obsoleted and ↵Lennart Poettering
replaced by journald
2012-01-06special: fix name of journal socket unitLennart Poettering
2012-01-06journal: introduce log target 'journal' for executed processesLennart Poettering
2012-01-06stdout: remove stdout-syslog-bridge since it is now obsoleted by journaldLennart Poettering
2012-01-06util: switch the console to text mode on resetMichal Schmidt
In case we're taking over the console after a killed X server. https://bugzilla.redhat.com/show_bug.cgi?id=771563
2012-01-06util: fix switching to console unicode modeMichal Schmidt
The KDSKBMODE ioctl wants a value directly, not its address.
2012-01-05login: implement sd_session_get_service()Lennart Poettering