Lennart Poettering
916abb21d0
socket: add POSIX mqueue support
2011-05-17 19:37:03 +02:00
Lennart Poettering
7a6000a682
unit: make ignoring in snapshots a per unit property, instead of a per unit type property
2011-05-05 10:58:55 +02:00
Tollef Fog Heen
ec43fbc68c
man: typo in sd_daemon reference
2011-04-29 14:47:31 +02:00
Lennart Poettering
ecb963cc40
def: lower default timeout to 90s
...
Almost everybody found 3min too long, so lower it again
2011-04-27 22:30:50 +02:00
Kay Sievers
772f83719e
tmpfiles.d: switch to stacked config dirs in /lib, /etc, /run
2011-04-25 21:38:21 +02:00
Kay Sievers
db1413d738
sysctl.d, binfmt.d, modules-load.d: switch to stacked config dirs in /lib, /etc, /run
2011-04-25 20:41:47 +02:00
A. Costa
8f28cbcdfe
man: Spelling fixes
2011-04-23 21:56:05 +02:00
Lennart Poettering
811ad2b3a4
man: minor fixes
2011-04-21 01:18:23 +02:00
Lennart Poettering
b0a3f2bc09
socket: support ListeSpecial= sockets
2011-04-20 05:02:23 +02:00
Lennart Poettering
05677bb780
man: fix specification of default timeouts
2011-04-20 00:51:23 +02:00
Lennart Poettering
63415a2d2b
man: runlevel 5 is usually more comprehensive, so use it instead of 3 to detect whether a sysv service is enabled
2011-04-16 02:42:23 +02:00
Lennart Poettering
7640a5de1b
hostnamed: introduce systemd-hostnamed
...
http://www.freedesktop.org/wiki/Software/systemd/hostnamed
2011-04-16 02:03:35 +02:00
Lennart Poettering
7f434cf4c9
ask-password: use default timeout
2011-04-16 02:03:34 +02:00
Lennart Poettering
c8f4d7642b
manager: introduce IgnoreOnIsolate flag so that we can keep systemd-logger around when isolating
2011-04-16 02:03:34 +02:00
Lennart Poettering
7a22745ac3
socket: support netlink sockets
2011-04-10 03:27:00 +02:00
Lennart Poettering
0e456f9781
path: optionally, create watched directories in .path units
2011-04-10 01:30:14 +02:00
Lennart Poettering
f3bc7fdc7b
man: add man page for ask-password
2011-04-08 17:57:17 +02:00
Lennart Poettering
222ae6a8d7
unit: introduce OnFailureIsolate=
2011-04-07 04:11:31 +02:00
Lennart Poettering
4466194c43
units: rename rtc-set.target to time-sync.target and pull it in by hwclock-load.service
...
On request of Miroslav Lichvar, rename rtc-set.target to
time-sync.target since usually the RTC chip isn't involved at all in NTP
syncs.
Also, pull it in by hwclock-load.service.
2011-04-06 19:18:17 +02:00
Lennart Poettering
100fd5676c
man: fix description of systemctl reload-or-try-restart
2011-04-05 23:41:27 +02:00
Lennart Poettering
3d57c6ab80
exec: support unlimited resources
2011-04-04 18:15:13 +02:00
Lennart Poettering
c91faef3b3
man: document /etc/sysctl.d/
2011-04-04 03:48:09 +02:00
Lennart Poettering
151b190e79
binfmt: add binfmt tool to set up binfmt_misc at boot
2011-04-04 03:36:42 +02:00
Lennart Poettering
d24e1b4806
condition: use 'selinux' rather than 'SELinux' as preferred spelling
...
The virtualization condition and others use lowercase identifiers, so
for the sake of keeping things least surprising, use lowercase
identifiers here too.
2011-04-03 22:18:39 +02:00
Michal Schmidt
69528c31c6
man: document ConditionSecurity
2011-04-03 22:16:50 +02:00
Lennart Poettering
bb29785e0d
general: replace a few uses of /var/run by /run
2011-04-01 15:25:46 +02:00
Lennart Poettering
c61e77d3ea
man: document ConditionPathIsDirectory=
2011-04-01 00:42:57 +02:00
Lennart Poettering
7602c46fe6
man: uinput.ko is a bad example
2011-03-31 18:19:59 +02:00
Lennart Poettering
cd25cce98f
exec: drop process group kill mode since it has little use and confuses the user
2011-03-29 23:31:38 +02:00
Lennart Poettering
1ead1cad4b
man: really fix all LC_MESSAGE to LC_MESSAGES
...
https://bugs.freedesktop.org/show_bug.cgi?id=35534
2011-03-29 12:12:31 +02:00
Lennart Poettering
2d87855ae8
man: fix references to systemd.unit= on the kernel cmdline
...
https://bugs.freedesktop.org/show_bug.cgi?id=35720
2011-03-28 23:39:18 +02:00
Kay Sievers
2b583ce657
use /run instead of /dev/.run
...
Instead of the /dev/.run trick we have currently implemented, we decided
to move the early-boot runtime dir to /run.
An existing /var/run directory is bind-mounted to /run. If /var/run is
already a symlink, no action is taken.
An existing /var/lock directory is bind-mounted to /run/lock.
If /var/lock is already a symlink, no action is taken.
To implement the directory vs. symlink logic, we have a:
ConditionPathIsDirectory=
now, which is used in the mount units.
Skipped mount unit in case of symlink:
$ systemctl status var-run.mount
var-run.mount - Runtime Directory
Loaded: loaded (/lib/systemd/system/var-run.mount)
Active: inactive (dead)
start condition failed at Fri, 25 Mar 2011 04:51:41 +0100; 6min ago
Where: /var/run
What: /run
CGroup: name=systemd:/system/var-run.mount
The systemd rpm needs to make sure to add something like:
%pre
mkdir -p -m0755 /run >/dev/null 2>&1 || :
or it needs to be added to filesystem.rpm.
Udev -git already uses /run if that exists, and is writable at bootup.
Otherwise it falls back to the current /dev/.udev.
Dracut and plymouth need to be adopted to switch from /dev/.run to run
too.
Cheers,
Kay
2011-03-28 23:00:00 +02:00
Lennart Poettering
f9276855a1
man: explain a couple of default dependencies
2011-03-28 21:36:13 +02:00
Andrey Borzenkov
2fccaefffe
man: no keep-root in pam_systemd anymore
2011-03-22 20:31:10 +03:00
Lennart Poettering
28cf382a0a
man: document pidns containers
2011-03-18 04:53:31 +01:00
Lennart Poettering
e2130f189a
units: deemphesize Names= settings, and explain why nobody whould use them
2011-03-18 04:53:31 +01:00
Lennart Poettering
f1dd0c3f9b
syslog: rework syslog detection so that we need no compile-time option what the name of the syslog implementation is
2011-03-18 04:53:31 +01:00
Lennart Poettering
0732ec002e
man: document .requires/ directories
2011-03-18 04:53:12 +01:00
Lennart Poettering
177b3ffedb
special: get rid of dbus.target
2011-03-18 04:53:12 +01:00
Lennart Poettering
260abb780a
exec: properly apply capability bounding set, add inverted bounding sets
2011-03-18 04:52:45 +01:00
Andrey Borzenkov
f1f8cfd0a2
man: fix systemctl try-restart description
...
It is no more error when service is not running.
2011-03-16 03:54:59 +01:00
Lennart Poettering
8f7a3c1402
man: document systemd-nspawn
2011-03-15 20:51:59 +01:00
Lennart Poettering
91b22f21f3
core: move abstract namespace sockets to /dev/.run
...
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 03:12:25 +01:00
Lennart Poettering
a8f11321c2
systemctl: support remote and privileged systemctl access via SSH and pkexec
...
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-12 01:07:17 +01:00
Andrey Borzenkov
756a8d17bb
man: trivial typo in systemd(1)
2011-03-10 20:48:12 +01:00
Lennart Poettering
b925e72633
dev: use /dev/.run/systemd as runtime directory, instead of /dev/.systemd
2011-03-09 22:45:47 +01:00
Lennart Poettering
267632f0ab
unit: distuingish mandatory from triggering conditions
2011-03-08 03:04:47 +01:00
Lennart Poettering
d7ccca2e3f
main: introduce /etc/machine-id
...
This is supposed to play the same roles /var/lib/dbus/machine-id,
however fixes a couple of problems:
- It is available during early boot since it is stored in /etc
- Removes the ID from the D-Bus context and moves it into a system
context, thus hopefully lowering hesitation by people to use it.
- It is generated at installation time. If the file is empty at boot
time it will be mounted over with a randomly generated ID, which is
not saved to disk. This is useful to support state-less machines with
no transient or writable /etc configuration.
2011-03-04 21:53:19 +01:00
Lennart Poettering
f1779fd27b
man: document changed EnvironmentFile= behaviour
2011-03-04 14:13:47 +01:00
Lennart Poettering
6221fcdf2e
man: fix chkconfig syntax to use --level 3
2011-03-01 22:18:49 +01:00
Lennart Poettering
039655a40c
unit: introduce ConditionVirtualization=
2011-02-21 22:07:55 +01:00
Mike Kazantsev
48c4fad950
man: fixed typo in SyslogIdentifier=
2011-02-19 14:32:44 +01:00
Lennart Poettering
d12d0e647a
man: don't do more reloads than necessary in spec files
2011-02-18 02:25:18 +01:00
Lennart Poettering
e67c3609b1
systemctl: introduce --ignore-dependencies
2011-02-16 21:59:31 +01:00
Lennart Poettering
30732560c4
systemctl: introduce --failed to show only failed services
2011-02-16 20:34:59 +01:00
Lennart Poettering
934da03599
service: change default std output to inherit
2011-02-15 12:28:01 +01:00
Lennart Poettering
0a494f1ff3
exec: introduce global defaults for the standard output of services
2011-02-15 11:52:29 +01:00
Lennart Poettering
28dbc1e80b
execute: optionally forward program output to /dev/console in addition to syslog/kmsg
2011-02-15 01:27:53 +01:00
Lennart Poettering
3185a36b05
service: make main pid guessing optional, and reread pid file after reloads
2011-02-13 18:51:30 +01:00
Lennart Poettering
e9fbc77c8f
pam: introduce whitelist and blacklist user list feature
...
This is useful to exclude root from the session logout killings or to
limit killing to the selinux guest users.
2011-02-13 18:21:18 +01:00
Lennart Poettering
522d4a495a
systemd: document systemd-tmpfiles
2011-02-13 15:08:15 +01:00
Lennart Poettering
b8bb3e8f34
tmpfiles: support globs
2011-02-12 09:31:25 +01:00
Lennart Poettering
70e911eaeb
man: document SYSTEMD_READY=
2011-02-09 15:02:03 +01:00
Lennart Poettering
0658666bac
manager: if we receive SIGRTMIN+20/21 enable/disable showing of status on the console
2011-02-09 12:12:30 +01:00
Lennart Poettering
be0396695b
man: clarify a few things
2011-02-09 11:00:17 +01:00
Lennart Poettering
b20c6be697
pam: optionally reset cgroup memberships for login sessions
2011-02-04 12:46:38 +01:00
Lennart Poettering
76e7bc8dfb
man: give an example for vconsole.conf
...
https://bugs.freedesktop.org/show_bug.cgi?id=31955
2011-01-21 00:42:47 +01:00
Lennart Poettering
3add4d215b
pam: optionally keep processes of root user around
2011-01-18 23:07:06 +01:00
Lennart Poettering
ba035df230
execute: make sending of SIGKILL on shutdown optional
2011-01-18 22:55:54 +01:00
Lennart Poettering
2292707df5
man: document missing KillSignal= and swap options
2011-01-18 00:40:10 +01:00
Lennart Poettering
afe4bfe2c1
fragment: allow prefixing of the EnvironmentFile= path with - to ignore errors
2011-01-06 01:39:08 +01:00
Miklos Vajna
0736af98c6
systemctl: implement auto-pager a la git
2011-01-02 18:17:19 +01:00
Miklos Vajna
5471472d44
man: remaining spelling fixes
2011-01-01 20:03:56 +01:00
Miklos Vajna
01c3a63e17
Fix misspellings in os-release manpage and hwclock-load.service
2010-12-20 16:30:59 +01:00
Miklos Vajna
2dddca4a8d
man: daemon - fix misspellings
2010-12-16 09:49:03 +01:00
Miklos Vajna
ae92f4266a
man: modules-load.d - fix misspellings
2010-12-07 10:16:15 +01:00
Ran Benita
9bee76ee44
man: systemctl - clarify condrestart, force-reload
2010-11-30 19:51:48 +01:00
Ran Benita
3d428115cf
man: systemctl - spelling fixes
2010-11-28 14:00:49 +01:00
Lennart Poettering
6bd2127711
man: make clear that VERSION and VERSION_ID is not mandatory in os-release.5
2010-11-22 00:26:08 +01:00
Lennart Poettering
a7c64469b6
man: document /etc/modules-load.d/
2010-11-21 20:41:00 +01:00
Lennart Poettering
e17fb72914
man: document /etc/os-release
2010-11-21 20:05:51 +01:00
Lennart Poettering
ee48647271
man: document locale.conf
2010-11-21 19:29:27 +01:00
Lennart Poettering
eeca220bc2
man: document /etc/vconsole.conf
2010-11-21 19:12:44 +01:00
Lennart Poettering
6a7e63eff2
man: document /etc/hostname
2010-11-21 16:29:56 +01:00
Lennart Poettering
88aebb6265
man: reorder things to follow the same order everywhere
2010-11-19 16:14:52 +01:00
Andrey Borzenkov
21931dbe65
man: trivial BindTo description fix
...
I guess "unexpected" implies "without involvement".
2010-11-18 00:50:49 +01:00
Lennart Poettering
06d4c99ab3
manager: make list of default controllers configurable
2010-11-18 00:42:35 +01:00
Lennart Poettering
4611d77694
pam: document controllers= switch
2010-11-18 00:38:41 +01:00
Lennart Poettering
af2d49f70b
drop support for MANAGER_SESSION, introduce MANAGER_USER instead
2010-11-15 22:13:26 +01:00
Lennart Poettering
36af55d997
unit: introduce ConditionDirectoryNotEmpty=
2010-11-15 22:13:25 +01:00
Lennart Poettering
824a1d590a
pam: rename 'no-session' to 'user' cgroup
2010-11-14 23:48:20 +01:00
Andrew Edmunds
f8553ccbb3
man: Fix various typos
2010-11-11 14:24:47 +01:00
Lennart Poettering
aeee2322a6
man: minor tmpfiles(5) updates and reindenting
2010-11-10 23:01:20 +01:00
Lennart Poettering
d257ddef22
unit: add ConditionNull= condition
2010-11-10 22:39:18 +01:00
Brandon Philips
4149f86d81
man/tmpfiles.d.xml: add a manpage for tmpfiles.d
...
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-11-05 00:20:28 +01:00
Lennart Poettering
ead8e4788e
unit: get rid of gnoreDependencyFailure= instead treat ConflictedBy= as weaker counterpart of Conflicts=, similar to Wants= vs. Requires=
2010-10-29 16:28:27 +02:00
Lennart Poettering
b81884e746
unit: replace StopRetroactively= by BindTo= dependencies
...
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-29 00:45:46 +02:00
Lennart Poettering
f14e15f8af
unit: replace recursive_stop by stop_retroactively to simplify things a little
2010-10-28 03:38:52 +02:00
Lennart Poettering
248e6030e0
man: be more explicit about the usefulness of --system
2010-10-26 23:22:55 +02:00
Lennart Poettering
501fc174c2
systemctl: automatically spawn temporary password agent when we might need one
2010-10-26 05:29:39 +02:00
Lennart Poettering
59cddb2338
man: numerous updates to document updated systemctl behaviour
2010-10-22 16:32:29 +02:00
Lennart Poettering
6f3525444e
man: document systemctl --force
2010-10-22 16:12:05 +02:00
Lennart Poettering
8a0867d6c5
systemctl: introduce systemctl kill
2010-10-22 16:11:50 +02:00
Lennart Poettering
9fc507041e
unit: introduce %f specifier to decode file names
2010-10-20 16:16:45 +02:00
Lennart Poettering
2ba545f1a0
service: implement FsckPassNo= option
2010-10-20 14:22:23 +02:00
Lennart Poettering
b772cfe0cc
man: extend commenting of .spec file snippets a bit
2010-10-19 19:39:02 +02:00
Lennart Poettering
075b1e86c5
man: properly refer to $MAINPID instead of $(MAINPID) which doesnt work anymore
2010-10-19 19:37:38 +02:00
Lennart Poettering
52661efd21
unit: add minimal condition checker for unit startup
2010-10-13 02:15:41 +02:00
Lennart Poettering
50caaedb2c
service: introduce Restart=on-failure and Restart=on-abort
2010-10-08 18:34:54 +02:00
Lennart Poettering
6daf4f9001
unit: rename 'banned' load state to 'masked'
2010-10-08 18:21:52 +02:00
Lennart Poettering
169c1bda80
service: optionally, create INIT_PROCESS/DEAD_PROCESS entries for a service
...
This should fix accounting for pam_limits and suchlike.
https://bugzilla.redhat.com/show_bug.cgi?id=636036
2010-10-08 16:07:50 +02:00
Dave Reisner
c899f8c61a
fix typo: s/seperat/separat/g
2010-10-05 21:50:56 +02:00
Lennart Poettering
a1102c1f63
man: fix typo
2010-10-05 21:22:41 +02:00
Lennart Poettering
f72192c0c9
man: document Sockets= switch
2010-10-05 20:51:00 +02:00
Lennart Poettering
e62e6670f7
man: document readahdea split-off
2010-10-05 20:44:37 +02:00
Lennart Poettering
525ee6f4a1
service: rename settings for Restart= from 'restart-always' to 'always' and similar
2010-10-05 20:30:44 +02:00
Lennart Poettering
d9ff321ad9
socket: make service to start on incoming traffic configurable
2010-10-05 19:50:00 +02:00
Lennart Poettering
20ed365678
man: fix suggested autoconf snippet
2010-10-05 19:50:00 +02:00
Lennart Poettering
6624768c9c
readahead: add interface to sd-daemon.[ch] to control readahead
2010-09-26 15:50:14 +02:00
Lennart Poettering
d2f316345c
man: document that first param to ExecStart= cannot be variable substitution
...
https://bugzilla.redhat.com/show_bug.cgi?id=630156
2010-09-15 01:44:26 +02:00
Lennart Poettering
b9aea9547a
man: include reference to the interface stability promise
2010-09-14 21:52:33 +02:00
Lennart Poettering
67ff613459
man: s/triggerin/triggerun/ for rpm upgrades
...
https://bugzilla.redhat.com/show_bug.cgi?id=626966
2010-09-13 20:51:40 +02:00
Lennart Poettering
34f0c1a118
man: some clarifications
2010-09-13 12:05:54 +02:00
Michael Biebl
96d4ce0110
man: Fix small typo: s/seperate/separate/
2010-09-06 03:13:14 +02:00
Lennart Poettering
a9c72fe933
build-sys: prepare new release
2010-09-03 04:51:02 +02:00
Matthew Miller
25f63d4671
man: extend documentation on systemctl isolate
...
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-09-03 04:48:00 +02:00
Lennart Poettering
f73e33d9ec
systemctl: avoid wrapping of headers/footers
...
This change makes sure that our output never exceeds 80ch on 80ch
terminals.
https://bugzilla.redhat.com/show_bug.cgi?id=626443
2010-08-31 16:56:08 +02:00
Lennart Poettering
dd6c17b159
exec: replace OOMAdjust= by OOMScoreAdjust= to follow new kernel interface
...
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-31 01:33:43 +02:00
Matthew Miller
74ac3cbd50
manager: rename 'maintenance' state to 'failed' to avoid user confusion
...
https://bugzilla.redhat.com/show_bug.cgi?id=614619
2010-08-31 00:17:56 +02:00
Lennart Poettering
2528a7a62c
unit: introduce AllowIsolate= switch
2010-08-30 23:04:36 +02:00
Lennart Poettering
77d5f105bf
cgroup: mount cgroup file systems to /sys/fs/cgroup instead of /cgroup
...
This requires the /sys/fs/cgroup to exist. Current git kernels have
this, released kernels need a backport of a single patch.
2010-08-25 04:58:24 +02:00
Lennart Poettering
20604ebc04
man: minor updates
2010-08-25 03:10:13 +02:00
Lennart Poettering
02ee865a46
service: rename ValidNoProcess= to RemainAfterExit=
2010-08-17 19:37:36 +02:00
Lennart Poettering
f276a41821
shutdown: drop -f/-F switches again, simply because we don't want to condone non-ro root dirs
...
Instead of using /forcefsck and /fastboot people should just kernel
command line options to achieve the same.
2010-08-17 18:13:47 +02:00
Lennart Poettering
6b5ad000ab
shutdown: if now time argument is passed, imply +1 not +0
...
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-16 17:12:40 +02:00
Lennart Poettering
5dc50792ac
man: document new shutdown features
2010-08-16 15:56:42 +02:00
Lennart Poettering
b1690fe70a
man: document that we now accept more than one main process for Type=oneshot services
2010-08-13 18:46:04 +02:00
Lennart Poettering
34e9ba669e
service: rename Type=finish to Type=oneshot and allow multiple ExecStart= 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".
2010-08-13 18:23:01 +02:00
Lennart Poettering
75676b7287
man: document new 'systemctl status PID' syntax
2010-08-13 02:15:10 +02:00
Lennart Poettering
b5e9dba8d6
unit: rename OnlyByDependency= to RefuseManualStart= and introduce RefuseManualStop=
...
Some unit shall never be start on user request (e.g. shutdown.target)
others never be stopped on user request (e.g. auditd.servce), hence
offer options for both.
2010-08-11 01:44:37 +02:00
Lennart Poettering
69dd2852bb
manager: when two pending jobs conflict, keep the one that "conflicts", remove the one that is "conflicted"
...
This gives the writer of units control which unit is kept and which is
stopped when two units conflict.
2010-08-09 22:32:30 +02:00
Lennart Poettering
0a9962a1df
man: minor man page fix
2010-08-07 18:09:39 +02:00
Lennart Poettering
485ccf9a5b
man: minor man page fix
2010-08-06 21:36:58 +02:00
Lennart Poettering
6908d3842a
man: document %triggerin usage
2010-08-06 11:59:37 +02:00
Tomasz Torcz
cebf8b2092
socket: Allow selection of TCP Congestion Avoidance algorithm to socket
...
Hi,
attached path extends socket configurables with another
knob - TCP Congestion Avoidance selection. Linux implements
handful of those, useful in various situations. For example,
TCP Low Priority may be used by FTP service to gracefully
yield bandwidth for more important TCP/IP streams.
Until recently TCP_CONGESTION was Linux-specific, recently
FreeBSD 8 and OpenSolaris gained compatible support.
2010-08-03 23:23:47 +02:00
Lennart Poettering
ee5762e378
systemctl: fold systemd-install into systemctl
2010-07-24 00:53:33 +02:00
Lennart Poettering
85e5760d4f
install: default to minimal realization mode
2010-07-23 05:24:24 +02:00
Lennart Poettering
ea4a240dc2
systemctl: accept -p more than once
2010-07-23 05:24:05 +02:00
Lennart Poettering
c24eb49e6a
exec: extend variable substitution to support splitting variable values into seperate arguments
2010-07-21 02:57:35 +02:00
Lennart Poettering
8fe914ec81
device: do not merge devices
...
Don't try to merge devices that have been created via dependencies when
they appear in the system and can be recognized as the same. Instead,
simply continue to maintain them independently of each other, however
with the same state cycle. Why? Because otherwise we'd have a hard time
to seperate the dependencies after the devices are unplugged again and
we hence cannot be sure anymore that next time the device is plugged in
it will carry the same names.
Example: if one depndency refers to dev-sda.device and another one to
dev-by-id-xxxyyy.device we only learn at time of plug in of the device
that it is actually the same device that was ment. In the moment the
device is unplugged again we won't know anymore their relation to each
other and the next time the harddisk is plugged it might even appear as
dev-by-id-xxxyyy.device and dev-sdb.service. To ensure the dependencies
continue to have the meaning they were intended to have let's hence keep
the .device objects seperate all the time, even when they are plugged
in.
This patch also introduces a new Following= property which points from
the various .device units of a specific device to the main .device unit
for it. This can be used by the client side to figure out the relation
of the .device units to each other and even filter units from display.
2010-07-20 20:33:24 +02:00
Lennart Poettering
5632e3743d
systemctl: introduce reset-maintenance command
2010-07-19 04:08:07 +02:00
Lennart Poettering
b9975629f0
man: extend man pages a little
2010-07-18 02:11:38 +02:00
Lennart Poettering
246756ca92
install: optionally remove all symlinks from configuration tree recursively
2010-07-18 01:33:05 +02:00
Lennart Poettering
7461d1b76f
man: various man page updates
2010-07-16 02:56:19 +02:00
Lennart Poettering
4445a87557
systemctl: add to command for virtualizing the dependency tree with graphviz
2010-07-16 02:56:00 +02:00
Lennart Poettering
6f28c033ec
systemctl: introduce try-restart and reload-or-restart commands
2010-07-13 20:20:36 +02:00
Lennart Poettering
53b543608e
install: implement systemd-install realize
2010-07-13 20:05:47 +02:00
Lennart Poettering
edb9aaa8b2
main: replace --running-as= by --session and --system do mimic related tools and D-Bus
2010-07-13 18:57:58 +02:00
Lennart Poettering
f057408c9c
units: introduce emergency.target
2010-07-12 23:49:20 +02:00
Lennart Poettering
3b6fdb5b5a
unit: introduce IgnoreDependencyFailure=
2010-07-12 03:07:02 +02:00
Lennart Poettering
b708e7cea9
execute: optionally ignore return status of invoked commands
2010-07-12 03:07:01 +02:00
Lennart Poettering
90d473a1c0
systemctl: turn --replace into --fail
2010-07-11 03:59:59 +02:00
Lennart Poettering
828f33e89b
man: update daemon man page a little
2010-07-10 00:49:00 +02:00
Lennart Poettering
83bda35801
build-sys: drop special name hack for dbus.service since a native service file is now shipped upstream dbus
2010-07-10 00:22:38 +02:00
Lennart Poettering
085b94eec3
man: fix minor ambuigity
2010-07-08 21:48:09 +02:00
Ozan Çağlayan
dccb26007a
man: Minor typographic fixes to systemd.xml
...
Fix some minor grammar and punctuation typos.
2010-07-08 21:46:36 +02:00
Ozan Çağlayan
58c16a1a3c
man: Fix minor issues in systemd.unit.xml
...
Fix minor typographic, punctuation and grammar errors.
2010-07-08 21:45:22 +02:00
Lennart Poettering
b4f10a5e89
install: various improvements
...
Rename --start to --realize, to make things less confusing when doing
"systemctl stop --realize foo.service".
Introduce --realize=reload.
Don't talk to systemd when run within a chroot, or when systemd isn't
running.
2010-07-08 21:39:01 +02:00
Lennart Poettering
fa776d8e96
cgls: beef up control group dumping and introduce cgls tool
2010-07-08 21:01:42 +02:00
Lennart Poettering
420a0166a2
man: document variable substitution
2010-07-08 04:19:54 +02:00
Lennart Poettering
b3eaa62881
man: update man pages for recent syntax changes
2010-07-07 21:22:56 +02:00
Conrad Meyer
ad678a066b
man: minor edits to daemon, sd_listen_fds, sd_notify, systemctl, systemd.exec, systemd, and systemd.timer pages
...
Just some minor grammar fixes.
2010-07-07 03:40:12 +02:00
Lennart Poettering
f3e219a238
update man pages for recent changes
2010-07-07 01:38:56 +02:00
Lennart Poettering
72f957066d
man: document new systemd-install --start option
2010-07-06 05:25:24 +02:00
Lennart Poettering
59a3e1bc46
man: more blurbs
2010-07-06 03:46:31 +02:00
Lennart Poettering
99ffae46d3
man: add missing parts to man pages
2010-07-06 03:20:49 +02:00
Lennart Poettering
61cbdc4b30
systemctl: implement 'status' command
2010-07-05 02:40:39 +02:00
Lennart Poettering
7492290434
turn negative options into positive options
2010-07-05 01:08:13 +02:00
Lennart Poettering
03fae01822
uniformly suffix time span properties with their unit
2010-07-04 21:12:10 +02:00
Lennart Poettering
393a2f9be1
man: update systemctl man page
2010-07-04 20:46:12 +02:00
Lennart Poettering
62adf224d1
man: various man page updates
2010-07-03 19:54:00 +02:00
Lennart Poettering
dd1eb43ba7
man: document execution context related settings
2010-07-02 23:24:38 +02:00
Lennart Poettering
ba60f9054e
man: extend references to exec man page
2010-07-02 19:51:28 +02:00
Lennart Poettering
0a715d9783
man: minor fix
2010-07-02 17:28:02 +02:00
Lennart Poettering
5f2ee303af
man: refer to snapshot man page from unit man page
2010-07-02 17:23:19 +02:00
Lennart Poettering
6cbdbc5f22
man: minor fixes
2010-07-02 17:19:52 +02:00
Lennart Poettering
225fdfd3dd
man: fix typo in systemctl man page
2010-07-02 17:04:48 +02:00
Kay Sievers
b439c6ee04
man: trivial spelling fixes
2010-07-02 16:05:16 +02:00
Lennart Poettering
b2c20dd958
man: document snapshot units
2010-07-02 03:51:29 +02:00
Lennart Poettering
6759e7a763
systemctl: implement delete command
2010-07-02 03:51:05 +02:00
Lennart Poettering
eec575d8eb
man: document device units
2010-07-02 03:28:33 +02:00
Lennart Poettering
da49e9ab4c
man: document target units
2010-07-02 02:55:34 +02:00
Lennart Poettering
b36b082c8a
man: document path units
2010-07-02 02:38:30 +02:00
Lennart Poettering
11fcc3ab1b
man: document timer units
2010-07-02 02:14:13 +02:00
Lennart Poettering
e0cabd4bb5
man: document swap units
2010-07-02 01:33:54 +02:00
Lennart Poettering
65232ea79d
man: document automount units
2010-07-02 01:17:55 +02:00
Lennart Poettering
cdb788e4cd
man: document mount units
2010-07-02 00:29:15 +02:00
Lennart Poettering
1f812feafb
man: document socket units
2010-07-01 23:49:50 +02:00
Lennart Poettering
0d624a785a
man: finish service man page
2010-07-01 19:39:35 +02:00
Lennart Poettering
7594fb250b
man: update systemctl man page
2010-07-01 03:55:42 +02:00
Kay Sievers
4176e53079
man: more fixes
2010-06-25 00:06:49 +02:00
Kay Sievers
af62c70405
man: various fixes
2010-06-25 00:04:29 +02:00
Lennart Poettering
11e299550e
man: finish systemd.unit.5
2010-06-24 19:08:38 +02:00
Kay Sievers
436c44a5d6
man: spelling fixes
2010-06-24 17:25:16 +02:00
Lennart Poettering
771610b04d
man: additional documentation
2010-06-24 17:22:52 +02:00
Lennart Poettering
c61fbdfcb9
man: extend systemd-notify man page a bit
2010-06-24 16:13:56 +02:00
Lennart Poettering
58474090e9
man: minor updates for pam_systemd's page
2010-06-24 05:23:16 +02:00
Lennart Poettering
c5abba0887
man: document systemd-notify
2010-06-24 05:17:02 +02:00
Lennart Poettering
6f6083dc73
man: rework man page generation in makefile
2010-06-24 04:22:22 +02:00
Lennart Poettering
0079e4d9dc
man: minor fixes
2010-06-24 03:47:03 +02:00
Lennart Poettering
7874bcd602
man: extend manual page documentation
2010-06-24 03:09:36 +02:00
Lennart Poettering
160cd5c9aa
man: add more man pages
2010-06-24 00:11:04 +02:00
Lennart Poettering
2218198b73
man: start documenting systemd itself
2010-06-23 20:34:34 +02:00
Lennart Poettering
dd17b384db
man: minor fixes
2010-06-23 02:28:09 +02:00
Lennart Poettering
9e632bf7b7
man: add missing systemd.xml
2010-06-23 02:12:10 +02:00
Lennart Poettering
359957ee23
man: document runlevel and systemd-install
2010-06-23 01:49:57 +02:00
Lennart Poettering
f9378423b9
man: document sd-daemon.[ch]
2010-06-23 00:31:54 +02:00
Lennart Poettering
64aba792f7
man: add initial version of daemon(7)
2010-06-22 02:42:10 +02:00
Lennart Poettering
514f4ef52f
systemctl: add verbs for special units
2010-06-18 04:22:59 +02:00
Lennart Poettering
f92a18f527
units: introduce and explain sysinit.target
2010-06-04 18:43:40 +02:00
Lennart Poettering
eeb7229cba
man: document syslog and dbus services
2010-05-24 22:32:49 +02:00
Lennart Poettering
a1b256b0b5
unit: introduce exit.service for exiting from session instances
2010-05-24 22:32:44 +02:00
Lennart Poettering
683f468c54
unit: ship a mail-transfer-agent.target unit by default
2010-05-24 22:30:54 +02:00
Lennart Poettering
1e287fe32f
unit: turn display-manager.target into a service
2010-05-24 22:29:59 +02:00
Lennart Poettering
1e89ced119
man: fix minor typo
2010-05-24 18:58:43 +02:00
Lennart Poettering
9f2c5942e1
man: replace syslog name in man page by configured name
2010-05-17 22:45:52 +02:00
Lennart Poettering
bd3d19a4ea
man: complete service.special(7) man page
2010-05-17 19:37:21 +02:00
Lennart Poettering
340d89e06e
build-sys: add small redirecting Makefiles to simplify compilation from within emacs
2010-05-17 01:44:03 +02:00
Lennart Poettering
9f23530860
man: document a few special units
2010-05-16 22:45:11 +02:00
Lennart Poettering
d1ab0ca073
man: add some initial man page work
2010-05-15 23:06:41 +02:00