summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)Author
2010-11-15drop support for MANAGER_SESSION, introduce MANAGER_USER insteadLennart Poettering
2010-11-15unit: introduce ConditionDirectoryNotEmpty=Lennart Poettering
2010-11-14pam: rename 'no-session' to 'user' cgroupLennart Poettering
2010-11-11man: Fix various typosAndrew Edmunds
2010-11-10man: minor tmpfiles(5) updates and reindentingLennart Poettering
2010-11-10unit: add ConditionNull= conditionLennart Poettering
2010-11-05man/tmpfiles.d.xml: add a manpage for tmpfiles.dBrandon Philips
Initial commit of a tmpfiles.d manpage. I ran it through xmllint but I don't know how to make it look pretty like the rest of the xml files. :-P Signed-off-by: Brandon Philips <bphilips@suse.de>
2010-10-29unit: get rid of gnoreDependencyFailure= instead treat ConflictedBy= as ↵Lennart Poettering
weaker counterpart of Conflicts=, similar to Wants= vs. Requires=
2010-10-29unit: replace StopRetroactively= by BindTo= dependenciesLennart Poettering
The property StopRetroactively= needs to be per-dependency, not per-unit, in order to properly express dependencies between .mount units and its .device and fsck .service units. If the .device unit is unplugged the mount should go away, but if the fsck process terminates the .mount should stay.
2010-10-28unit: replace recursive_stop by stop_retroactively to simplify things a littleLennart Poettering
2010-10-26man: be more explicit about the usefulness of --systemLennart Poettering
2010-10-26systemctl: automatically spawn temporary password agent when we might need oneLennart Poettering
2010-10-22man: numerous updates to document updated systemctl behaviourLennart Poettering
2010-10-22man: document systemctl --forceLennart Poettering
2010-10-22systemctl: introduce systemctl killLennart Poettering
2010-10-20unit: introduce %f specifier to decode file namesLennart Poettering
2010-10-20service: implement FsckPassNo= optionLennart Poettering
2010-10-19man: extend commenting of .spec file snippets a bitLennart Poettering
2010-10-19man: properly refer to $MAINPID instead of $(MAINPID) which doesnt work anymoreLennart Poettering
2010-10-13unit: add minimal condition checker for unit startupLennart Poettering
2010-10-08service: introduce Restart=on-failure and Restart=on-abortLennart Poettering
2010-10-08unit: rename 'banned' load state to 'masked'Lennart Poettering
2010-10-08service: optionally, create INIT_PROCESS/DEAD_PROCESS entries for a serviceLennart Poettering
This should fix accounting for pam_limits and suchlike. https://bugzilla.redhat.com/show_bug.cgi?id=636036
2010-10-05fix typo: s/seperat/separat/gDave Reisner
2010-10-05man: fix typoLennart Poettering
2010-10-05man: document Sockets= switchLennart Poettering
2010-10-05man: document readahdea split-offLennart Poettering
2010-10-05service: rename settings for Restart= from 'restart-always' to 'always' and ↵Lennart Poettering
similar
2010-10-05socket: make service to start on incoming traffic configurableLennart Poettering
2010-10-05man: fix suggested autoconf snippetLennart Poettering
2010-09-26readahead: add interface to sd-daemon.[ch] to control readaheadLennart Poettering
2010-09-15man: document that first param to ExecStart= cannot be variable substitutionLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=630156
2010-09-14man: include reference to the interface stability promiseLennart Poettering
2010-09-13man: s/triggerin/triggerun/ for rpm upgradesLennart Poettering
https://bugzilla.redhat.com/show_bug.cgi?id=626966
2010-09-13man: some clarificationsLennart Poettering
2010-09-06man: Fix small typo: s/seperate/separate/Michael Biebl
2010-09-03build-sys: prepare new releasesystemd/v9Lennart Poettering
2010-09-03man: extend documentation on systemctl isolateMatthew Miller
Lennart has convinced me that it's more helpful to participate than to sit on the sidelines and complain. So, hello everyone. I'm starting by giving up the battle to change the systemctl "isolate" command to "switch-to". Can't win them all. :) I've got a suggested patch to expand the documentation a bit, hopefully making it more clear to new systemd users. Is there an easy way to list all units where AllowIsolate is enabled? That should be included alongside this, I think.
2010-08-31systemctl: avoid wrapping of headers/footersLennart Poettering
This change makes sure that our output never exceeds 80ch on 80ch terminals. https://bugzilla.redhat.com/show_bug.cgi?id=626443
2010-08-31exec: replace OOMAdjust= by OOMScoreAdjust= to follow new kernel interfaceLennart Poettering
This replaces OOMAdjust= by OOMScoreAdjust= in the config files, breaking compatibility with older unit files. However, this keeps compat with older kernels which lack the new OOM rework.
2010-08-31manager: rename 'maintenance' state to 'failed' to avoid user confusionMatthew Miller
https://bugzilla.redhat.com/show_bug.cgi?id=614619
2010-08-30unit: introduce AllowIsolate= switchLennart Poettering
2010-08-25cgroup: mount cgroup file systems to /sys/fs/cgroup instead of /cgroupLennart Poettering
This requires the /sys/fs/cgroup to exist. Current git kernels have this, released kernels need a backport of a single patch.
2010-08-25man: minor updatesLennart Poettering
2010-08-17service: rename ValidNoProcess= to RemainAfterExit=Lennart Poettering
2010-08-17shutdown: drop -f/-F switches again, simply because we don't want to condone ↵Lennart Poettering
non-ro root dirs Instead of using /forcefsck and /fastboot people should just kernel command line options to achieve the same.
2010-08-16shutdown: if now time argument is passed, imply +1 not +0Lennart Poettering
That should friendlier for folks who just run "shutdown" to figure out the command line arguments... https://bugzilla.redhat.com/show_bug.cgi?id=624149
2010-08-16man: document new shutdown featuresLennart Poettering
2010-08-13man: document that we now accept more than one main process for Type=oneshot ↵Lennart Poettering
services
2010-08-13service: rename Type=finish to Type=oneshot and allow multiple ExecStart= ↵Lennart Poettering
lines for oneshot services In contrast to the other service types oneshot services are usually not long lasting and there's not necessarily a single clean main process for them. This change allows multiple ExecStart= lines for this type of services so that the admin/developer doesn't have to arbitrarily pick on of various sequential commands as the "main one".