summaryrefslogtreecommitdiff
path: root/units
Commit message (Collapse)AuthorAge
* units: add explicit dependency on display-manager.service to graphical.targetLennart Poettering2012-06-27
| | | | | | This replaces the symlink based dependency by an explicit one in the unit file so that we avoid the dangling symlink when no display manager is installed.
* man: document systemd-update-generatorLennart Poettering2012-06-27
|
* man: this time, fix Documentation= properlyLennart Poettering2012-06-27
|
* units: fix Documentation= tag in fsck unitsLennart Poettering2012-06-27
|
* man: document systemd-ask-password-console.service and friendsLennart Poettering2012-06-27
|
* man: document quotacheckLennart Poettering2012-06-27
|
* man: add Documentation= tag to tmp.mountLennart Poettering2012-06-27
|
* man: add Documentation= tags to all kinds of missing unitsLennart Poettering2012-06-27
|
* man: properly document .socket units in man pageLennart Poettering2012-06-27
|
* man: document systemd-fsckLennart Poettering2012-06-27
|
* man: document the readahead servicesLennart Poettering2012-06-26
|
* man: document systemd-halt.service and friendsLennart Poettering2012-06-26
|
* man: document systemd-suspend.serviceLennart Poettering2012-06-26
|
* man: document systemd-shutdowndLennart Poettering2012-06-26
|
* man: document systemd-initctlLennart Poettering2012-06-26
|
* man: document systemd-hostnamedLennart Poettering2012-06-26
|
* man: document localedLennart Poettering2012-06-25
|
* man: document systemd-timedated.serviceLennart Poettering2012-06-25
|
* man: document systemd-update-utmp-runlevelLennart Poettering2012-06-25
|
* man: document systemd-user-sessions.serviceLennart Poettering2012-06-25
|
* units: rename halt/hibernate/kexec/poweroff/reboot/suspend to systed-xxxLennart Poettering2012-06-25
| | | | | These service units also execute our own code, hence rename the accordingly and prefix them with systemd-
* units: rename fsck@.service to systemd-fsck@.serviceLennart Poettering2012-06-25
| | | | | | | | | | | The rule is that units that encapsulate our own code are prefixed with "systemd-". Since the fsck units invoke our own code, hence add the missing prefix. Since a long long time the fsck units didn't invoke the naked fsck binaries anymore, and it is unlikely that this well ever change. On the opposite: the code in systemd-fsck will probably get more complex over time to handle fsck progress to plymouth forwarding. Same for quotacheck (but not quotaon!)
* man: document systemd-remount-fs.serviceLennart Poettering2012-06-25
|
* man: document systemd-random-seed-load.serviceLennart Poettering2012-06-25
|
* units: stop sleep.target when it has done its jobLennart Poettering2012-06-25
|
* man: document systemd-vconsole-setup.serviceLennart Poettering2012-06-25
|
* man: refer to udevd by its service name not binary nameLennart Poettering2012-06-22
| | | | | | | Since the binary name is now hidden away in /usr/lib/ the primary user handle for the udev service is the unit name, hence change the man page to be available under the unit name, and make the binary name an alias for it.
* readahead: merge three binaries into oneLennart Poettering2012-06-21
| | | | | | | since the binaries share much of the same code and we better load only one binary instead of two from disk at early boot let's merge the three readahead binaries into one. This also allows us to drop a lot of duplicated code.
* update .gitignoreKay Sievers2012-06-10
|
* systemd-debug-shell: add to POTFILES.skipKay Sievers2012-06-07
|
* delete plymouth units; moved to plymouthKay Sievers2012-06-07
|
* units: add systemd-debug-shell.serviceMichal Schmidt2012-06-07
| | | | | | | | | If enabled, the service provides a root shell from an early boot. It also remains active late into shutdown. It is useful for debugging startup and shutdown problems. This is the unit referenced in http://freedesktop.org/wiki/Software/systemd/Debugging#early_debug_shell
* udev: systemd-udev-settle.service fix After=Kay Sievers2012-06-06
| | | | https://bugs.freedesktop.org/show_bug.cgi?id=50779
* units: avoid redundant VT clearing by agettyMichal Schmidt2012-06-06
| | | | | | | | | TTYVTDisallocate=yes already clears the VT. agetty does not need to do it again. Run it with --noclear. Felix Miata found the double clearing confusing in this bugreport: https://bugzilla.redhat.com/show_bug.cgi?id=828007 Add a comment explaining what clears the VT.
* units: fix man sectionLennart Poettering2012-06-01
|
* man: document systemd-journalLennart Poettering2012-06-01
|
* man: write man page for systemd-logindLennart Poettering2012-06-01
|
* man: add documentation for the binfmt, modules-load, sysctl servicesLennart Poettering2012-05-31
|
* units: add Documentation= field to console-getty.serviceLennart Poettering2012-05-31
|
* plymouth: use systemd-udev-settle.serviceKay Sievers2012-05-29
|
* udev: man - mention systemd-udevd(8)Kay Sievers2012-05-29
|
* units: fix file syntaxLennart Poettering2012-05-23
|
* readahead: use Conflicts= instead of masking to get rid of readahead unitsLennart Poettering2012-05-23
|
* readahead: avoid running of readahead services if readahead is already doneLennart Poettering2012-05-23
|
* readahead: when doing a system update drop readahead fileLennart Poettering2012-05-23
|
* system-update: add system update generatorLennart Poettering2012-05-22
| | | | http://freedesktop.org/wiki/Software/systemd/SystemUpdates
* rescue: don't pull in socketsLennart Poettering2012-05-22
| | | | | | | | | | In rescue mode let's not establish all sockets, so that we don't end up starting a lot of additional services automatically. Instead of pulling in basic.target we now only pull in sysinit.target which pulls in local-fs.target and swap.target. That way rescue mode has all the really basic setup around, but normal services are not started and not autostarted either.
* units: introduce new Documentation= field and make use of it everywhereLennart Poettering2012-05-21
| | | | | | | | | | This should help making the boot process a bit easier to explore and understand for the administrator. The simple idea is that "systemctl status" now shows a link to documentation alongside the other status and decriptionary information of a service. This patch adds the necessary fields to all our shipped units if we have proper documentation for them.
* units: do not quit plymouth too earlyMichal Schmidt2012-05-14
|
* sleep: implement suspend/hibernate as first class targetsLennart Poettering2012-05-08
|