[Pkg-systemd-maintainers] Bug#737825: systemd: systemctl start php5-fpm hangs on systemd-tty-ask-password-agent
Ondřej Surý
ondrej at sury.org
Thu Feb 6 10:25:56 GMT 2014
Package: systemd
Version: 204-6
Severity: important
Hi,
when installing php5-fpm on the headless KVM server the 'systemctl
start php5-fpm' hangs with 'systemd-tty-ask-password-agent --watch'
waiting for something (I guess user input?):
root 1 0.0 0.1 45940 4256 ? Ss Feb05 0:07 /lib/systemd/systemd
root 188 0.0 0.3 114764 14100 ? Ss Feb05 0:08 /lib/systemd/systemd-journald
root 199 0.0 0.0 42380 1088 ? Ss Feb05 0:00 /lib/systemd/systemd-udevd
root 649 0.0 0.0 28512 1052 ? Ss Feb05 0:00 /lib/systemd/systemd-logind
message+ 654 0.0 0.0 41380 1176 ? Ss Feb05 0:00 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
root 4952 0.0 0.0 15068 788 pts/0 S+ 11:12 0:00 /bin/systemd-tty-ask-password-agent --watch
Output of: journalctl -xn:
Feb 06 11:15:18 pagan.rfc1925.org systemd[1]: php5-fpm.service stopping timed out (2). Killing.
Feb 06 11:15:18 pagan.rfc1925.org systemd[1]: Failed to start The PHP FastCGI Process Manager.
-- Subject: Unit php5-fpm.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/catalog/be02cf6855d2428ba40df7e9d022f03d
--
-- Unit php5-fpm.service has failed.
--
-- The result is failed.
Feb 06 11:15:18 pagan.rfc1925.org systemd[1]: Unit php5-fpm.service entered failed state.
Output of 'systemctl status php5-fpm.service':
root at pagan:/etc/php5/fpm/pool.d# systemctl status php5-fpm.service
php5-fpm.service - The PHP FastCGI Process Manager
Loaded: loaded (/lib/systemd/system/php5-fpm.service; enabled)
Active: failed (Result: timeout) since Thu 2014-02-06 11:15:18 CET; 2min 24s ago
Process: 4953 ExecStartPre=/usr/lib/php5/php5-fpm-checkconf (code=exited, status=0/SUCCESS)
Main PID: 4524
CGroup: name=systemd:/system/php5-fpm.service
Feb 06 11:12:18 pagan.rfc1925.org systemd[1]: Starting The PHP FastCGI Process Manager...
Feb 06 11:12:18 pagan.rfc1925.org php5-fpm[4959]: [06-Feb-2014 11:12:18] ERROR: An another FPM instance seems to already listen on /var/run/php5-fpm.e-psychologie.cz.sock
Feb 06 11:12:18 pagan.rfc1925.org php5-fpm[4959]: [06-Feb-2014 11:12:18] ERROR: FPM initialization failed
Feb 06 11:13:48 pagan.rfc1925.org systemd[1]: php5-fpm.service operation timed out. Terminating.
Feb 06 11:15:18 pagan.rfc1925.org systemd[1]: php5-fpm.service stopping timed out (2). Killing.
Feb 06 11:15:18 pagan.rfc1925.org systemd[1]: Failed to start The PHP FastCGI Process Manager.
Feb 06 11:15:18 pagan.rfc1925.org systemd[1]: Unit php5-fpm.service entered failed state.
The php5-fpm.service job is quite simple:
# cat /lib/systemd/system/php5-fpm.service
[Unit]
Description=The PHP FastCGI Process Manager
After=network.target
[Service]
Type=notify
PIDFile=/var/run/php5-fpm.pid
ExecStartPre=/usr/lib/php5/php5-fpm-checkconf
ExecStart=/usr/sbin/php5-fpm --nodaemonize --fpm-config /etc/php5/fpm/php-fpm.conf
ExecReload=/bin/kill -USR2 $MAINPID
[Install]
WantedBy=multi-user.target
*** *** ***
I see two problems here:
* There was a monit job monitoring php5-fpm and starting it with
"/etc/init.d/php5-fpm start" when the service was not running. Thus
the php5-fpm failed to start because there was already some other
process listening to the socket.
SO - it seems there's some bad interaction between running the old
shell script and the new php5-fpm.service.
* The second problem was caused by running
'/bin/systemd-tty-ask-password-agent' inside 'systemctl start
php5-fpm.service' that never asked for any input and just timed out.
Both bugs deserve fixing since I guess I am not the only one that run
some kind of pre-systemd monitoring system to keep the services running.
Also if there's anything I can do with my php5 maintainer hat, please
advice so.
Best regards,
Ondrej
-- Package-specific info:
--------------
systemd-delta:
--------------
[OVERRIDDEN] /etc/systemd/system/transmission-daemon.service → /lib/systemd/system/transmission-daemon.service
--- /lib/systemd/system/transmission-daemon.service 2014-02-05 11:19:36.000000000 +0100
+++ /etc/systemd/system/transmission-daemon.service 2014-02-05 14:38:19.041474419 +0100
@@ -3,9 +3,10 @@
After=network.target
[Service]
-User=debian-transmission
+User=torrents
Type=notify
-ExecStart=/usr/bin/transmission-daemon -f --log-error
+ExecStart=/usr/bin/transmission-daemon -f --log-error --config-dir /storage/torrents/.config/transmission-daemon/
+Restart=on-abort
[Install]
WantedBy=multi-user.target
1 overridden configuration files found.
--------------
systemctl dump:
--------------
-> Unit apache2.service:
Description: LSB: Start/stop apache2 web server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: apache2.service
Source Path: /etc/init.d/apache2
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: local-fs.target
After: remote-fs.target
After: network.target
After: syslog.target
After: nss-lookup.target
After: systemd-journald.socket
After: basic.target
References: local-fs.target
References: remote-fs.target
References: network.target
References: syslog.target
References: nss-lookup.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/apache2.service
ControlGroup: name=systemd:/system/apache2.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/apache2 start
-> ExecReload:
Command Line: /etc/init.d/apache2 reload
-> ExecStop:
Command Line: /etc/init.d/apache2 stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 2
SysVRunLevels: 2345
-> Unit rsyslog.service:
Description: System Logging Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 13:22:13 CET
Active Enter Timestamp: Wed 2014-02-05 13:22:13 CET
Active Exit Timestamp: Wed 2014-02-05 13:22:13 CET
Inactive Enter Timestamp: Wed 2014-02-05 13:22:13 CET
GC Check Good: yes
Need Daemon Reload: no
Name: syslog.service
Name: rsyslog.service
Fragment Path: /lib/systemd/system/rsyslog.service
Condition Timestamp: Wed 2014-02-05 13:22:13 CET
Condition Result: yes
Requires: syslog.socket
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: syslog.socket
After: basic.target
TriggeredBy: syslog.socket
References: syslog.socket
References: basic.target
References: shutdown.target
ReferencedBy: syslog.socket
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/rsyslog.service
ControlGroup: name=systemd:/system/rsyslog.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: no
NotifyAccess: main
Main PID: 8117
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: null
StandardError: inherit
-> ExecStart:
Command Line: /usr/sbin/rsyslogd -n
-> Unit transmission-daemon.service:
Description: Transmission BitTorrent Daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 14:42:21 CET
Active Enter Timestamp: Wed 2014-02-05 14:42:22 CET
Active Exit Timestamp: Wed 2014-02-05 14:41:43 CET
Inactive Enter Timestamp: Wed 2014-02-05 14:41:43 CET
GC Check Good: yes
Need Daemon Reload: no
Name: transmission-daemon.service
Fragment Path: /etc/systemd/system/transmission-daemon.service
Condition Timestamp: Wed 2014-02-05 14:42:21 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: network.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/transmission-daemon.service
ControlGroup: name=systemd:/system/transmission-daemon.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: on-abort
NotifyAccess: main
Main PID: 12640
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: torrents
-> ExecStart:
Command Line: /usr/bin/transmission-daemon -f --log-error --config-dir /storage/torrents/.config/transmission-daemon/
Status Text: Uploading 0.66 KBps, Downloading 0.60 KBps.
-> Unit nmbd.service:
Description: LSB: start Samba NetBIOS nameserver (nmbd)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 14:47:42 CET
Active Enter Timestamp: Wed 2014-02-05 14:47:42 CET
Active Exit Timestamp: Wed 2014-02-05 14:47:41 CET
Inactive Enter Timestamp: Wed 2014-02-05 14:47:42 CET
GC Check Good: yes
Need Daemon Reload: no
Name: nmbd.service
Source Path: /etc/init.d/nmbd
Condition Timestamp: Wed 2014-02-05 14:47:42 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: samba.service
Before: smbd.service
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: network.target
After: local-fs.target
After: remote-fs.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: local-fs.target
References: remote-fs.target
References: smbd.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: samba.service
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/nmbd.service
ControlGroup: name=systemd:/system/nmbd.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/nmbd start
-> ExecStop:
Command Line: /etc/init.d/nmbd stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 1
SysVRunLevels: 2345
-> Unit monit.service:
Description: LSB: service and resource monitoring daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: monit.service
Source Path: /etc/init.d/monit
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: remote-fs.target
After: all.target
After: systemd-journald.socket
After: basic.target
References: remote-fs.target
References: all.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/monit.service
ControlGroup: name=systemd:/system/monit.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/monit start
-> ExecReload:
Command Line: /etc/init.d/monit reload
-> ExecStop:
Command Line: /etc/init.d/monit stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 7
SysVRunLevels: 2345
-> Unit openvpn.service:
Description: LSB: Openvpn VPN service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: openvpn.service
Source Path: /etc/init.d/openvpn
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: x-display-manager.target
Before: gdm.service
Before: kdm.service
Before: xdm.service
Before: wdm.service
Before: ldm.service
Before: sdm.service
Before: nodm.service
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: network.target
After: remote-fs.target
After: syslog.target
After: network-manager.service
After: systemd-journald.socket
After: basic.target
References: network.target
References: remote-fs.target
References: syslog.target
References: network-manager.service
References: x-display-manager.target
References: gdm.service
References: kdm.service
References: xdm.service
References: wdm.service
References: ldm.service
References: sdm.service
References: nodm.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/openvpn.service
ControlGroup: name=systemd:/system/openvpn.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/openvpn start
-> ExecReload:
Command Line: /etc/init.d/openvpn reload
-> ExecStop:
Command Line: /etc/init.d/openvpn stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 3
SysVRunLevels: 2345
-> Unit smbd.service:
Description: LSB: start Samba SMB/CIFS daemon (smbd)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 14:55:21 CET
Active Enter Timestamp: Wed 2014-02-05 14:55:22 CET
Active Exit Timestamp: Wed 2014-02-05 14:55:20 CET
Inactive Enter Timestamp: Wed 2014-02-05 14:55:21 CET
GC Check Good: yes
Need Daemon Reload: no
Name: smbd.service
Source Path: /etc/init.d/smbd
Condition Timestamp: Wed 2014-02-05 14:55:21 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: samba.service
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: network.target
After: local-fs.target
After: remote-fs.target
After: slapd.service
After: cups.service
After: systemd-journald.socket
After: basic.target
After: nmbd.service
References: network.target
References: local-fs.target
References: remote-fs.target
References: slapd.service
References: cups.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: samba.service
ReferencedBy: nmbd.service
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/smbd.service
ControlGroup: name=systemd:/system/smbd.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/smbd start
-> ExecReload:
Command Line: /etc/init.d/smbd reload
-> ExecStop:
Command Line: /etc/init.d/smbd stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit knot.service:
Description: LSB: authoritative domain name server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: knot.service
Source Path: /etc/init.d/knot
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: network.target
After: local-fs.target
After: remote-fs.target
After: syslog.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: local-fs.target
References: remote-fs.target
References: syslog.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/knot.service
ControlGroup: name=systemd:/system/knot.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/knot start
-> ExecReload:
Command Line: /etc/init.d/knot reload
-> ExecStop:
Command Line: /etc/init.d/knot stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit samba.service:
Description: LSB: ensure Samba daemons are started (nmbd and smbd)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:47 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:48 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: samba.service
Source Path: /etc/init.d/samba
Condition Timestamp: Wed 2014-02-05 12:22:47 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: smbd.service
After: nmbd.service
After: systemd-journald.socket
After: basic.target
References: smbd.service
References: nmbd.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/samba.service
ControlGroup: name=systemd:/system/samba.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/samba start
-> ExecReload:
Command Line: /etc/init.d/samba reload
-> ExecStop:
Command Line: /etc/init.d/samba stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 5
-> Unit fail2ban.service:
Description: LSB: Start/stop fail2ban
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Thu 2014-02-06 11:04:59 CET
Active Enter Timestamp: Thu 2014-02-06 11:04:59 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: fail2ban.service
Source Path: /etc/init.d/fail2ban
Condition Timestamp: Thu 2014-02-06 11:04:59 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: local-fs.target
After: remote-fs.target
After: time-sync.target
After: network.target
After: syslog.target
After: iptables.service
After: firehol.service
After: shorewall.service
After: ipmasq.service
After: arno-iptables-firewall.service
After: iptables-persistent.service
After: ferm.service
After: systemd-journald.socket
After: basic.target
References: local-fs.target
References: remote-fs.target
References: time-sync.target
References: network.target
References: syslog.target
References: iptables.service
References: firehol.service
References: shorewall.service
References: ipmasq.service
References: arno-iptables-firewall.service
References: iptables-persistent.service
References: ferm.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/fail2ban.service
ControlGroup: name=systemd:/system/fail2ban.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/fail2ban start
-> ExecStop:
Command Line: /etc/init.d/fail2ban stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit nginx.service:
Description: A high performance web server and a reverse proxy server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:23:18 CET
Active Enter Timestamp: Wed 2014-02-05 12:23:18 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: nginx.service
Fragment Path: /lib/systemd/system/nginx.service
Condition Timestamp: Wed 2014-02-05 12:23:18 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: network.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/nginx.service
ControlGroup: name=systemd:/system/nginx.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
Main PID: 9688
Main PID Known: yes
Main PID Alien: no
PIDFile: /run/nginx.pid
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStartPre:
Command Line: /usr/sbin/nginx -t -q -g 'daemon on; master_process on;'
-> ExecStart:
Command Line: /usr/sbin/nginx -g 'daemon on; master_process on;'
-> ExecReload:
Command Line: /usr/sbin/nginx -g 'daemon on; master_process on;' -s reload
-> ExecStop:
Command Line: /usr/sbin/nginx -s quit
-> Unit postfix.service:
Description: LSB: start and stop the Postfix Mail Transport Agent
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:52 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:54 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: postfix.service
Name: mail-transport-agent.service
Source Path: /etc/init.d/postfix
Condition Timestamp: Wed 2014-02-05 12:22:52 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: local-fs.target
After: remote-fs.target
After: syslog.target
After: nss-lookup.target
After: network.target
After: time-sync.target
After: postgresql.service
After: mysql.service
After: clamav-daemon.service
After: postgrey.service
After: spamassassin.service
After: saslauthd.service
After: dovecot.service
After: systemd-journald.socket
After: basic.target
References: local-fs.target
References: remote-fs.target
References: syslog.target
References: nss-lookup.target
References: network.target
References: time-sync.target
References: postgresql.service
References: mysql.service
References: clamav-daemon.service
References: postgrey.service
References: spamassassin.service
References: saslauthd.service
References: dovecot.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/postfix.service
ControlGroup: name=systemd:/system/postfix.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/postfix start
-> ExecReload:
Command Line: /etc/init.d/postfix reload
-> ExecStop:
Command Line: /etc/init.d/postfix stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 5
SysVRunLevels: 2345
-> Unit mysql.service:
Description: LSB: Start and stop the mysql database server daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:48 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: mysql.service
Source Path: /etc/init.d/mysql
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: postfix.service
Before: multi-user.target
Before: graphical.target
After: remote-fs.target
After: syslog.target
After: network.target
After: time-sync.target
After: systemd-journald.socket
After: basic.target
References: remote-fs.target
References: syslog.target
References: network.target
References: time-sync.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: postfix.service
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/mysql.service
ControlGroup: name=systemd:/system/mysql.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/mysql start
-> ExecReload:
Command Line: /etc/init.d/mysql reload
-> ExecStop:
Command Line: /etc/init.d/mysql stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit samba-ad-dc.service:
Description: LSB: start Samba daemons for the AD DC
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 14:47:45 CET
Active Enter Timestamp: Wed 2014-02-05 14:47:45 CET
Active Exit Timestamp: Wed 2014-02-05 14:47:44 CET
Inactive Enter Timestamp: Wed 2014-02-05 14:47:45 CET
GC Check Good: yes
Need Daemon Reload: no
Name: samba-ad-dc.service
Source Path: /etc/init.d/samba-ad-dc
Condition Timestamp: Wed 2014-02-05 14:47:45 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: network.target
After: local-fs.target
After: remote-fs.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: local-fs.target
References: remote-fs.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/samba-ad-dc.service
ControlGroup: name=systemd:/system/samba-ad-dc.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/samba-ad-dc start
-> ExecStop:
Command Line: /etc/init.d/samba-ad-dc stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 1
SysVRunLevels: 2345
-> Unit bootlogs.service:
Description: LSB: Log file handling to be done during bootup.
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: bootlogs.service
Source Path: /etc/init.d/bootlogs
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: rescue.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: rescue.target
Before: multi-user.target
Before: graphical.target
After: hostname.service
After: local-fs.target
After: x-display-manager.target
After: gdm.service
After: kdm.service
After: xdm.service
After: ldm.service
After: sdm.service
After: wdm.service
After: nodm.service
After: systemd-journald.socket
After: basic.target
References: hostname.service
References: local-fs.target
References: x-display-manager.target
References: gdm.service
References: kdm.service
References: xdm.service
References: ldm.service
References: sdm.service
References: wdm.service
References: nodm.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: rescue.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/bootlogs.service
ControlGroup: name=systemd:/system/bootlogs.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/bootlogs start
-> ExecStop:
Command Line: /etc/init.d/bootlogs stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 6
SysVRunLevels: 12345
-> Unit motd.service:
Description: LSB: Create dynamic part of /etc/motd
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: motd.service
Source Path: /etc/init.d/motd
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: rescue.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: rescue.target
Before: multi-user.target
Before: graphical.target
After: hostname.service
After: local-fs.target
After: systemd-journald.socket
After: basic.target
References: hostname.service
References: local-fs.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: rescue.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/motd.service
ControlGroup: name=systemd:/system/motd.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/motd start
-> ExecStop:
Command Line: /etc/init.d/motd stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 1
SysVRunLevels: 12345
-> Unit postgresql.service:
Description: LSB: PostgreSQL RDBMS server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:52 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: postgresql.service
Source Path: /etc/init.d/postgresql
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: postfix.service
Before: multi-user.target
Before: graphical.target
After: local-fs.target
After: remote-fs.target
After: network.target
After: time-sync.target
After: syslog.target
After: systemd-journald.socket
After: basic.target
References: local-fs.target
References: remote-fs.target
References: network.target
References: time-sync.target
References: syslog.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: postfix.service
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/postgresql.service
ControlGroup: name=systemd:/system/postgresql.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/postgresql start
-> ExecReload:
Command Line: /etc/init.d/postgresql reload
-> ExecStop:
Command Line: /etc/init.d/postgresql stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit denyhosts.service:
Description: LSB: Start/stop denyhosts
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:46 CET
Active Exit Timestamp: Thu 2014-02-06 11:11:17 CET
Inactive Enter Timestamp: Thu 2014-02-06 11:11:17 CET
GC Check Good: yes
Need Daemon Reload: no
Name: denyhosts.service
Source Path: /etc/init.d/denyhosts
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: syslog.target
After: local-fs.target
After: remote-fs.target
After: time-sync.target
After: network.target
After: systemd-journald.socket
After: basic.target
References: syslog.target
References: local-fs.target
References: remote-fs.target
References: time-sync.target
References: network.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/denyhosts.service
ControlGroup: name=systemd:/system/denyhosts.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/denyhosts start
-> ExecStop:
Command Line: /etc/init.d/denyhosts stop
PID: 4707
Start Timestamp: Thu 2014-02-06 11:11:17 CET
Exit Timestamp: Thu 2014-02-06 11:11:17 CET
Exit Code: exited
Exit Status: 0
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit atd.service:
Description: Deferred execution scheduler
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: atd.service
Fragment Path: /lib/systemd/system/atd.service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/atd.service
ControlGroup: name=systemd:/system/atd.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
Main PID: 626
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /usr/sbin/atd -f
-> Unit acpid.service:
Description: ACPI event daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: acpid.service
Fragment Path: /lib/systemd/system/acpid.service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: acpid.socket
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: acpid.socket
After: basic.target
TriggeredBy: acpid.socket
References: acpid.socket
References: basic.target
References: shutdown.target
ReferencedBy: acpid.socket
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/acpid.service
ControlGroup: name=systemd:/system/acpid.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
Main PID: 627
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: socket
StandardOutput: inherit
StandardError: inherit
-> ExecStart:
Command Line: /usr/sbin/acpid
-> Unit ntp.service:
Description: LSB: Start NTP daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: ntp.service
Source Path: /etc/init.d/ntp
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: network.target
After: remote-fs.target
After: syslog.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: remote-fs.target
References: syslog.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/ntp.service
ControlGroup: name=systemd:/system/ntp.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/ntp start
-> ExecStop:
Command Line: /etc/init.d/ntp stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit dbus.service:
Description: D-Bus System Message Bus
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dbus.service
Fragment Path: /lib/systemd/system/dbus.service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: dbus.socket
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: dbus.socket
After: systemd-journald.socket
After: basic.target
TriggeredBy: dbus.socket
References: dbus.socket
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: dbus.socket
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/dbus.service
ControlGroup: name=systemd:/system/dbus.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
Main PID: 654
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
OOMScoreAdjust: -900
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
-> ExecReload:
Command Line: /usr/bin/dbus-send --print-reply --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig
-> Unit ssh.service:
Description: LSB: OpenBSD Secure Shell server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:48 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:48 CET
Active Exit Timestamp: Wed 2014-02-05 12:22:48 CET
Inactive Enter Timestamp: Wed 2014-02-05 12:22:48 CET
GC Check Good: yes
Need Daemon Reload: no
Name: ssh.service
Name: sshd.service
Source Path: /etc/init.d/ssh
Condition Timestamp: Wed 2014-02-05 12:22:48 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: remote-fs.target
After: syslog.target
After: systemd-journald.socket
After: basic.target
References: remote-fs.target
References: syslog.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/ssh.service
ControlGroup: name=systemd:/system/ssh.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/ssh start
-> ExecReload:
Command Line: /etc/init.d/ssh reload
-> ExecStop:
Command Line: /etc/init.d/ssh stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit cron.service:
Description: LSB: Regular background program processing daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: cron.service
Source Path: /etc/init.d/cron
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: remote-fs.target
After: syslog.target
After: time-sync.target
After: network.target
After: nss-lookup.target
After: slapd.service
After: autofs.service
After: ypbind.service
After: nscd.service
After: nslcd.service
After: systemd-journald.socket
After: basic.target
References: remote-fs.target
References: syslog.target
References: time-sync.target
References: network.target
References: nss-lookup.target
References: slapd.service
References: autofs.service
References: ypbind.service
References: nscd.service
References: nslcd.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/cron.service
ControlGroup: name=systemd:/system/cron.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/cron start
-> ExecReload:
Command Line: /etc/init.d/cron reload
-> ExecStop:
Command Line: /etc/init.d/cron stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit php5-fpm.service:
Description: The PHP FastCGI Process Manager
Instance: n/a
Unit Load State: loaded
Unit Active State: activating
Inactive Exit Timestamp: Thu 2014-02-06 11:12:18 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Thu 2014-02-06 11:10:09 CET
GC Check Good: yes
Need Daemon Reload: no
Name: php5-fpm.service
Fragment Path: /lib/systemd/system/php5-fpm.service
Condition Timestamp: Thu 2014-02-06 11:12:18 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: network.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/php5-fpm.service
ControlGroup: name=systemd:/system/php5-fpm.service
Service State: start
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: no
NotifyAccess: main
Main PID: 4524
Main PID Known: yes
Main PID Alien: no
PIDFile: /var/run/php5-fpm.pid
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStartPre:
Command Line: /usr/lib/php5/php5-fpm-checkconf
PID: 4953
Start Timestamp: Thu 2014-02-06 11:12:18 CET
Exit Timestamp: Thu 2014-02-06 11:12:18 CET
Exit Code: exited
Exit Status: 0
-> ExecStart:
Command Line: /usr/sbin/php5-fpm --nodaemonize --fpm-config /etc/php5/fpm/php-fpm.conf
PID: 4959
Start Timestamp: Thu 2014-02-06 11:12:18 CET
-> ExecReload:
Command Line: /bin/kill -USR2 $MAINPID
-> Job 3790:
Action: php5-fpm.service -> start
State: running
Forced: yes
Irreversible: no
-> Unit sysstat.service:
Description: LSB: Start/stop sysstat's sadc
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sysstat.service
Source Path: /etc/init.d/sysstat
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
WantedBy: graphical.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: graphical.target
After: remote-fs.target
After: local-fs.target
After: syslog.target
After: systemd-journald.socket
After: basic.target
References: remote-fs.target
References: local-fs.target
References: syslog.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: graphical.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/sysstat.service
ControlGroup: name=systemd:/system/sysstat.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/sysstat start
-> ExecReload:
Command Line: /etc/init.d/sysstat reload
-> ExecStop:
Command Line: /etc/init.d/sysstat stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 4
SysVRunLevels: 2345
-> Unit sudo.service:
Description: Provide limited super user privileges to specific users
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:22:44 CET
GC Check Good: no
Need Daemon Reload: no
Name: sudo.service
Fragment Path: /lib/systemd/system/sudo.service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/sudo.service
ControlGroup: name=systemd:/system/sudo.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /usr/bin/find /var/lib/sudo -exec /usr/bin/touch -d @0 {} ;
-> Unit rsync.service:
Description: fast remote file copy program daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: rsync.service
Fragment Path: /lib/systemd/system/rsync.service
ConditionPathExists: /etc/rsyncd.conf
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/rsync.service
ControlGroup: name=systemd:/system/rsync.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
Main PID: 644
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /usr/bin/rsync --daemon --no-detach
-> Unit console-setup.service:
Description: LSB: Set console font and keymap
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: console-setup.service
Source Path: /etc/init.d/console-setup
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
WantedBy: sysinit.target
Before: sysinit.target
After: remote-fs.target
After: console-screen.service
After: kbd.service
After: systemd-journald.socket
References: remote-fs.target
References: console-screen.service
References: kbd.service
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/console-setup.service
ControlGroup: name=systemd:/system/console-setup.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/console-setup start
-> ExecReload:
Command Line: /etc/init.d/console-setup reload
-> ExecStop:
Command Line: /etc/init.d/console-setup stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 18
SysVRunLevels: S
-> Unit mountkernfs.service:
Description: mountkernfs.service
Instance: n/a
Unit Load State: masked
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: mountkernfs.service
Fragment Path: /dev/null
Before: networking.service
Before: keyboard-setup.service
ReferencedBy: networking.service
ReferencedBy: keyboard-setup.service
-> Unit hostname.service:
Description: hostname.service
Instance: n/a
Unit Load State: masked
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: hostname.service
Fragment Path: /dev/null
Before: motd.service
Before: bootlogs.service
ReferencedBy: motd.service
ReferencedBy: bootlogs.service
-> Unit kbd.service:
Description: LSB: Prepare console
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: kbd.service
Source Path: /etc/init.d/kbd
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
WantedBy: sysinit.target
Before: console-setup.service
Before: sysinit.target
After: remote-fs.target
After: systemd-journald.socket
References: remote-fs.target
References: systemd-journald.socket
ReferencedBy: console-setup.service
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/kbd.service
ControlGroup: name=systemd:/system/kbd.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/kbd start
-> ExecStop:
Command Line: /etc/init.d/kbd stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 17
SysVRunLevels: S
-> Unit keyboard-setup.service:
Description: LSB: Set preliminary keymap
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:20 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: keyboard-setup.service
Source Path: /etc/init.d/keyboard-setup
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
WantedBy: sysinit.target
Before: systemd-remount-fs.service
Before: sysinit.target
After: mountkernfs.service
After: keymap.service
After: systemd-udevd.service
After: systemd-journald.socket
References: mountkernfs.service
References: keymap.service
References: systemd-udevd.service
References: systemd-remount-fs.service
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/keyboard-setup.service
ControlGroup: name=systemd:/system/keyboard-setup.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/keyboard-setup start
-> ExecReload:
Command Line: /etc/init.d/keyboard-setup reload
-> ExecStop:
Command Line: /etc/init.d/keyboard-setup stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 3
SysVRunLevels: S
-> Unit networking.service:
Description: LSB: Raise network interfaces.
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: networking.service
Name: ifupdown.service
Source Path: /etc/init.d/networking
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
WantedBy: sysinit.target
Conflicts: shutdown.target
Before: sysinit.target
Before: shutdown.target
After: mountkernfs.service
After: local-fs.target
After: systemd-random-seed-load.service
After: systemd-journald.socket
References: mountkernfs.service
References: local-fs.target
References: systemd-random-seed-load.service
References: systemd-journald.socket
References: shutdown.target
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/networking.service
ControlGroup: name=systemd:/system/networking.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/networking start
-> ExecReload:
Command Line: /etc/init.d/networking reload
-> ExecStop:
Command Line: /etc/init.d/networking stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 14
SysVRunLevels: S
-> Unit screen-cleanup.service:
Description: LSB: screen sessions cleaning
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: screen-cleanup.service
Source Path: /etc/init.d/screen-cleanup
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
WantedBy: sysinit.target
Before: sysinit.target
After: remote-fs.target
After: systemd-journald.socket
References: remote-fs.target
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/screen-cleanup.service
ControlGroup: name=systemd:/system/screen-cleanup.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/screen-cleanup start
-> ExecStop:
Command Line: /etc/init.d/screen-cleanup stop
SysV Init Script has LSB Header: yes
SysVEnabled: yes
SysVStartPriority: 19
SysVRunLevels: S
-> Unit halt.service:
Description: LSB: Execute the halt command.
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: halt.service
Source Path: /etc/init.d/halt
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/halt.service
ControlGroup: name=systemd:/system/halt.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/halt start
-> ExecStop:
Command Line: /etc/init.d/halt stop
SysV Init Script has LSB Header: yes
SysVEnabled: no
-> Unit umountroot.service:
Description: LSB: Mount the root filesystem read-only.
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: umountroot.service
Source Path: /etc/init.d/umountroot
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/umountroot.service
ControlGroup: name=systemd:/system/umountroot.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/umountroot start
-> ExecStop:
Command Line: /etc/init.d/umountroot stop
SysV Init Script has LSB Header: yes
SysVEnabled: no
-> Unit umountnfs.service:
Description: LSB: Unmount all network filesystems except the root fs.
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: umountnfs.service
Source Path: /etc/init.d/umountnfs.sh
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/umountnfs.service
ControlGroup: name=systemd:/system/umountnfs.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/umountnfs.sh start
-> ExecStop:
Command Line: /etc/init.d/umountnfs.sh stop
SysV Init Script has LSB Header: yes
SysVEnabled: no
-> Unit umountfs.service:
Description: LSB: Turn off swap and unmount all local file systems.
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: umountfs.service
Source Path: /etc/init.d/umountfs
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/umountfs.service
ControlGroup: name=systemd:/system/umountfs.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/umountfs start
-> ExecStop:
Command Line: /etc/init.d/umountfs stop
SysV Init Script has LSB Header: yes
SysVEnabled: no
-> Unit sendsigs.service:
Description: LSB: Kill all remaining processes.
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sendsigs.service
Source Path: /etc/init.d/sendsigs
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/sendsigs.service
ControlGroup: name=systemd:/system/sendsigs.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/sendsigs start
-> ExecStop:
Command Line: /etc/init.d/sendsigs stop
SysV Init Script has LSB Header: yes
SysVEnabled: no
-> Unit reboot.service:
Description: LSB: Execute the reboot command.
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: reboot.service
Source Path: /etc/init.d/reboot
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-journald.socket
After: basic.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/reboot.service
ControlGroup: name=systemd:/system/reboot.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/init.d/reboot start
-> ExecStop:
Command Line: /etc/init.d/reboot stop
SysV Init Script has LSB Header: yes
SysVEnabled: no
-> Unit systemd-journald.socket:
Description: Journal Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-journald.socket
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journald.socket
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
RequiredBy: systemd-journald.service
WantedBy: sockets.target
Before: reboot.service
Before: systemd-update-utmp-shutdown.service
Before: systemd-update-utmp-runlevel.service
Before: sys-fs-fuse-connections.mount
Before: systemd-journal-flush.service
Before: systemd-user-sessions.service
Before: dev-mqueue.mount
Before: systemd-udev-trigger.service
Before: systemd-shutdownd.service
Before: systemd-initctl.service
Before: systemd-modules-load.service
Before: systemd-readahead-done.service
Before: systemd-journald.service
Before: sys-kernel-config.mount
Before: dev-hugepages.mount
Before: systemd-sysctl.service
Before: systemd-tmpfiles-setup-dev.service
Before: debian-fixup.service
Before: sys-kernel-debug.mount
Before: systemd-random-seed-load.service
Before: systemd-udevd.service
Before: systemd-cryptsetup at storage.service
Before: storage.mount
Before: systemd-fsck at dev-mapper-storage.service
Before: systemd-ask-password-console.service
Before: systemd-binfmt.service
Before: proc-sys-fs-binfmt_misc.mount
Before: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
Before: systemd-fsck-root.service
Before: run-user.mount
Before: run-lock.mount
Before: home.mount
Before: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Before: var.mount
Before: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
Before: var-lib-transmission\x2ddaemon.mount
Before: getty at tty1.service
Before: systemd-ask-password-wall.service
Before: systemd-logind.service
Before: rc-local.service
Before: systemd-tmpfiles-setup.service
Before: systemd-remount-fs.service
Before: systemd-random-seed-save.service
Before: systemd-tmpfiles-clean.service
Before: sockets.target
Before: syslog.target
Before: sendsigs.service
Before: umountfs.service
Before: umountnfs.service
Before: umountroot.service
Before: halt.service
Before: screen-cleanup.service
Before: networking.service
Before: keyboard-setup.service
Before: kbd.service
Before: console-setup.service
Before: rsync.service
Before: sudo.service
Before: sysstat.service
Before: php5-fpm.service
Before: cron.service
Before: ssh.service
Before: dbus.service
Before: ntp.service
Before: atd.service
Before: denyhosts.service
Before: postgresql.service
Before: motd.service
Before: bootlogs.service
Before: samba-ad-dc.service
Before: mysql.service
Before: postfix.service
Before: nginx.service
Before: fail2ban.service
Before: samba.service
Before: knot.service
Before: smbd.service
Before: openvpn.service
Before: monit.service
Before: nmbd.service
Before: transmission-daemon.service
Before: apache2.service
Before: dev-vda5.swap
Before: ifup at eth0.service
Before: ifup at tun0.service
Before: transmission-daemon-private.service
After: -.mount
Triggers: systemd-journald.service
References: sockets.target
References: syslog.target
References: systemd-journald.service
References: -.mount
ReferencedBy: reboot.service
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: systemd-update-utmp-runlevel.service
ReferencedBy: sys-fs-fuse-connections.mount
ReferencedBy: systemd-journal-flush.service
ReferencedBy: systemd-user-sessions.service
ReferencedBy: dev-mqueue.mount
ReferencedBy: systemd-udev-trigger.service
ReferencedBy: sockets.target
ReferencedBy: systemd-shutdownd.service
ReferencedBy: systemd-initctl.service
ReferencedBy: systemd-modules-load.service
ReferencedBy: systemd-readahead-done.service
ReferencedBy: systemd-journald.service
ReferencedBy: sys-kernel-config.mount
ReferencedBy: dev-hugepages.mount
ReferencedBy: systemd-sysctl.service
ReferencedBy: systemd-tmpfiles-setup-dev.service
ReferencedBy: debian-fixup.service
ReferencedBy: sys-kernel-debug.mount
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: systemd-udevd.service
ReferencedBy: systemd-cryptsetup at storage.service
ReferencedBy: storage.mount
ReferencedBy: systemd-fsck at dev-mapper-storage.service
ReferencedBy: systemd-ask-password-console.service
ReferencedBy: systemd-binfmt.service
ReferencedBy: proc-sys-fs-binfmt_misc.mount
ReferencedBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
ReferencedBy: systemd-fsck-root.service
ReferencedBy: run-user.mount
ReferencedBy: run-lock.mount
ReferencedBy: home.mount
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
ReferencedBy: var.mount
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
ReferencedBy: var-lib-transmission\x2ddaemon.mount
ReferencedBy: getty at tty1.service
ReferencedBy: systemd-ask-password-wall.service
ReferencedBy: systemd-logind.service
ReferencedBy: rc-local.service
ReferencedBy: systemd-tmpfiles-setup.service
ReferencedBy: systemd-remount-fs.service
ReferencedBy: systemd-random-seed-save.service
ReferencedBy: systemd-tmpfiles-clean.service
ReferencedBy: sendsigs.service
ReferencedBy: umountfs.service
ReferencedBy: umountnfs.service
ReferencedBy: umountroot.service
ReferencedBy: halt.service
ReferencedBy: screen-cleanup.service
ReferencedBy: networking.service
ReferencedBy: keyboard-setup.service
ReferencedBy: kbd.service
ReferencedBy: console-setup.service
ReferencedBy: rsync.service
ReferencedBy: sudo.service
ReferencedBy: sysstat.service
ReferencedBy: php5-fpm.service
ReferencedBy: cron.service
ReferencedBy: ssh.service
ReferencedBy: dbus.service
ReferencedBy: ntp.service
ReferencedBy: atd.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: motd.service
ReferencedBy: bootlogs.service
ReferencedBy: samba-ad-dc.service
ReferencedBy: mysql.service
ReferencedBy: postfix.service
ReferencedBy: nginx.service
ReferencedBy: fail2ban.service
ReferencedBy: samba.service
ReferencedBy: knot.service
ReferencedBy: smbd.service
ReferencedBy: openvpn.service
ReferencedBy: monit.service
ReferencedBy: nmbd.service
ReferencedBy: transmission-daemon.service
ReferencedBy: apache2.service
ReferencedBy: dev-vda5.swap
ReferencedBy: ifup at eth0.service
ReferencedBy: ifup at tun0.service
ReferencedBy: transmission-daemon-private.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-journald.socket
ControlGroup: name=systemd:/system/systemd-journald.socket
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: yes
TCPCongestion: n/a
ReceiveBuffer: 8388608
ListenStream: /run/systemd/journal/stdout
ListenDatagram: /run/systemd/journal/socket
ListenDatagram: /dev/log
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit basic.target:
Description: Basic System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: basic.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/basic.target
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: sysinit.target
Wants: sockets.target
Wants: timers.target
Wants: paths.target
RequiredBy: reboot.service
RequiredBy: systemd-user-sessions.service
RequiredBy: rsyslog.service
RequiredBy: multi-user.target
RequiredBy: getty at tty1.service
RequiredBy: systemd-ask-password-wall.service
RequiredBy: systemd-logind.service
RequiredBy: rc-local.service
RequiredBy: sendsigs.service
RequiredBy: umountfs.service
RequiredBy: umountnfs.service
RequiredBy: umountroot.service
RequiredBy: halt.service
RequiredBy: rsync.service
RequiredBy: sudo.service
RequiredBy: sysstat.service
RequiredBy: php5-fpm.service
RequiredBy: cron.service
RequiredBy: ssh.service
RequiredBy: dbus.service
RequiredBy: ntp.service
RequiredBy: acpid.service
RequiredBy: atd.service
RequiredBy: denyhosts.service
RequiredBy: postgresql.service
RequiredBy: motd.service
RequiredBy: bootlogs.service
RequiredBy: samba-ad-dc.service
RequiredBy: mysql.service
RequiredBy: postfix.service
RequiredBy: nginx.service
RequiredBy: fail2ban.service
RequiredBy: samba.service
RequiredBy: knot.service
RequiredBy: smbd.service
RequiredBy: openvpn.service
RequiredBy: monit.service
RequiredBy: nmbd.service
RequiredBy: transmission-daemon.service
RequiredBy: apache2.service
RequiredBy: ifup at eth0.service
RequiredBy: ifup at tun0.service
RequiredBy: transmission-daemon-private.service
Conflicts: shutdown.target
Before: reboot.service
Before: systemd-user-sessions.service
Before: rsyslog.service
Before: multi-user.target
Before: getty at tty1.service
Before: systemd-ask-password-wall.service
Before: systemd-logind.service
Before: rc-local.service
Before: sendsigs.service
Before: umountfs.service
Before: umountnfs.service
Before: umountroot.service
Before: halt.service
Before: rsync.service
Before: sudo.service
Before: sysstat.service
Before: php5-fpm.service
Before: cron.service
Before: ssh.service
Before: dbus.service
Before: ntp.service
Before: acpid.service
Before: atd.service
Before: denyhosts.service
Before: postgresql.service
Before: motd.service
Before: bootlogs.service
Before: samba-ad-dc.service
Before: mysql.service
Before: postfix.service
Before: nginx.service
Before: fail2ban.service
Before: samba.service
Before: knot.service
Before: smbd.service
Before: openvpn.service
Before: monit.service
Before: nmbd.service
Before: transmission-daemon.service
Before: apache2.service
Before: ifup at eth0.service
Before: ifup at tun0.service
Before: transmission-daemon-private.service
After: sysinit.target
After: sockets.target
After: timers.target
After: paths.target
References: sysinit.target
References: sockets.target
References: timers.target
References: paths.target
References: shutdown.target
ReferencedBy: reboot.service
ReferencedBy: systemd-user-sessions.service
ReferencedBy: rsyslog.service
ReferencedBy: multi-user.target
ReferencedBy: getty at tty1.service
ReferencedBy: systemd-ask-password-wall.service
ReferencedBy: systemd-logind.service
ReferencedBy: rc-local.service
ReferencedBy: sendsigs.service
ReferencedBy: umountfs.service
ReferencedBy: umountnfs.service
ReferencedBy: umountroot.service
ReferencedBy: halt.service
ReferencedBy: rsync.service
ReferencedBy: sudo.service
ReferencedBy: sysstat.service
ReferencedBy: php5-fpm.service
ReferencedBy: cron.service
ReferencedBy: ssh.service
ReferencedBy: dbus.service
ReferencedBy: ntp.service
ReferencedBy: acpid.service
ReferencedBy: atd.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: motd.service
ReferencedBy: bootlogs.service
ReferencedBy: samba-ad-dc.service
ReferencedBy: mysql.service
ReferencedBy: postfix.service
ReferencedBy: nginx.service
ReferencedBy: fail2ban.service
ReferencedBy: samba.service
ReferencedBy: knot.service
ReferencedBy: smbd.service
ReferencedBy: openvpn.service
ReferencedBy: monit.service
ReferencedBy: nmbd.service
ReferencedBy: transmission-daemon.service
ReferencedBy: apache2.service
ReferencedBy: ifup at eth0.service
ReferencedBy: ifup at tun0.service
ReferencedBy: transmission-daemon-private.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit shutdown.target:
Description: Shutdown
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: shutdown.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/shutdown.target
Wants: systemd-random-seed-save.service
Wants: systemd-update-utmp-shutdown.service
ConflictedBy: reboot.service
ConflictedBy: graphical.target
ConflictedBy: rescue.target
ConflictedBy: rescue.service
ConflictedBy: sysinit.target
ConflictedBy: systemd-user-sessions.service
ConflictedBy: remote-fs.target
ConflictedBy: remote-fs-pre.target
ConflictedBy: sockets.target
ConflictedBy: dbus.socket
ConflictedBy: acpid.socket
ConflictedBy: systemd-modules-load.service
ConflictedBy: systemd-readahead-replay.service
ConflictedBy: systemd-readahead-collect.service
ConflictedBy: systemd-readahead-done.timer
ConflictedBy: systemd-readahead-done.service
ConflictedBy: syslog.socket
ConflictedBy: rsyslog.service
ConflictedBy: systemd-sysctl.service
ConflictedBy: local-fs-pre.target
ConflictedBy: cryptsetup.target
ConflictedBy: systemd-ask-password-console.path
ConflictedBy: systemd-ask-password-console.service
ConflictedBy: paths.target
ConflictedBy: systemd-binfmt.service
ConflictedBy: swap.target
ConflictedBy: local-fs.target
ConflictedBy: emergency.target
ConflictedBy: emergency.service
ConflictedBy: multi-user.target
ConflictedBy: getty.target
ConflictedBy: getty at tty1.service
ConflictedBy: systemd-ask-password-wall.path
ConflictedBy: systemd-ask-password-wall.service
ConflictedBy: systemd-logind.service
ConflictedBy: nss-user-lookup.target
ConflictedBy: rc-local.service
ConflictedBy: network.target
ConflictedBy: systemd-remount-fs.service
ConflictedBy: basic.target
ConflictedBy: timers.target
ConflictedBy: systemd-tmpfiles-clean.timer
ConflictedBy: sendsigs.service
ConflictedBy: umountfs.service
ConflictedBy: umountnfs.service
ConflictedBy: umountroot.service
ConflictedBy: halt.service
ConflictedBy: rsync.service
ConflictedBy: sudo.service
ConflictedBy: sysstat.service
ConflictedBy: php5-fpm.service
ConflictedBy: cron.service
ConflictedBy: nss-lookup.target
ConflictedBy: time-sync.target
ConflictedBy: ssh.service
ConflictedBy: dbus.service
ConflictedBy: ntp.service
ConflictedBy: acpid.service
ConflictedBy: atd.service
ConflictedBy: denyhosts.service
ConflictedBy: postgresql.service
ConflictedBy: motd.service
ConflictedBy: bootlogs.service
ConflictedBy: samba-ad-dc.service
ConflictedBy: mysql.service
ConflictedBy: postfix.service
ConflictedBy: nginx.service
ConflictedBy: fail2ban.service
ConflictedBy: samba.service
ConflictedBy: knot.service
ConflictedBy: smbd.service
ConflictedBy: openvpn.service
ConflictedBy: monit.service
ConflictedBy: nmbd.service
ConflictedBy: transmission-daemon.service
ConflictedBy: apache2.service
ConflictedBy: networking.service
ConflictedBy: ifup at eth0.service
ConflictedBy: ifup at tun0.service
ConflictedBy: transmission-daemon-private.service
Before: final.target
After: reboot.service
After: rescue.service
After: systemd-user-sessions.service
After: dbus.socket
After: acpid.socket
After: systemd-modules-load.service
After: systemd-readahead-replay.service
After: systemd-readahead-collect.service
After: systemd-readahead-done.timer
After: systemd-readahead-done.service
After: syslog.socket
After: rsyslog.service
After: systemd-sysctl.service
After: systemd-fsck at dev-mapper-storage.service
After: systemd-ask-password-console.path
After: systemd-ask-password-console.service
After: systemd-binfmt.service
After: systemd-fsck-root.service
After: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
After: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
After: emergency.service
After: getty at tty1.service
After: systemd-ask-password-wall.path
After: systemd-ask-password-wall.service
After: systemd-logind.service
After: rc-local.service
After: systemd-tmpfiles-setup.service
After: systemd-remount-fs.service
After: systemd-tmpfiles-clean.timer
After: systemd-tmpfiles-clean.service
After: sendsigs.service
After: umountfs.service
After: umountnfs.service
After: umountroot.service
After: halt.service
After: rsync.service
After: sudo.service
After: sysstat.service
After: php5-fpm.service
After: cron.service
After: ssh.service
After: dbus.service
After: ntp.service
After: acpid.service
After: atd.service
After: denyhosts.service
After: postgresql.service
After: motd.service
After: bootlogs.service
After: samba-ad-dc.service
After: mysql.service
After: postfix.service
After: nginx.service
After: fail2ban.service
After: samba.service
After: knot.service
After: smbd.service
After: openvpn.service
After: monit.service
After: nmbd.service
After: transmission-daemon.service
After: apache2.service
After: networking.service
After: ifup at eth0.service
After: ifup at tun0.service
After: transmission-daemon-private.service
References: systemd-random-seed-save.service
References: systemd-update-utmp-shutdown.service
ReferencedBy: reboot.service
ReferencedBy: final.target
ReferencedBy: graphical.target
ReferencedBy: rescue.target
ReferencedBy: rescue.service
ReferencedBy: sysinit.target
ReferencedBy: systemd-user-sessions.service
ReferencedBy: remote-fs.target
ReferencedBy: remote-fs-pre.target
ReferencedBy: sockets.target
ReferencedBy: dbus.socket
ReferencedBy: acpid.socket
ReferencedBy: systemd-modules-load.service
ReferencedBy: systemd-readahead-replay.service
ReferencedBy: systemd-readahead-collect.service
ReferencedBy: systemd-readahead-done.timer
ReferencedBy: systemd-readahead-done.service
ReferencedBy: syslog.socket
ReferencedBy: rsyslog.service
ReferencedBy: systemd-sysctl.service
ReferencedBy: local-fs-pre.target
ReferencedBy: cryptsetup.target
ReferencedBy: systemd-fsck at dev-mapper-storage.service
ReferencedBy: systemd-ask-password-console.path
ReferencedBy: systemd-ask-password-console.service
ReferencedBy: paths.target
ReferencedBy: systemd-binfmt.service
ReferencedBy: swap.target
ReferencedBy: local-fs.target
ReferencedBy: systemd-fsck-root.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
ReferencedBy: emergency.target
ReferencedBy: emergency.service
ReferencedBy: multi-user.target
ReferencedBy: getty.target
ReferencedBy: getty at tty1.service
ReferencedBy: systemd-ask-password-wall.path
ReferencedBy: systemd-ask-password-wall.service
ReferencedBy: systemd-logind.service
ReferencedBy: nss-user-lookup.target
ReferencedBy: rc-local.service
ReferencedBy: network.target
ReferencedBy: systemd-tmpfiles-setup.service
ReferencedBy: systemd-remount-fs.service
ReferencedBy: basic.target
ReferencedBy: timers.target
ReferencedBy: systemd-tmpfiles-clean.timer
ReferencedBy: systemd-tmpfiles-clean.service
ReferencedBy: sendsigs.service
ReferencedBy: umountfs.service
ReferencedBy: umountnfs.service
ReferencedBy: umountroot.service
ReferencedBy: halt.service
ReferencedBy: rsync.service
ReferencedBy: sudo.service
ReferencedBy: sysstat.service
ReferencedBy: php5-fpm.service
ReferencedBy: cron.service
ReferencedBy: nss-lookup.target
ReferencedBy: time-sync.target
ReferencedBy: ssh.service
ReferencedBy: dbus.service
ReferencedBy: ntp.service
ReferencedBy: acpid.service
ReferencedBy: atd.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: motd.service
ReferencedBy: bootlogs.service
ReferencedBy: samba-ad-dc.service
ReferencedBy: mysql.service
ReferencedBy: postfix.service
ReferencedBy: nginx.service
ReferencedBy: fail2ban.service
ReferencedBy: samba.service
ReferencedBy: knot.service
ReferencedBy: smbd.service
ReferencedBy: openvpn.service
ReferencedBy: monit.service
ReferencedBy: nmbd.service
ReferencedBy: transmission-daemon.service
ReferencedBy: apache2.service
ReferencedBy: networking.service
ReferencedBy: ifup at eth0.service
ReferencedBy: ifup at tun0.service
ReferencedBy: transmission-daemon-private.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit systemd-random-seed-save.service:
Description: Save Random Seed
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-random-seed-save.service
Documentation: man:systemd-random-seed-load.service(8)
Documentation: man:random(4)
Fragment Path: /lib/systemd/system/systemd-random-seed-save.service
Requires: -.mount
Requires: var.mount
WantedBy: shutdown.target
Before: final.target
After: systemd-remount-fs.service
After: systemd-random-seed-load.service
After: systemd-journald.socket
After: -.mount
After: var.mount
References: systemd-remount-fs.service
References: systemd-random-seed-load.service
References: final.target
References: systemd-journald.socket
References: -.mount
References: var.mount
ReferencedBy: shutdown.target
RequiresMountsFor: /var/lib/random-seed
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-random-seed-save.service
ControlGroup: name=systemd:/system/systemd-random-seed-save.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-random-seed save
-> Unit systemd-update-utmp-shutdown.service:
Description: Update UTMP about System Shutdown
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-update-utmp-shutdown.service
Documentation: man:systemd-update-utmp-runlevel.service(8)
Documentation: man:utmp(5)
Fragment Path: /lib/systemd/system/systemd-update-utmp-shutdown.service
Requires: -.mount
Requires: var.mount
WantedBy: shutdown.target
Before: final.target
After: systemd-remount-fs.service
After: systemd-tmpfiles-setup.service
After: auditd.service
After: systemd-update-utmp-runlevel.service
After: systemd-journald.socket
After: -.mount
After: var.mount
References: systemd-remount-fs.service
References: systemd-tmpfiles-setup.service
References: auditd.service
References: systemd-update-utmp-runlevel.service
References: final.target
References: systemd-journald.socket
References: -.mount
References: var.mount
ReferencedBy: shutdown.target
RequiresMountsFor: /var/log/wtmp
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-update-utmp-shutdown.service
ControlGroup: name=systemd:/system/systemd-update-utmp-shutdown.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-update-utmp shutdown
-> Unit systemd-remount-fs.service:
Description: Remount Root and Kernel File Systems
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:20 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:20 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-remount-fs.service
Name: checkroot.service
Documentation: man:systemd-remount-fs.service(8)
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/systemd-remount-fs.service
ConditionPathExists: /etc/fstab
Condition Timestamp: Wed 2014-02-05 12:21:20 CET
Condition Result: yes
Wants: local-fs-pre.target
WantedBy: local-fs.target
Conflicts: shutdown.target
Before: systemd-update-utmp-shutdown.service
Before: systemd-update-utmp-runlevel.service
Before: debian-fixup.service
Before: systemd-random-seed-load.service
Before: local-fs-pre.target
Before: local-fs.target
Before: shutdown.target
Before: systemd-random-seed-save.service
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: systemd-fsck-root.service
After: systemd-journald.socket
After: keyboard-setup.service
References: shutdown.target
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: systemd-fsck-root.service
References: local-fs-pre.target
References: local-fs.target
References: systemd-journald.socket
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: systemd-update-utmp-runlevel.service
ReferencedBy: debian-fixup.service
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: local-fs.target
ReferencedBy: systemd-random-seed-save.service
ReferencedBy: keyboard-setup.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-remount-fs.service
ControlGroup: name=systemd:/system/systemd-remount-fs.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-remount-fs
-> Unit systemd-tmpfiles-setup.service:
Description: Recreate Volatile Files and Directories
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-tmpfiles-setup.service
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-setup.service
ConditionDirectoryNotEmpty: |/run/tmpfiles.d
ConditionDirectoryNotEmpty: |/etc/tmpfiles.d
ConditionDirectoryNotEmpty: |/usr/local/lib/tmpfiles.d
ConditionDirectoryNotEmpty: |/usr/lib/tmpfiles.d
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
Wants: local-fs.target
WantedBy: sysinit.target
Before: systemd-update-utmp-shutdown.service
Before: systemd-update-utmp-runlevel.service
Before: sysinit.target
Before: shutdown.target
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: local-fs.target
After: systemd-journald.socket
References: local-fs.target
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: sysinit.target
References: shutdown.target
References: systemd-journald.socket
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: systemd-update-utmp-runlevel.service
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-tmpfiles-setup.service
ControlGroup: name=systemd:/system/systemd-tmpfiles-setup.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /bin/systemd-tmpfiles --create --remove
-> Unit auditd.service:
Description: auditd.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: auditd.service
Before: systemd-update-utmp-shutdown.service
Before: systemd-update-utmp-runlevel.service
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: systemd-update-utmp-runlevel.service
Load Error Code: No such file or directory
-> Unit systemd-update-utmp-runlevel.service:
Description: Update UTMP about System Runlevel Changes
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:22:54 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:22:54 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-update-utmp-runlevel.service
Documentation: man:systemd-update-utmp-runlevel.service(8)
Documentation: man:utmp(5)
Fragment Path: /lib/systemd/system/systemd-update-utmp-runlevel.service
Condition Timestamp: Wed 2014-02-05 12:22:54 CET
Condition Result: yes
Requires: -.mount
Requires: var.mount
WantedBy: graphical.target
WantedBy: multi-user.target
WantedBy: rescue.target
Before: systemd-update-utmp-shutdown.service
Before: final.target
After: systemd-remount-fs.service
After: systemd-tmpfiles-setup.service
After: auditd.service
After: graphical.target
After: systemd-journald.socket
After: -.mount
After: var.mount
After: multi-user.target
After: rescue.target
References: systemd-remount-fs.service
References: systemd-tmpfiles-setup.service
References: auditd.service
References: graphical.target
References: final.target
References: systemd-journald.socket
References: -.mount
References: var.mount
References: multi-user.target
References: rescue.target
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: graphical.target
ReferencedBy: multi-user.target
ReferencedBy: rescue.target
RequiresMountsFor: /var/log/wtmp
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-update-utmp-runlevel.service
ControlGroup: name=systemd:/system/systemd-update-utmp-runlevel.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-update-utmp runlevel
-> Unit final.target:
Description: Final Step
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: final.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/final.target
After: systemd-update-utmp-shutdown.service
After: shutdown.target
After: umount.target
After: systemd-update-utmp-runlevel.service
After: systemd-random-seed-load.service
After: systemd-random-seed-save.service
References: shutdown.target
References: umount.target
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: systemd-update-utmp-runlevel.service
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: systemd-random-seed-save.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit umount.target:
Description: Unmount All Filesystems
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: umount.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/umount.target
ConflictedBy: systemd-cryptsetup at storage.service
ConflictedBy: storage.mount
ConflictedBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
ConflictedBy: run-user.mount
ConflictedBy: run-lock.mount
ConflictedBy: home.mount
ConflictedBy: var.mount
ConflictedBy: var-lib-transmission\x2ddaemon.mount
ConflictedBy: dev-vda5.swap
Before: final.target
After: systemd-cryptsetup at storage.service
After: storage.mount
After: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
After: run-user.mount
After: run-lock.mount
After: home.mount
After: var.mount
After: var-lib-transmission\x2ddaemon.mount
After: dev-vda5.swap
ReferencedBy: final.target
ReferencedBy: systemd-cryptsetup at storage.service
ReferencedBy: storage.mount
ReferencedBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
ReferencedBy: run-user.mount
ReferencedBy: run-lock.mount
ReferencedBy: home.mount
ReferencedBy: var.mount
ReferencedBy: var-lib-transmission\x2ddaemon.mount
ReferencedBy: dev-vda5.swap
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit graphical.target:
Description: Graphical Interface
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:54 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:54 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: runlevel5.target
Name: graphical.target
Name: default.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/graphical.target
Condition Timestamp: Wed 2014-02-05 12:22:54 CET
Condition Result: yes
Requires: multi-user.target
Wants: display-manager.service
Wants: systemd-update-utmp-runlevel.service
Wants: postfix.service
Wants: nmbd.service
Wants: ntp.service
Wants: postgresql.service
Wants: openvpn.service
Wants: smbd.service
Wants: ssh.service
Wants: apache2.service
Wants: fail2ban.service
Wants: mysql.service
Wants: cron.service
Wants: denyhosts.service
Wants: bootlogs.service
Wants: samba-ad-dc.service
Wants: sysstat.service
Wants: knot.service
Wants: motd.service
Wants: samba.service
Wants: monit.service
Conflicts: rescue.target
Conflicts: shutdown.target
Before: systemd-update-utmp-runlevel.service
Before: systemd-readahead-done.timer
Before: systemd-readahead-done.service
After: multi-user.target
After: postfix.service
After: nmbd.service
After: ntp.service
After: postgresql.service
After: openvpn.service
After: smbd.service
After: ssh.service
After: apache2.service
After: fail2ban.service
After: mysql.service
After: cron.service
After: denyhosts.service
After: bootlogs.service
After: samba-ad-dc.service
After: sysstat.service
After: knot.service
After: motd.service
After: samba.service
After: monit.service
References: multi-user.target
References: rescue.target
References: display-manager.service
References: systemd-update-utmp-runlevel.service
References: shutdown.target
References: postfix.service
References: nmbd.service
References: ntp.service
References: postgresql.service
References: openvpn.service
References: smbd.service
References: ssh.service
References: apache2.service
References: fail2ban.service
References: mysql.service
References: cron.service
References: denyhosts.service
References: bootlogs.service
References: samba-ad-dc.service
References: sysstat.service
References: knot.service
References: motd.service
References: samba.service
References: monit.service
ReferencedBy: systemd-update-utmp-runlevel.service
ReferencedBy: systemd-readahead-done.timer
ReferencedBy: systemd-readahead-done.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit multi-user.target:
Description: Multi-User System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:54 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:54 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: multi-user.target
Name: runlevel4.target
Name: runlevel3.target
Name: runlevel2.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/multi-user.target
Condition Timestamp: Wed 2014-02-05 12:22:54 CET
Condition Result: yes
Requires: basic.target
Wants: acpid.service
Wants: php5-fpm.service
Wants: rsync.service
Wants: transmission-daemon.service
Wants: nginx.service
Wants: sudo.service
Wants: remote-fs.target
Wants: atd.service
Wants: rsyslog.service
Wants: rc-local.service
Wants: systemd-user-sessions.service
Wants: systemd-logind.service
Wants: systemd-ask-password-wall.path
Wants: dbus.service
Wants: getty.target
Wants: systemd-update-utmp-runlevel.service
Wants: postfix.service
Wants: nmbd.service
Wants: ntp.service
Wants: postgresql.service
Wants: openvpn.service
Wants: smbd.service
Wants: ssh.service
Wants: apache2.service
Wants: fail2ban.service
Wants: mysql.service
Wants: cron.service
Wants: denyhosts.service
Wants: bootlogs.service
Wants: samba-ad-dc.service
Wants: sysstat.service
Wants: knot.service
Wants: motd.service
Wants: samba.service
Wants: monit.service
RequiredBy: graphical.target
Conflicts: rescue.service
Conflicts: rescue.target
Conflicts: shutdown.target
Before: graphical.target
Before: systemd-update-utmp-runlevel.service
After: basic.target
After: rescue.service
After: rescue.target
After: remote-fs.target
After: rsyslog.service
After: systemd-user-sessions.service
After: getty.target
After: systemd-logind.service
After: rc-local.service
After: rsync.service
After: sudo.service
After: php5-fpm.service
After: dbus.service
After: acpid.service
After: atd.service
After: nginx.service
After: transmission-daemon.service
After: postfix.service
After: nmbd.service
After: ntp.service
After: postgresql.service
After: openvpn.service
After: smbd.service
After: ssh.service
After: apache2.service
After: fail2ban.service
After: mysql.service
After: cron.service
After: denyhosts.service
After: bootlogs.service
After: samba-ad-dc.service
After: sysstat.service
After: knot.service
After: motd.service
After: samba.service
After: monit.service
References: basic.target
References: rescue.service
References: rescue.target
References: acpid.service
References: php5-fpm.service
References: rsync.service
References: transmission-daemon.service
References: nginx.service
References: sudo.service
References: remote-fs.target
References: atd.service
References: rsyslog.service
References: rc-local.service
References: systemd-user-sessions.service
References: systemd-logind.service
References: systemd-ask-password-wall.path
References: dbus.service
References: getty.target
References: shutdown.target
References: systemd-update-utmp-runlevel.service
References: postfix.service
References: nmbd.service
References: ntp.service
References: postgresql.service
References: openvpn.service
References: smbd.service
References: ssh.service
References: apache2.service
References: fail2ban.service
References: mysql.service
References: cron.service
References: denyhosts.service
References: bootlogs.service
References: samba-ad-dc.service
References: sysstat.service
References: knot.service
References: motd.service
References: samba.service
References: monit.service
ReferencedBy: graphical.target
ReferencedBy: systemd-update-utmp-runlevel.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit rescue.target:
Description: Rescue Mode
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: rescue.target
Name: runlevel1.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/rescue.target
Requires: sysinit.target
Requires: rescue.service
Wants: systemd-update-utmp-runlevel.service
Wants: bootlogs.service
Wants: motd.service
Conflicts: shutdown.target
ConflictedBy: graphical.target
ConflictedBy: multi-user.target
Before: multi-user.target
Before: systemd-update-utmp-runlevel.service
After: sysinit.target
After: rescue.service
After: bootlogs.service
After: motd.service
References: sysinit.target
References: rescue.service
References: shutdown.target
References: systemd-update-utmp-runlevel.service
References: bootlogs.service
References: motd.service
ReferencedBy: graphical.target
ReferencedBy: multi-user.target
ReferencedBy: systemd-update-utmp-runlevel.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit display-manager.service:
Description: display-manager.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: display-manager.service
WantedBy: graphical.target
ReferencedBy: graphical.target
Load Error Code: No such file or directory
-> Unit sysinit.target:
Description: System Initialization
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sysinit.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/sysinit.target
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Wants: local-fs.target
Wants: swap.target
Wants: proc-sys-fs-binfmt_misc.automount
Wants: systemd-binfmt.service
Wants: systemd-ask-password-console.path
Wants: cryptsetup.target
Wants: systemd-udevd.service
Wants: systemd-random-seed-load.service
Wants: sys-kernel-debug.mount
Wants: debian-fixup.service
Wants: systemd-tmpfiles-setup-dev.service
Wants: systemd-sysctl.service
Wants: dev-hugepages.mount
Wants: sys-kernel-config.mount
Wants: systemd-journald.service
Wants: systemd-modules-load.service
Wants: systemd-tmpfiles-setup.service
Wants: systemd-udev-trigger.service
Wants: dev-mqueue.mount
Wants: systemd-journal-flush.service
Wants: sys-fs-fuse-connections.mount
Wants: console-setup.service
Wants: kbd.service
Wants: keyboard-setup.service
Wants: networking.service
Wants: screen-cleanup.service
RequiredBy: rescue.target
RequiredBy: dbus.socket
RequiredBy: acpid.socket
RequiredBy: basic.target
RequiredBy: systemd-tmpfiles-clean.timer
Conflicts: emergency.service
Conflicts: emergency.target
Conflicts: shutdown.target
Before: rescue.target
Before: rescue.service
Before: dbus.socket
Before: acpid.socket
Before: basic.target
Before: systemd-tmpfiles-clean.timer
After: local-fs.target
After: swap.target
After: emergency.service
After: emergency.target
After: sys-fs-fuse-connections.mount
After: dev-mqueue.mount
After: systemd-udev-trigger.service
After: systemd-modules-load.service
After: systemd-readahead-replay.service
After: systemd-readahead-collect.service
After: systemd-journald.service
After: sys-kernel-config.mount
After: dev-hugepages.mount
After: systemd-sysctl.service
After: systemd-tmpfiles-setup-dev.service
After: debian-fixup.service
After: sys-kernel-debug.mount
After: systemd-random-seed-load.service
After: systemd-udevd.service
After: cryptsetup.target
After: systemd-binfmt.service
After: proc-sys-fs-binfmt_misc.automount
After: systemd-tmpfiles-setup.service
After: systemd-tmpfiles-clean.service
After: console-setup.service
After: kbd.service
After: keyboard-setup.service
After: networking.service
After: screen-cleanup.service
References: emergency.service
References: emergency.target
References: local-fs.target
References: swap.target
References: proc-sys-fs-binfmt_misc.automount
References: systemd-binfmt.service
References: systemd-ask-password-console.path
References: cryptsetup.target
References: systemd-udevd.service
References: systemd-random-seed-load.service
References: sys-kernel-debug.mount
References: debian-fixup.service
References: systemd-tmpfiles-setup-dev.service
References: systemd-sysctl.service
References: dev-hugepages.mount
References: sys-kernel-config.mount
References: systemd-journald.service
References: systemd-modules-load.service
References: systemd-tmpfiles-setup.service
References: systemd-udev-trigger.service
References: dev-mqueue.mount
References: systemd-journal-flush.service
References: sys-fs-fuse-connections.mount
References: shutdown.target
References: console-setup.service
References: kbd.service
References: keyboard-setup.service
References: networking.service
References: screen-cleanup.service
ReferencedBy: rescue.target
ReferencedBy: rescue.service
ReferencedBy: sys-fs-fuse-connections.mount
ReferencedBy: dev-mqueue.mount
ReferencedBy: systemd-udev-trigger.service
ReferencedBy: dbus.socket
ReferencedBy: acpid.socket
ReferencedBy: systemd-modules-load.service
ReferencedBy: systemd-readahead-replay.service
ReferencedBy: systemd-readahead-collect.service
ReferencedBy: systemd-journald.service
ReferencedBy: sys-kernel-config.mount
ReferencedBy: dev-hugepages.mount
ReferencedBy: systemd-sysctl.service
ReferencedBy: systemd-tmpfiles-setup-dev.service
ReferencedBy: debian-fixup.service
ReferencedBy: sys-kernel-debug.mount
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: systemd-udevd.service
ReferencedBy: systemd-binfmt.service
ReferencedBy: proc-sys-fs-binfmt_misc.automount
ReferencedBy: systemd-tmpfiles-setup.service
ReferencedBy: basic.target
ReferencedBy: systemd-tmpfiles-clean.timer
ReferencedBy: systemd-tmpfiles-clean.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit rescue.service:
Description: Rescue Shell
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: rescue.service
Documentation: man:sulogin(8)
Fragment Path: /lib/systemd/system/rescue.service
RequiredBy: rescue.target
Conflicts: shutdown.target
ConflictedBy: multi-user.target
Before: rescue.target
Before: shutdown.target
Before: multi-user.target
After: sysinit.target
After: plymouth-start.service
References: shutdown.target
References: sysinit.target
References: plymouth-start.service
ReferencedBy: rescue.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/rescue.service
ControlGroup: name=systemd:/system/rescue.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: idle
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGHUP
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /root
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
Environment: HOME=/root
LimitNOFILE: 4096
StandardInput: tty-force
StandardOutput: inherit
StandardError: inherit
-> ExecStartPre:
Command Line: /bin/plymouth quit
Command Line: /bin/echo -e 'Welcome to rescue mode! Type "systemctl default" or ^D to enter default mode.\nType "journalctl -xb" to view system logs. Type "systemctl reboot" to reboot.'
-> ExecStart:
Command Line: /sbin/sulogin
-> ExecStopPost:
Command Line: /bin/systemctl --fail --no-block default
-> Unit plymouth-start.service:
Description: plymouth-start.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: plymouth-start.service
Before: rescue.service
Before: systemd-ask-password-console.path
Before: systemd-ask-password-console.service
ReferencedBy: rescue.service
ReferencedBy: systemd-ask-password-console.path
ReferencedBy: systemd-ask-password-console.service
Load Error Code: No such file or directory
-> Unit emergency.service:
Description: Emergency Shell
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: emergency.service
Documentation: man:sulogin(8)
Fragment Path: /lib/systemd/system/emergency.service
RequiredBy: emergency.target
Conflicts: shutdown.target
ConflictedBy: sysinit.target
Before: sysinit.target
Before: emergency.target
Before: shutdown.target
References: shutdown.target
ReferencedBy: sysinit.target
ReferencedBy: emergency.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/emergency.service
ControlGroup: name=systemd:/system/emergency.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: idle
Restart: no
NotifyAccess: none
KillMode: process
KillSignal: SIGHUP
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /root
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
Environment: HOME=/root
LimitNOFILE: 4096
StandardInput: tty-force
StandardOutput: inherit
StandardError: inherit
-> ExecStartPre:
Command Line: /bin/plymouth quit
Command Line: /bin/echo -e 'Welcome to emergency mode! After logging in, type "journalctl -xb" to view\nsystem logs, "systemctl reboot" to reboot, "systemctl default" to try again\nto boot into default mode.'
-> ExecStart:
Command Line: /sbin/sulogin
-> ExecStopPost:
Command Line: /bin/systemctl --fail --no-block default
-> Unit emergency.target:
Description: Emergency Mode
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: emergency.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/emergency.target
Requires: emergency.service
Conflicts: shutdown.target
ConflictedBy: sysinit.target
Before: sysinit.target
After: emergency.service
References: emergency.service
References: shutdown.target
ReferencedBy: sysinit.target
ReferencedBy: local-fs.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit local-fs.target:
Description: Local File Systems
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: local-fs.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/local-fs.target
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
Requires: var-lib-transmission\x2ddaemon.mount
Requires: var.mount
Requires: storage.mount
Requires: home.mount
Requires: -.mount
Wants: run-lock.mount
Wants: run-user.mount
Wants: systemd-remount-fs.service
Wants: systemd-fsck-root.service
WantedBy: sysinit.target
WantedBy: systemd-tmpfiles-setup.service
WantedBy: systemd-tmpfiles-clean.service
Conflicts: shutdown.target
Before: sysinit.target
Before: systemd-journal-flush.service
Before: remote-fs.target
Before: systemd-tmpfiles-setup.service
Before: systemd-tmpfiles-clean.service
Before: networking.service
Before: sysstat.service
Before: denyhosts.service
Before: postgresql.service
Before: motd.service
Before: bootlogs.service
Before: samba-ad-dc.service
Before: postfix.service
Before: fail2ban.service
Before: knot.service
Before: smbd.service
Before: nmbd.service
Before: apache2.service
Before: ifup at eth0.service
Before: ifup at tun0.service
After: storage.mount
After: local-fs-pre.target
After: systemd-fsck-root.service
After: run-user.mount
After: run-lock.mount
After: -.mount
After: home.mount
After: var.mount
After: var-lib-transmission\x2ddaemon.mount
After: systemd-remount-fs.service
OnFailure: emergency.target
References: local-fs-pre.target
References: emergency.target
References: var-lib-transmission\x2ddaemon.mount
References: var.mount
References: storage.mount
References: home.mount
References: -.mount
References: run-lock.mount
References: run-user.mount
References: systemd-remount-fs.service
References: systemd-fsck-root.service
References: shutdown.target
ReferencedBy: sysinit.target
ReferencedBy: systemd-journal-flush.service
ReferencedBy: remote-fs.target
ReferencedBy: storage.mount
ReferencedBy: systemd-fsck-root.service
ReferencedBy: run-user.mount
ReferencedBy: run-lock.mount
ReferencedBy: -.mount
ReferencedBy: home.mount
ReferencedBy: var.mount
ReferencedBy: var-lib-transmission\x2ddaemon.mount
ReferencedBy: systemd-tmpfiles-setup.service
ReferencedBy: systemd-remount-fs.service
ReferencedBy: systemd-tmpfiles-clean.service
ReferencedBy: networking.service
ReferencedBy: sysstat.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: motd.service
ReferencedBy: bootlogs.service
ReferencedBy: samba-ad-dc.service
ReferencedBy: postfix.service
ReferencedBy: fail2ban.service
ReferencedBy: knot.service
ReferencedBy: smbd.service
ReferencedBy: nmbd.service
ReferencedBy: apache2.service
ReferencedBy: ifup at eth0.service
ReferencedBy: ifup at tun0.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit swap.target:
Description: Swap
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: swap.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/swap.target
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Wants: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
WantedBy: sysinit.target
Conflicts: shutdown.target
Before: sysinit.target
After: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
References: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
References: shutdown.target
ReferencedBy: sysinit.target
ReferencedBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit proc-sys-fs-binfmt_misc.automount:
Description: Arbitrary Executable File Formats File System Automount Point
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: proc-sys-fs-binfmt_misc.automount
Documentation: https://www.kernel.org/doc/Documentation/binfmt_misc.txt
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/proc-sys-fs-binfmt_misc.automount
ConditionPathIsReadWrite: /proc/sys/
ConditionPathExists: /proc/sys/fs/binfmt_misc/
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sysinit.target
Before: systemd-binfmt.service
Before: sysinit.target
Before: proc-sys-fs-binfmt_misc.mount
After: -.mount
Triggers: proc-sys-fs-binfmt_misc.mount
References: sysinit.target
References: proc-sys-fs-binfmt_misc.mount
References: -.mount
ReferencedBy: sysinit.target
ReferencedBy: systemd-binfmt.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
Automount State: running
Result: success
Where: /proc/sys/fs/binfmt_misc
DirectoryMode: 0755
-> Unit systemd-binfmt.service:
Description: Set Up Additional Binary Formats
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-binfmt.service
Documentation: man:systemd-binfmt.service(8)
Documentation: man:binfmt.d(5)
Documentation: https://www.kernel.org/doc/Documentation/binfmt_misc.txt
Fragment Path: /lib/systemd/system/systemd-binfmt.service
ConditionDirectoryNotEmpty: |/run/binfmt.d
ConditionDirectoryNotEmpty: |/etc/binfmt.d
ConditionDirectoryNotEmpty: |/usr/local/lib/binfmt.d
ConditionDirectoryNotEmpty: |/usr/lib/binfmt.d
ConditionDirectoryNotEmpty: |/lib/binfmt.d
ConditionPathIsReadWrite: /proc/sys/
Condition Timestamp: Wed 2014-02-05 12:22:18 CET
Condition Result: no
WantedBy: sysinit.target
Conflicts: shutdown.target
Before: sysinit.target
Before: shutdown.target
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: proc-sys-fs-binfmt_misc.automount
After: systemd-journald.socket
References: shutdown.target
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: proc-sys-fs-binfmt_misc.automount
References: sysinit.target
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-binfmt.service
ControlGroup: name=systemd:/system/systemd-binfmt.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-binfmt
-> Unit systemd-ask-password-console.path:
Description: Dispatch Password Requests to Console Directory Watch
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Inactive Enter Timestamp: Wed 2014-02-05 12:22:44 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-ask-password-console.path
Documentation: man:systemd-ask-password-console.service(8)
Fragment Path: /lib/systemd/system/systemd-ask-password-console.path
ConditionPathExists: !/run/plymouth/pid
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sysinit.target
Conflicts: shutdown.target
Before: paths.target
Before: shutdown.target
Before: systemd-ask-password-console.service
After: plymouth-start.service
After: -.mount
Triggers: systemd-ask-password-console.service
References: shutdown.target
References: plymouth-start.service
References: paths.target
References: systemd-ask-password-console.service
References: -.mount
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Path State: dead
Result: success
Unit: systemd-ask-password-console.service
MakeDirectory: yes
DirectoryMode: 0755
DirectoryNotEmpty: /run/systemd/ask-password
-> Unit cryptsetup.target:
Description: Encrypted Volumes
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: cryptsetup.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/cryptsetup.target
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
Requires: systemd-cryptsetup at storage.service
WantedBy: sysinit.target
Conflicts: shutdown.target
Before: sysinit.target
After: systemd-cryptsetup at storage.service
References: systemd-cryptsetup at storage.service
References: shutdown.target
ReferencedBy: sysinit.target
ReferencedBy: systemd-cryptsetup at storage.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit systemd-udevd.service:
Description: udev Kernel Device Manager
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-udevd.service
Name: udev.service
Documentation: man:systemd-udevd.service(8)
Documentation: man:udev(7)
Fragment Path: /lib/systemd/system/systemd-udevd.service
(null): CAP_MKNOD
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Wants: systemd-udevd-control.socket
Wants: systemd-udevd-kernel.socket
WantedBy: sysinit.target
WantedBy: systemd-udev-trigger.service
Before: sysinit.target
Before: local-fs-pre.target
Before: keyboard-setup.service
After: systemd-udevd-control.socket
After: systemd-udevd-kernel.socket
After: systemd-tmpfiles-setup-dev.service
After: systemd-journald.socket
TriggeredBy: systemd-udevd-control.socket
TriggeredBy: systemd-udevd-kernel.socket
References: systemd-udevd-control.socket
References: systemd-udevd-kernel.socket
References: sysinit.target
References: local-fs-pre.target
References: systemd-journald.socket
ReferencedBy: sysinit.target
ReferencedBy: systemd-udev-trigger.service
ReferencedBy: systemd-udevd-control.socket
ReferencedBy: systemd-udevd-kernel.socket
ReferencedBy: systemd-tmpfiles-setup-dev.service
ReferencedBy: keyboard-setup.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-udevd.service
ControlGroup: name=systemd:/system/systemd-udevd.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: always
NotifyAccess: main
Main PID: 199
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
OOMScoreAdjust: -1000
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-udevd
-> Unit systemd-random-seed-load.service:
Description: Load Random Seed
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:22:18 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:22:18 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-random-seed-load.service
Name: urandom.service
Documentation: man:systemd-random-seed-load.service(8)
Documentation: man:random(4)
Fragment Path: /lib/systemd/system/systemd-random-seed-load.service
Condition Timestamp: Wed 2014-02-05 12:22:18 CET
Condition Result: yes
Requires: -.mount
Requires: var.mount
WantedBy: sysinit.target
Before: sysinit.target
Before: final.target
Before: systemd-random-seed-save.service
Before: networking.service
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: systemd-remount-fs.service
After: systemd-journald.socket
After: -.mount
After: var.mount
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: systemd-remount-fs.service
References: sysinit.target
References: final.target
References: systemd-journald.socket
References: -.mount
References: var.mount
ReferencedBy: sysinit.target
ReferencedBy: systemd-random-seed-save.service
ReferencedBy: networking.service
RequiresMountsFor: /var/lib/random-seed
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-random-seed-load.service
ControlGroup: name=systemd:/system/systemd-random-seed-load.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-random-seed load
-> Unit sys-kernel-debug.mount:
Description: Debug File System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-kernel-debug.mount
Documentation: https://www.kernel.org/doc/Documentation/filesystems/debugfs.txt
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/sys-kernel-debug.mount
ConditionPathExists: /sys/kernel/debug
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sysinit.target
Before: sysinit.target
After: systemd-journald.socket
After: -.mount
References: sysinit.target
References: systemd-journald.socket
References: -.mount
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/sys-kernel-debug.mount
ControlGroup: name=systemd:/system/sys-kernel-debug.mount
Mount State: mounted
Result: success
Where: /sys/kernel/debug
What: debugfs
File System Type: debugfs
Options: rw,relatime,rw
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit debian-fixup.service:
Description: Various fixups to make systemd work better on Debian
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: debian-fixup.service
Fragment Path: /lib/systemd/system/debian-fixup.service
ConditionPathIsSymbolicLink: |!/var/lock
ConditionPathIsSymbolicLink: |!/var/run
ConditionPathIsSymbolicLink: |!/etc/mtab
Condition Timestamp: Wed 2014-02-05 12:22:18 CET
Condition Result: no
WantedBy: sysinit.target
Before: var-run.mount
Before: var-lock.mount
Before: sysinit.target
After: systemd-remount-fs.service
After: systemd-journald.socket
References: var-run.mount
References: var-lock.mount
References: sysinit.target
References: systemd-remount-fs.service
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/debian-fixup.service
ControlGroup: name=systemd:/system/debian-fixup.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/debian-fixup
-> Unit systemd-tmpfiles-setup-dev.service:
Description: Create static device nodes in /dev
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-tmpfiles-setup-dev.service
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-setup-dev.service
(null): CAP_MKNOD
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
WantedBy: sysinit.target
Before: sysinit.target
Before: systemd-udevd.service
After: systemd-journald.socket
References: sysinit.target
References: systemd-udevd.service
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-tmpfiles-setup-dev.service
ControlGroup: name=systemd:/system/systemd-tmpfiles-setup-dev.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /bin/systemd-tmpfiles --prefix=/dev --create
-> Unit systemd-sysctl.service:
Description: Apply Kernel Variables
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-sysctl.service
Name: procps.service
Documentation: man:systemd-sysctl.service(8)
Documentation: man:sysctl.d(5)
Fragment Path: /lib/systemd/system/systemd-sysctl.service
ConditionDirectoryNotEmpty: |/run/sysctl.d
ConditionDirectoryNotEmpty: |/etc/sysctl.d
ConditionDirectoryNotEmpty: |/usr/local/lib/sysctl.d
ConditionDirectoryNotEmpty: |/usr/lib/sysctl.d
ConditionDirectoryNotEmpty: |/lib/sysctl.d
ConditionPathExists: |/etc/sysctl.conf
ConditionPathIsReadWrite: /proc/sys/
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
WantedBy: sysinit.target
Conflicts: shutdown.target
Before: sysinit.target
Before: shutdown.target
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: systemd-journald.socket
References: shutdown.target
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: sysinit.target
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-sysctl.service
ControlGroup: name=systemd:/system/systemd-sysctl.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-sysctl
-> Unit dev-hugepages.mount:
Description: Huge Pages File System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-hugepages.mount
Documentation: https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/dev-hugepages.mount
ConditionPathExists: /sys/kernel/mm/hugepages
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sysinit.target
Before: sysinit.target
After: systemd-journald.socket
After: -.mount
References: sysinit.target
References: systemd-journald.socket
References: -.mount
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/dev-hugepages.mount
ControlGroup: name=systemd:/system/dev-hugepages.mount
Mount State: mounted
Result: success
Where: /dev/hugepages
What: hugetlbfs
File System Type: hugetlbfs
Options: rw,relatime,rw
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit sys-kernel-config.mount:
Description: Configuration File System
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: sys-kernel-config.mount
Documentation: https://www.kernel.org/doc/Documentation/filesystems/configfs/configfs.txt
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/sys-kernel-config.mount
ConditionPathExists: /sys/kernel/config
Condition Timestamp: Wed 2014-02-05 12:22:18 CET
Condition Result: no
Requires: -.mount
WantedBy: sysinit.target
Before: sysinit.target
After: systemd-modules-load.service
After: systemd-journald.socket
After: -.mount
References: systemd-modules-load.service
References: sysinit.target
References: systemd-journald.socket
References: -.mount
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/sys-kernel-config.mount
ControlGroup: name=systemd:/system/sys-kernel-config.mount
Mount State: dead
Result: success
Where: /sys/kernel/config
What: configfs
File System Type: configfs
Options: n/a
From /proc/self/mountinfo: no
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-journald.service:
Description: Journal Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-journald.service
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journald.service
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: systemd-journald.socket
RequiredBy: systemd-journal-flush.service
WantedBy: sysinit.target
Before: systemd-journal-flush.service
Before: sysinit.target
After: systemd-journald.socket
After: syslog.socket
TriggeredBy: systemd-journald.socket
References: systemd-journald.socket
References: syslog.socket
References: sysinit.target
ReferencedBy: sysinit.target
ReferencedBy: systemd-journal-flush.service
ReferencedBy: systemd-journald.socket
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-journald.service
ControlGroup: name=systemd:/system/systemd-journald.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: always
NotifyAccess: all
Main PID: 188
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 16384
StandardInput: null
StandardOutput: null
StandardError: inherit
CapabilityBoundingSet: cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_setgid cap_setuid cap_sys_ptrace cap_sys_admin cap_audit_control cap_syslog
-> ExecStart:
Command Line: /lib/systemd/systemd-journald
Status Text: Processing requests...
-> Unit systemd-modules-load.service:
Description: Load Kernel Modules
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-modules-load.service
Name: kmod.service
Documentation: man:systemd-modules-load.service(8)
Documentation: man:modules-load.d(5)
Fragment Path: /lib/systemd/system/systemd-modules-load.service
ConditionKernelCommandLine: |rd.modules-load
ConditionKernelCommandLine: |modules-load
ConditionDirectoryNotEmpty: |/run/modules-load.d
ConditionDirectoryNotEmpty: |/etc/modules-load.d
ConditionDirectoryNotEmpty: |/usr/local/lib/modules-load.d
ConditionDirectoryNotEmpty: |/usr/lib/modules-load.d
ConditionDirectoryNotEmpty: |/lib/modules-load.d
(null): CAP_SYS_MODULE
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
WantedBy: sysinit.target
Conflicts: shutdown.target
Before: sys-fs-fuse-connections.mount
Before: sysinit.target
Before: shutdown.target
Before: sys-kernel-config.mount
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: systemd-journald.socket
References: shutdown.target
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: sysinit.target
References: systemd-journald.socket
ReferencedBy: sysinit.target
ReferencedBy: sys-fs-fuse-connections.mount
ReferencedBy: sys-kernel-config.mount
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-modules-load.service
ControlGroup: name=systemd:/system/systemd-modules-load.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-modules-load
-> Unit systemd-udev-trigger.service:
Description: udev Coldplug all Devices
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-udev-trigger.service
Documentation: man:udev(7)
Documentation: man:systemd-udevd.service(8)
Fragment Path: /lib/systemd/system/systemd-udev-trigger.service
(null): CAP_MKNOD
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Wants: systemd-udevd.service
WantedBy: sysinit.target
Before: sysinit.target
After: systemd-udevd-kernel.socket
After: systemd-udevd-control.socket
After: systemd-journald.socket
References: systemd-udevd.service
References: systemd-udevd-kernel.socket
References: systemd-udevd-control.socket
References: sysinit.target
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-udev-trigger.service
ControlGroup: name=systemd:/system/systemd-udev-trigger.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /bin/udevadm trigger --type=subsystems --action=add
Command Line: /bin/udevadm trigger --type=devices --action=add
-> Unit dev-mqueue.mount:
Description: POSIX Message Queue File System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-mqueue.mount
Documentation: man:mq_overview(7)
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/dev-mqueue.mount
ConditionPathExists: /proc/sys/fs/mqueue
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sysinit.target
Before: sysinit.target
After: systemd-journald.socket
After: -.mount
References: sysinit.target
References: systemd-journald.socket
References: -.mount
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/dev-mqueue.mount
ControlGroup: name=systemd:/system/dev-mqueue.mount
Mount State: mounted
Result: success
Where: /dev/mqueue
What: mqueue
File System Type: mqueue
Options: rw,relatime,rw
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-journal-flush.service:
Description: Trigger Flushing of Journal to Persistent Storage
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:22:43 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-journal-flush.service
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journal-flush.service
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
Requires: systemd-journald.service
WantedBy: sysinit.target
Before: systemd-user-sessions.service
After: systemd-journald.service
After: local-fs.target
After: remote-fs.target
After: systemd-journald.socket
References: systemd-journald.service
References: local-fs.target
References: remote-fs.target
References: systemd-user-sessions.service
References: systemd-journald.socket
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-journal-flush.service
ControlGroup: name=systemd:/system/systemd-journal-flush.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /bin/systemctl kill --kill-who=main --signal=SIGUSR1 systemd-journald.service
-> Unit sys-fs-fuse-connections.mount:
Description: FUSE Control File System
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: sys-fs-fuse-connections.mount
Documentation: https://www.kernel.org/doc/Documentation/filesystems/fuse.txt
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/sys-fs-fuse-connections.mount
ConditionPathExists: /sys/fs/fuse/connections
Condition Timestamp: Wed 2014-02-05 12:22:18 CET
Condition Result: no
Requires: -.mount
WantedBy: sysinit.target
Before: sysinit.target
After: systemd-modules-load.service
After: systemd-journald.socket
After: -.mount
References: systemd-modules-load.service
References: sysinit.target
References: systemd-journald.socket
References: -.mount
ReferencedBy: sysinit.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/sys-fs-fuse-connections.mount
ControlGroup: name=systemd:/system/sys-fs-fuse-connections.mount
Mount State: dead
Result: success
Where: /sys/fs/fuse/connections
What: fusectl
File System Type: fusectl
Options: n/a
From /proc/self/mountinfo: no
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit remote-fs.target:
Description: Remote File Systems
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: remote-fs.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/remote-fs.target
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: systemd-journal-flush.service
Before: systemd-user-sessions.service
Before: multi-user.target
Before: screen-cleanup.service
Before: kbd.service
Before: console-setup.service
Before: sysstat.service
Before: cron.service
Before: ssh.service
Before: ntp.service
Before: denyhosts.service
Before: postgresql.service
Before: samba-ad-dc.service
Before: mysql.service
Before: postfix.service
Before: fail2ban.service
Before: knot.service
Before: smbd.service
Before: openvpn.service
Before: monit.service
Before: nmbd.service
Before: apache2.service
After: remote-fs-pre.target
After: local-fs.target
References: remote-fs-pre.target
References: local-fs.target
References: shutdown.target
ReferencedBy: systemd-journal-flush.service
ReferencedBy: systemd-user-sessions.service
ReferencedBy: multi-user.target
ReferencedBy: screen-cleanup.service
ReferencedBy: kbd.service
ReferencedBy: console-setup.service
ReferencedBy: sysstat.service
ReferencedBy: cron.service
ReferencedBy: ssh.service
ReferencedBy: ntp.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: samba-ad-dc.service
ReferencedBy: mysql.service
ReferencedBy: postfix.service
ReferencedBy: fail2ban.service
ReferencedBy: knot.service
ReferencedBy: smbd.service
ReferencedBy: openvpn.service
ReferencedBy: monit.service
ReferencedBy: nmbd.service
ReferencedBy: apache2.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit systemd-user-sessions.service:
Description: Permit User Sessions
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-user-sessions.service
Documentation: man:systemd-user-sessions.service(8)
Fragment Path: /lib/systemd/system/systemd-user-sessions.service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
Before: getty at tty1.service
Before: systemd-ask-password-wall.service
After: systemd-journal-flush.service
After: remote-fs.target
After: systemd-journald.socket
After: basic.target
References: remote-fs.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: systemd-journal-flush.service
ReferencedBy: multi-user.target
ReferencedBy: getty at tty1.service
ReferencedBy: systemd-ask-password-wall.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-user-sessions.service
ControlGroup: name=systemd:/system/systemd-user-sessions.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-user-sessions start
-> ExecStop:
Command Line: /lib/systemd/systemd-user-sessions stop
-> Unit remote-fs-pre.target:
Description: Remote File Systems (Pre)
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: remote-fs-pre.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/remote-fs-pre.target
Conflicts: shutdown.target
Before: remote-fs.target
References: shutdown.target
ReferencedBy: remote-fs.target
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit systemd-udevd-kernel.socket:
Description: udev Kernel Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-udevd-kernel.socket
Documentation: man:systemd-udevd.service(8)
Documentation: man:udev(7)
Fragment Path: /lib/systemd/system/systemd-udevd-kernel.socket
(null): CAP_MKNOD
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
WantedBy: sockets.target
WantedBy: systemd-udevd.service
Before: systemd-udev-trigger.service
Before: sockets.target
Before: systemd-udevd.service
Triggers: systemd-udevd.service
References: sockets.target
References: systemd-udevd.service
ReferencedBy: systemd-udev-trigger.service
ReferencedBy: sockets.target
ReferencedBy: systemd-udevd.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-udevd-kernel.socket
ControlGroup: name=systemd:/system/systemd-udevd-kernel.socket
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: no
TCPCongestion: n/a
ReceiveBuffer: 134217728
ListenNetlink: kobject-uevent 1
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-udevd-control.socket:
Description: udev Control Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-udevd-control.socket
Documentation: man:systemd-udevd.service(8)
Documentation: man:udev(7)
Fragment Path: /lib/systemd/system/systemd-udevd-control.socket
(null): CAP_MKNOD
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sockets.target
WantedBy: systemd-udevd.service
Before: systemd-udev-trigger.service
Before: sockets.target
Before: systemd-udevd.service
After: -.mount
Triggers: systemd-udevd.service
References: sockets.target
References: systemd-udevd.service
References: -.mount
ReferencedBy: systemd-udev-trigger.service
ReferencedBy: sockets.target
ReferencedBy: systemd-udevd.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-udevd-control.socket
ControlGroup: name=systemd:/system/systemd-udevd-control.socket
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: no
TCPCongestion: n/a
ListenSequentialPacket: /run/udev/control
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit sockets.target:
Description: Sockets
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sockets.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/sockets.target
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Wants: acpid.socket
Wants: systemd-udevd-control.socket
Wants: systemd-initctl.socket
Wants: systemd-journald.socket
Wants: systemd-udevd-kernel.socket
Wants: dbus.socket
Wants: systemd-shutdownd.socket
WantedBy: basic.target
Conflicts: shutdown.target
Before: basic.target
After: systemd-udevd-control.socket
After: systemd-shutdownd.socket
After: dbus.socket
After: systemd-initctl.socket
After: acpid.socket
After: systemd-udevd-kernel.socket
After: syslog.socket
After: systemd-journald.socket
References: acpid.socket
References: systemd-udevd-control.socket
References: systemd-initctl.socket
References: systemd-journald.socket
References: systemd-udevd-kernel.socket
References: dbus.socket
References: systemd-shutdownd.socket
References: shutdown.target
ReferencedBy: systemd-udevd-control.socket
ReferencedBy: systemd-shutdownd.socket
ReferencedBy: dbus.socket
ReferencedBy: systemd-initctl.socket
ReferencedBy: acpid.socket
ReferencedBy: systemd-udevd-kernel.socket
ReferencedBy: syslog.socket
ReferencedBy: basic.target
ReferencedBy: systemd-journald.socket
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit acpid.socket:
Description: ACPID Listen Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: acpid.socket
Fragment Path: /lib/systemd/system/acpid.socket
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: sysinit.target
Requires: -.mount
RequiredBy: acpid.service
WantedBy: sockets.target
Conflicts: shutdown.target
Before: acpid.service
Before: sockets.target
Before: shutdown.target
After: sysinit.target
After: -.mount
Triggers: acpid.service
References: acpid.service
References: sockets.target
References: sysinit.target
References: shutdown.target
References: -.mount
ReferencedBy: sockets.target
ReferencedBy: acpid.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/acpid.socket
ControlGroup: name=systemd:/system/acpid.socket
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
ListenStream: /run/acpid.socket
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-initctl.socket:
Description: /dev/initctl Compatibility Named Pipe
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-initctl.socket
Documentation: man:systemd-initctl.service(8)
Fragment Path: /lib/systemd/system/systemd-initctl.socket
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sockets.target
Before: sockets.target
Before: systemd-initctl.service
After: -.mount
Triggers: systemd-initctl.service
References: sockets.target
References: systemd-initctl.service
References: -.mount
ReferencedBy: sockets.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-initctl.socket
ControlGroup: name=systemd:/system/systemd-initctl.socket
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
ListenFIFO: /dev/initctl
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit dbus.socket:
Description: D-Bus System Message Bus Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dbus.socket
Fragment Path: /lib/systemd/system/dbus.socket
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: sysinit.target
Requires: -.mount
Requires: var.mount
RequiredBy: systemd-logind.service
RequiredBy: dbus.service
WantedBy: sockets.target
Conflicts: shutdown.target
Before: dbus.service
Before: sockets.target
Before: shutdown.target
Before: systemd-logind.service
After: sysinit.target
After: -.mount
After: var.mount
Triggers: dbus.service
References: dbus.service
References: sockets.target
References: sysinit.target
References: shutdown.target
References: -.mount
References: var.mount
ReferencedBy: sockets.target
ReferencedBy: systemd-logind.service
ReferencedBy: dbus.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/dbus.socket
ControlGroup: name=systemd:/system/dbus.socket
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
ListenStream: /var/run/dbus/system_bus_socket
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-shutdownd.socket:
Description: Delayed Shutdown Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-shutdownd.socket
Documentation: man:systemd-shutdownd.service(8)
Fragment Path: /lib/systemd/system/systemd-shutdownd.socket
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: sockets.target
Before: sockets.target
Before: systemd-shutdownd.service
After: -.mount
Triggers: systemd-shutdownd.service
References: sockets.target
References: systemd-shutdownd.service
References: -.mount
ReferencedBy: sockets.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-shutdownd.socket
ControlGroup: name=systemd:/system/systemd-shutdownd.socket
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: yes
TCPCongestion: n/a
ListenDatagram: /run/systemd/shutdownd
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-shutdownd.service:
Description: Delayed Shutdown Service
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-shutdownd.service
Documentation: man:systemd-shutdownd.service(8)
Fragment Path: /lib/systemd/system/systemd-shutdownd.service
After: systemd-shutdownd.socket
After: systemd-journald.socket
TriggeredBy: systemd-shutdownd.socket
References: systemd-journald.socket
ReferencedBy: systemd-shutdownd.socket
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-shutdownd.service
ControlGroup: name=systemd:/system/systemd-shutdownd.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: all
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-shutdownd
-> Unit systemd-initctl.service:
Description: /dev/initctl Compatibility Daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-initctl.service
Documentation: man:systemd-initctl.service(8)
Fragment Path: /lib/systemd/system/systemd-initctl.service
After: systemd-initctl.socket
After: systemd-journald.socket
TriggeredBy: systemd-initctl.socket
References: systemd-journald.socket
ReferencedBy: systemd-initctl.socket
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-initctl.service
ControlGroup: name=systemd:/system/systemd-initctl.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: all
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-initctl
-> Unit systemd-readahead-collect.service:
Description: Collect Read-Ahead Data
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-readahead-collect.service
Documentation: man:systemd-readahead-replay.service(8)
Fragment Path: /lib/systemd/system/systemd-readahead-collect.service
ConditionVirtualization: no
ConditionPathExists: !/run/systemd/readahead/done
ConditionPathExists: !/run/systemd/readahead/cancel
Wants: systemd-readahead-done.timer
Conflicts: shutdown.target
Before: systemd-modules-load.service
Before: sysinit.target
Before: shutdown.target
Before: systemd-sysctl.service
Before: systemd-random-seed-load.service
Before: systemd-cryptsetup at storage.service
Before: systemd-fsck at dev-mapper-storage.service
Before: systemd-binfmt.service
Before: systemd-fsck-root.service
Before: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Before: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
Before: systemd-tmpfiles-setup.service
Before: systemd-remount-fs.service
Before: systemd-tmpfiles-clean.service
References: systemd-readahead-done.timer
References: shutdown.target
References: sysinit.target
ReferencedBy: systemd-modules-load.service
ReferencedBy: systemd-sysctl.service
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: systemd-cryptsetup at storage.service
ReferencedBy: systemd-fsck at dev-mapper-storage.service
ReferencedBy: systemd-binfmt.service
ReferencedBy: systemd-fsck-root.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
ReferencedBy: systemd-tmpfiles-setup.service
ReferencedBy: systemd-remount-fs.service
ReferencedBy: systemd-tmpfiles-clean.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-readahead-collect.service
ControlGroup: name=systemd:/system/systemd-readahead-collect.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: notify
Restart: no
NotifyAccess: main
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
OOMScoreAdjust: 1000
LimitNOFILE: 4096
StandardInput: null
StandardOutput: null
StandardError: inherit
-> ExecStart:
Command Line: /lib/systemd/systemd-readahead collect
-> Unit systemd-readahead-replay.service:
Description: Replay Read-Ahead Data
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-readahead-replay.service
Documentation: man:systemd-readahead-replay.service(8)
Fragment Path: /lib/systemd/system/systemd-readahead-replay.service
ConditionVirtualization: no
ConditionPathExists: /.readahead
ConditionPathExists: !/run/systemd/readahead/noreplay
Conflicts: shutdown.target
Before: systemd-modules-load.service
Before: sysinit.target
Before: shutdown.target
Before: systemd-sysctl.service
Before: systemd-random-seed-load.service
Before: systemd-cryptsetup at storage.service
Before: systemd-fsck at dev-mapper-storage.service
Before: systemd-binfmt.service
Before: systemd-fsck-root.service
Before: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Before: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
Before: systemd-tmpfiles-setup.service
Before: systemd-remount-fs.service
Before: systemd-tmpfiles-clean.service
References: shutdown.target
References: sysinit.target
ReferencedBy: systemd-modules-load.service
ReferencedBy: systemd-sysctl.service
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: systemd-cryptsetup at storage.service
ReferencedBy: systemd-fsck at dev-mapper-storage.service
ReferencedBy: systemd-binfmt.service
ReferencedBy: systemd-fsck-root.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
ReferencedBy: systemd-tmpfiles-setup.service
ReferencedBy: systemd-remount-fs.service
ReferencedBy: systemd-tmpfiles-clean.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-readahead-replay.service
ControlGroup: name=systemd:/system/systemd-readahead-replay.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: notify
Restart: no
NotifyAccess: main
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
OOMScoreAdjust: 1000
LimitNOFILE: 4096
StandardInput: null
StandardOutput: null
StandardError: inherit
-> ExecStart:
Command Line: /lib/systemd/systemd-readahead replay
-> Unit systemd-readahead-done.timer:
Description: Stop Read-Ahead Data Collection 10s After Completed Startup
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-readahead-done.timer
Documentation: man:systemd-readahead-replay.service(8)
Fragment Path: /lib/systemd/system/systemd-readahead-done.timer
WantedBy: systemd-readahead-collect.service
Conflicts: shutdown.target
Before: shutdown.target
Before: systemd-readahead-done.service
After: graphical.target
Triggers: systemd-readahead-done.service
References: shutdown.target
References: systemd-readahead-done.service
References: graphical.target
ReferencedBy: systemd-readahead-collect.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Timer State: dead
Result: success
Unit: systemd-readahead-done.service
OnActiveSec: 30s
-> Unit systemd-readahead-done.service:
Description: Stop Read-Ahead Data Collection
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-readahead-done.service
Documentation: man:systemd-readahead-replay.service(8)
Fragment Path: /lib/systemd/system/systemd-readahead-done.service
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-readahead-done.timer
After: systemd-journald.socket
After: graphical.target
TriggeredBy: systemd-readahead-done.timer
References: shutdown.target
References: systemd-journald.socket
References: graphical.target
ReferencedBy: systemd-readahead-done.timer
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-readahead-done.service
ControlGroup: name=systemd:/system/systemd-readahead-done.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /bin/systemd-notify --readahead=done
-> Unit syslog.socket:
Description: Syslog Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: syslog.socket
Documentation: man:systemd.special(7)
Documentation: http://www.freedesktop.org/wiki/Software/systemd/syslog
Fragment Path: /lib/systemd/system/syslog.socket
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
Wants: syslog.target
RequiredBy: rsyslog.service
Conflicts: shutdown.target
Before: systemd-journald.service
Before: sockets.target
Before: syslog.target
Before: shutdown.target
Before: rsyslog.service
After: -.mount
Triggers: rsyslog.service
References: sockets.target
References: syslog.target
References: shutdown.target
References: rsyslog.service
References: -.mount
ReferencedBy: systemd-journald.service
ReferencedBy: rsyslog.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/syslog.socket
ControlGroup: name=systemd:/system/syslog.socket
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: yes
TCPCongestion: n/a
ReceiveBuffer: 8388608
ListenDatagram: /run/systemd/journal/syslog
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit syslog.target:
Description: Syslog
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: syslog.target
Documentation: man:systemd.special(7)
Documentation: http://www.freedesktop.org/wiki/Software/systemd/syslog
Fragment Path: /lib/systemd/system/syslog.target
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
WantedBy: syslog.socket
Before: sysstat.service
Before: cron.service
Before: ssh.service
Before: ntp.service
Before: denyhosts.service
Before: postgresql.service
Before: mysql.service
Before: postfix.service
Before: fail2ban.service
Before: knot.service
Before: openvpn.service
Before: apache2.service
After: syslog.socket
After: systemd-journald.socket
ReferencedBy: syslog.socket
ReferencedBy: systemd-journald.socket
ReferencedBy: sysstat.service
ReferencedBy: cron.service
ReferencedBy: ssh.service
ReferencedBy: ntp.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: mysql.service
ReferencedBy: postfix.service
ReferencedBy: fail2ban.service
ReferencedBy: knot.service
ReferencedBy: openvpn.service
ReferencedBy: apache2.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit var-run.mount:
Description: var-run.mount
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: var-run.mount
After: debian-fixup.service
ReferencedBy: debian-fixup.service
Load Error Code: No such file or directory
-> Unit var-lock.mount:
Description: var-lock.mount
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: var-lock.mount
After: debian-fixup.service
ReferencedBy: debian-fixup.service
Load Error Code: No such file or directory
-> Unit local-fs-pre.target:
Description: Local File Systems (Pre)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:20 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:20 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: local-fs-pre.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/local-fs-pre.target
Condition Timestamp: Wed 2014-02-05 12:21:20 CET
Condition Result: yes
WantedBy: systemd-remount-fs.service
Conflicts: shutdown.target
Before: storage.mount
Before: local-fs.target
Before: run-user.mount
Before: run-lock.mount
Before: home.mount
Before: var.mount
Before: var-lib-transmission\x2ddaemon.mount
After: systemd-udevd.service
After: systemd-remount-fs.service
References: shutdown.target
ReferencedBy: systemd-udevd.service
ReferencedBy: storage.mount
ReferencedBy: local-fs.target
ReferencedBy: run-user.mount
ReferencedBy: run-lock.mount
ReferencedBy: home.mount
ReferencedBy: var.mount
ReferencedBy: var-lib-transmission\x2ddaemon.mount
ReferencedBy: systemd-remount-fs.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit systemd-cryptsetup at storage.service:
Description: Cryptography Setup for storage
Instance: storage
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-cryptsetup at storage.service
Documentation: man:systemd-cryptsetup at .service(8)
Documentation: man:crypttab(5)
Fragment Path: /run/systemd/generator/systemd-cryptsetup at storage.service
Source Path: /etc/crypttab
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
BindsTo: dev-mapper-storage.device
BindsTo: dev-disk-by\x2duuid-1deff056\x2df098\x2d4fa9\x2da96d\x2de0e7ed6bf7a6.device
RequiredBy: cryptsetup.target
RequiredBy: dev-mapper-storage.device
WantedBy: dev-disk-by\x2duuid-1deff056\x2df098\x2d4fa9\x2da96d\x2de0e7ed6bf7a6.device
Conflicts: umount.target
Before: cryptsetup.target
Before: umount.target
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: dev-disk-by\x2duuid-1deff056\x2df098\x2d4fa9\x2da96d\x2de0e7ed6bf7a6.device
After: systemd-journald.socket
References: umount.target
References: dev-mapper-storage.device
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: cryptsetup.target
References: dev-disk-by\x2duuid-1deff056\x2df098\x2d4fa9\x2da96d\x2de0e7ed6bf7a6.device
References: systemd-journald.socket
ReferencedBy: cryptsetup.target
ReferencedBy: dev-disk-by\x2duuid-1deff056\x2df098\x2d4fa9\x2da96d\x2de0e7ed6bf7a6.device
ReferencedBy: dev-mapper-storage.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-cryptsetup at .service/systemd-cryptsetup at storage.service
ControlGroup: name=systemd:/system/systemd-cryptsetup at .service/systemd-cryptsetup at storage.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-cryptsetup attach storage /dev/disk/by-uuid/1deff056-f098-4fa9-a96d-e0e7ed6bf7a6 none
-> ExecStop:
Command Line: /lib/systemd/systemd-cryptsetup detach storage
-> Unit dev-mapper-storage.device:
Description: /dev/mapper/storage
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-mapper-storage.device
Following: sys-devices-virtual-block-dm\x2d0.device
DropIn Path: /run/systemd/generator/dev-mapper-storage.device.d/50-job-timeout-sec-0.conf
Requires: systemd-cryptsetup at storage.service
Wants: storage.mount
BoundBy: systemd-cryptsetup at storage.service
BoundBy: storage.mount
BoundBy: systemd-fsck at dev-mapper-storage.service
Before: storage.mount
Before: systemd-fsck at dev-mapper-storage.service
References: storage.mount
References: systemd-cryptsetup at storage.service
ReferencedBy: systemd-cryptsetup at storage.service
ReferencedBy: storage.mount
ReferencedBy: systemd-fsck at dev-mapper-storage.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-disk-by\x2duuid-1deff056\x2df098\x2d4fa9\x2da96d\x2de0e7ed6bf7a6.device:
Description: /dev/disk/by-uuid/1deff056-f098-4fa9-a96d-e0e7ed6bf7a6
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2duuid-1deff056\x2df098\x2d4fa9\x2da96d\x2de0e7ed6bf7a6.device
Following: sys-devices-pci0000:00-0000:00:06.0-virtio3-block-vdb-vdb1.device
Job Timeout: 1min 30s
Wants: systemd-cryptsetup at storage.service
BoundBy: systemd-cryptsetup at storage.service
Before: systemd-cryptsetup at storage.service
References: systemd-cryptsetup at storage.service
ReferencedBy: systemd-cryptsetup at storage.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:06.0/virtio3/block/vdb/vdb1
-> Unit storage.mount:
Description: /storage
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:43 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: storage.mount
Fragment Path: /run/systemd/generator/storage.mount
Source Path: /etc/fstab
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
Requires: systemd-fsck at dev-mapper-storage.service
Requires: -.mount
BindsTo: dev-mapper-storage.device
RequiredBy: local-fs.target
RequiredBy: var-lib-transmission\x2ddaemon.mount
WantedBy: dev-mapper-storage.device
Conflicts: umount.target
Before: umount.target
Before: local-fs.target
Before: var-lib-transmission\x2ddaemon.mount
After: local-fs-pre.target
After: systemd-journald.socket
After: dev-mapper-storage.device
After: systemd-fsck at dev-mapper-storage.service
After: -.mount
References: local-fs-pre.target
References: umount.target
References: local-fs.target
References: systemd-journald.socket
References: dev-mapper-storage.device
References: systemd-fsck at dev-mapper-storage.service
References: -.mount
ReferencedBy: dev-mapper-storage.device
ReferencedBy: local-fs.target
ReferencedBy: var-lib-transmission\x2ddaemon.mount
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/storage.mount
ControlGroup: name=systemd:/system/storage.mount
Mount State: mounted
Result: success
Where: /storage
What: /dev/mapper/storage
File System Type: ext4
Options: rw,relatime,rw,data=ordered
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-fsck at dev-mapper-storage.service:
Description: File System Check on /dev/mapper/storage
Instance: dev-mapper-storage
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:22:43 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:22:43 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-fsck at dev-mapper-storage.service
Documentation: man:systemd-fsck at .service(8)
Fragment Path: /lib/systemd/system/systemd-fsck at .service
Condition Timestamp: Wed 2014-02-05 12:22:43 CET
Condition Result: yes
BindsTo: dev-mapper-storage.device
RequiredBy: storage.mount
Before: storage.mount
Before: shutdown.target
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: dev-mapper-storage.device
After: systemd-journald.socket
After: systemd-fsck-root.service
After: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
After: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
References: dev-mapper-storage.device
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: shutdown.target
References: systemd-journald.socket
ReferencedBy: storage.mount
ReferencedBy: systemd-fsck-root.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-fsck at .service/systemd-fsck at dev-mapper-storage.service
ControlGroup: name=systemd:/system/systemd-fsck at .service/systemd-fsck at dev-mapper-storage.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal+console
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-fsck %f
FsckPassNo: 3
-> Unit paths.target:
Description: Paths
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: paths.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/paths.target
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
WantedBy: basic.target
Conflicts: shutdown.target
Before: basic.target
After: systemd-ask-password-console.path
After: systemd-ask-password-wall.path
References: shutdown.target
ReferencedBy: systemd-ask-password-console.path
ReferencedBy: systemd-ask-password-wall.path
ReferencedBy: basic.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit systemd-ask-password-console.service:
Description: Dispatch Password Requests to Console
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Inactive Enter Timestamp: Wed 2014-02-05 12:22:44 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-ask-password-console.service
Documentation: man:systemd-ask-password-console.service(8)
Fragment Path: /lib/systemd/system/systemd-ask-password-console.service
ConditionPathExists: !/run/plymouth/pid
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-ask-password-console.path
After: plymouth-start.service
After: systemd-vconsole-setup.service
After: systemd-journald.socket
TriggeredBy: systemd-ask-password-console.path
References: shutdown.target
References: plymouth-start.service
References: systemd-vconsole-setup.service
References: systemd-journald.socket
ReferencedBy: systemd-ask-password-console.path
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-ask-password-console.service
ControlGroup: name=systemd:/system/systemd-ask-password-console.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /bin/systemd-tty-ask-password-agent --watch --console
-> Unit systemd-vconsole-setup.service:
Description: systemd-vconsole-setup.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: systemd-vconsole-setup.service
Before: systemd-ask-password-console.service
ReferencedBy: systemd-ask-password-console.service
Load Error Code: No such file or directory
-> Unit proc-sys-fs-binfmt_misc.mount:
Description: Arbitrary Executable File Formats File System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 13:27:42 CET
Active Enter Timestamp: Wed 2014-02-05 13:27:42 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: proc-sys-fs-binfmt_misc.mount
Documentation: https://www.kernel.org/doc/Documentation/binfmt_misc.txt
Documentation: http://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/proc-sys-fs-binfmt_misc.mount
Condition Timestamp: Wed 2014-02-05 13:27:42 CET
Condition Result: yes
Requires: -.mount
After: proc-sys-fs-binfmt_misc.automount
After: systemd-journald.socket
After: -.mount
TriggeredBy: proc-sys-fs-binfmt_misc.automount
References: systemd-journald.socket
References: -.mount
ReferencedBy: proc-sys-fs-binfmt_misc.automount
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/proc-sys-fs-binfmt_misc.mount
ControlGroup: name=systemd:/system/proc-sys-fs-binfmt_misc.mount
Mount State: mounted
Result: success
Where: /proc/sys/fs/binfmt_misc
What: binfmt_misc
File System Type: binfmt_misc
Options: rw,relatime,rw
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap:
Description: /dev/disk/by-uuid/56d45e72-e4da-4139-bd6f-90f284c61a68
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
Following: dev-vda5.swap
Fragment Path: /run/systemd/generator/dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
Source Path: /etc/fstab
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
BindsTo: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.device
WantedBy: swap.target
WantedBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.device
Conflicts: umount.target
Before: umount.target
Before: swap.target
After: systemd-journald.socket
After: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.device
References: umount.target
References: swap.target
References: systemd-journald.socket
References: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.device
ReferencedBy: swap.target
ReferencedBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
ControlGroup: name=systemd:/system/dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
Swap State: active
Result: success
What: /dev/disk/by-uuid/56d45e72-e4da-4139-bd6f-90f284c61a68
From /proc/swaps: yes
From fragment: yes
Priority: -1
NoAuto: no
NoFail: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.device:
Description: /dev/disk/by-uuid/56d45e72-e4da-4139-bd6f-90f284c61a68
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda5.device
Job Timeout: 1min 30s
Wants: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
BoundBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
Before: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
References: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
ReferencedBy: dev-disk-by\x2duuid-56d45e72\x2de4da\x2d4139\x2dbd6f\x2d90f284c61a68.swap
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda5
-> Unit var-lib-transmission\x2ddaemon.mount:
Description: /var/lib/transmission-daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 13:05:26 CET
Active Enter Timestamp: Wed 2014-02-05 13:05:26 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: var-lib-transmission\x2ddaemon.mount
Fragment Path: /run/systemd/generator/var-lib-transmission\x2ddaemon.mount
Source Path: /etc/fstab
Requires: -.mount
Requires: var.mount
Requires: storage.mount
RequiredBy: local-fs.target
Conflicts: umount.target
Before: umount.target
Before: local-fs.target
After: local-fs-pre.target
After: systemd-journald.socket
After: -.mount
After: var.mount
After: storage.mount
References: local-fs-pre.target
References: umount.target
References: local-fs.target
References: systemd-journald.socket
References: -.mount
References: var.mount
References: storage.mount
ReferencedBy: local-fs.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/var-lib-transmission\x2ddaemon.mount
ControlGroup: name=systemd:/system/var-lib-transmission\x2ddaemon.mount
Mount State: mounted
Result: success
Where: /var/lib/transmission-daemon
What: /dev/mapper/storage
File System Type: ext4
Options: rw,relatime,rw,data=ordered
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit var.mount:
Description: /var
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:20 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:20 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: var.mount
Fragment Path: /run/systemd/generator/var.mount
Source Path: /etc/fstab
Condition Timestamp: Wed 2014-02-05 12:21:20 CET
Condition Result: yes
Requires: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
Requires: -.mount
BindsTo: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
RequiredBy: local-fs.target
RequiredBy: dbus.socket
RequiredBy: systemd-random-seed-load.service
RequiredBy: systemd-update-utmp-runlevel.service
RequiredBy: systemd-update-utmp-shutdown.service
RequiredBy: var-lib-transmission\x2ddaemon.mount
RequiredBy: systemd-random-seed-save.service
WantedBy: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
Conflicts: umount.target
Before: umount.target
Before: local-fs.target
Before: dbus.socket
Before: systemd-random-seed-load.service
Before: systemd-update-utmp-runlevel.service
Before: systemd-update-utmp-shutdown.service
Before: var-lib-transmission\x2ddaemon.mount
Before: systemd-random-seed-save.service
After: local-fs-pre.target
After: systemd-journald.socket
After: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
After: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
After: -.mount
References: local-fs-pre.target
References: umount.target
References: local-fs.target
References: systemd-journald.socket
References: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
References: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
References: -.mount
ReferencedBy: local-fs.target
ReferencedBy: dbus.socket
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: systemd-update-utmp-runlevel.service
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
ReferencedBy: var-lib-transmission\x2ddaemon.mount
ReferencedBy: systemd-random-seed-save.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/var.mount
ControlGroup: name=systemd:/system/var.mount
Mount State: mounted
Result: success
Where: /var
What: /dev/vda7
File System Type: ext4
Options: rw,relatime,rw,data=ordered
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit home.mount:
Description: /home
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:20 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:20 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: home.mount
Fragment Path: /run/systemd/generator/home.mount
Source Path: /etc/fstab
Condition Timestamp: Wed 2014-02-05 12:21:20 CET
Condition Result: yes
Requires: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Requires: -.mount
BindsTo: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
RequiredBy: local-fs.target
WantedBy: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
Conflicts: umount.target
Before: umount.target
Before: local-fs.target
After: local-fs-pre.target
After: systemd-journald.socket
After: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
After: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
After: -.mount
References: local-fs-pre.target
References: umount.target
References: local-fs.target
References: systemd-journald.socket
References: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
References: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
References: -.mount
ReferencedBy: local-fs.target
ReferencedBy: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/home.mount
ControlGroup: name=systemd:/system/home.mount
Mount State: mounted
Result: success
Where: /home
What: /dev/vda6
File System Type: ext4
Options: rw,relatime,rw,data=ordered
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit -.mount:
Description: /
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: -.mount
Fragment Path: /run/systemd/generator/-.mount
Source Path: /etc/fstab
RequiredBy: local-fs.target
RequiredBy: run-user.mount
RequiredBy: run-lock.mount
RequiredBy: proc-sys-fs-binfmt_misc.mount
RequiredBy: storage.mount
RequiredBy: sys-fs-fuse-connections.mount
RequiredBy: dev-mqueue.mount
RequiredBy: sys-kernel-config.mount
RequiredBy: dev-hugepages.mount
RequiredBy: sys-kernel-debug.mount
RequiredBy: syslog.socket
RequiredBy: systemd-shutdownd.socket
RequiredBy: dbus.socket
RequiredBy: systemd-initctl.socket
RequiredBy: acpid.socket
RequiredBy: systemd-udevd-control.socket
RequiredBy: systemd-ask-password-console.path
RequiredBy: systemd-random-seed-load.service
RequiredBy: systemd-update-utmp-runlevel.service
RequiredBy: systemd-update-utmp-shutdown.service
RequiredBy: proc-sys-fs-binfmt_misc.automount
RequiredBy: home.mount
RequiredBy: var.mount
RequiredBy: var-lib-transmission\x2ddaemon.mount
RequiredBy: systemd-ask-password-wall.path
RequiredBy: systemd-random-seed-save.service
RequiredBy: systemd-journald.socket
Before: local-fs.target
Before: run-user.mount
Before: run-lock.mount
Before: proc-sys-fs-binfmt_misc.mount
Before: storage.mount
Before: sys-fs-fuse-connections.mount
Before: dev-mqueue.mount
Before: sys-kernel-config.mount
Before: dev-hugepages.mount
Before: sys-kernel-debug.mount
Before: syslog.socket
Before: systemd-shutdownd.socket
Before: dbus.socket
Before: systemd-initctl.socket
Before: acpid.socket
Before: systemd-udevd-control.socket
Before: systemd-ask-password-console.path
Before: systemd-random-seed-load.service
Before: systemd-update-utmp-runlevel.service
Before: systemd-update-utmp-shutdown.service
Before: proc-sys-fs-binfmt_misc.automount
Before: home.mount
Before: var.mount
Before: var-lib-transmission\x2ddaemon.mount
Before: systemd-ask-password-wall.path
Before: systemd-random-seed-save.service
Before: systemd-journald.socket
References: local-fs.target
ReferencedBy: local-fs.target
ReferencedBy: run-user.mount
ReferencedBy: run-lock.mount
ReferencedBy: proc-sys-fs-binfmt_misc.mount
ReferencedBy: storage.mount
ReferencedBy: sys-fs-fuse-connections.mount
ReferencedBy: dev-mqueue.mount
ReferencedBy: sys-kernel-config.mount
ReferencedBy: dev-hugepages.mount
ReferencedBy: sys-kernel-debug.mount
ReferencedBy: syslog.socket
ReferencedBy: systemd-shutdownd.socket
ReferencedBy: dbus.socket
ReferencedBy: systemd-initctl.socket
ReferencedBy: acpid.socket
ReferencedBy: systemd-udevd-control.socket
ReferencedBy: systemd-ask-password-console.path
ReferencedBy: systemd-random-seed-load.service
ReferencedBy: systemd-update-utmp-runlevel.service
ReferencedBy: systemd-update-utmp-shutdown.service
ReferencedBy: proc-sys-fs-binfmt_misc.automount
ReferencedBy: home.mount
ReferencedBy: var.mount
ReferencedBy: var-lib-transmission\x2ddaemon.mount
ReferencedBy: systemd-ask-password-wall.path
ReferencedBy: systemd-random-seed-save.service
ReferencedBy: systemd-journald.socket
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: yes
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/-.mount
ControlGroup: name=systemd:/system/-.mount
Mount State: mounted
Result: success
Where: /
What: /dev/disk/by-uuid/81fbbb9c-d096-4d2d-93c7-6637ce90b41e
File System Type: ext3
Options: rw,relatime,rw,errors=remount-ro,data=ordered
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: inherit
StandardError: inherit
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit run-lock.mount:
Description: Lock Directory
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:20 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:20 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: run-lock.mount
Fragment Path: /lib/systemd/system/run-lock.mount
Condition Timestamp: Wed 2014-02-05 12:21:20 CET
Condition Result: yes
Requires: -.mount
WantedBy: local-fs.target
Conflicts: umount.target
Before: local-fs.target
Before: umount.target
After: systemd-journald.socket
After: local-fs-pre.target
After: -.mount
References: local-fs.target
References: systemd-journald.socket
References: local-fs-pre.target
References: umount.target
References: -.mount
ReferencedBy: local-fs.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/run-lock.mount
ControlGroup: name=systemd:/system/run-lock.mount
Mount State: mounted
Result: success
Where: /run/lock
What: tmpfs
File System Type: tmpfs
Options: rw,nosuid,nodev,noexec,relatime,rw,size=5120k
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit run-user.mount:
Description: User Runtime Directory
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:20 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:20 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: run-user.mount
Fragment Path: /lib/systemd/system/run-user.mount
Condition Timestamp: Wed 2014-02-05 12:21:20 CET
Condition Result: yes
Requires: -.mount
WantedBy: local-fs.target
Conflicts: umount.target
Before: local-fs.target
Before: umount.target
After: systemd-journald.socket
After: local-fs-pre.target
After: -.mount
References: local-fs.target
References: systemd-journald.socket
References: local-fs-pre.target
References: umount.target
References: -.mount
ReferencedBy: local-fs.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/run-user.mount
ControlGroup: name=systemd:/system/run-user.mount
Mount State: mounted
Result: success
Where: /run/user
What: tmpfs
File System Type: tmpfs
Options: rw,nosuid,nodev,noexec,relatime,rw,size=102400k,mode=755
From /proc/self/mountinfo: yes
From fragment: yes
DirectoryMode: 0755
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit systemd-fsck-root.service:
Description: File System Check on Root Device
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:21:19 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-fsck-root.service
Documentation: man:systemd-fsck at .service(8)
Fragment Path: /lib/systemd/system/systemd-fsck-root.service
ConditionPathIsReadWrite: !/
ConditionPathExists: !/run/initramfs/root-fsck
Condition Timestamp: Wed 2014-02-05 12:22:18 CET
Condition Result: no
WantedBy: local-fs.target
Before: local-fs.target
Before: shutdown.target
Before: systemd-fsck at dev-mapper-storage.service
Before: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Before: systemd-remount-fs.service
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: systemd-journald.socket
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: local-fs.target
References: shutdown.target
References: systemd-journald.socket
References: systemd-fsck at dev-mapper-storage.service
ReferencedBy: local-fs.target
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
ReferencedBy: systemd-remount-fs.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-fsck-root.service
ControlGroup: name=systemd:/system/systemd-fsck-root.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal+console
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-fsck
FsckPassNo: 1
-> Unit dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device:
Description: /dev/disk/by-uuid/ad42fbfd-43c6-4bbd-974c-878e852f42ff
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda6.device
Job Timeout: 1min 30s
Wants: home.mount
BoundBy: home.mount
BoundBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Before: home.mount
Before: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
References: home.mount
ReferencedBy: home.mount
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda6
-> Unit systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service:
Description: File System Check on /dev/disk/by-uuid/ad42fbfd-43c6-4bbd-974c-878e852f42ff
Instance: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:21:20 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Documentation: man:systemd-fsck at .service(8)
Fragment Path: /lib/systemd/system/systemd-fsck at .service
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
BindsTo: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
RequiredBy: home.mount
Before: home.mount
Before: shutdown.target
Before: systemd-fsck at dev-mapper-storage.service
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
After: systemd-journald.socket
After: systemd-fsck-root.service
After: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
References: dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.device
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: shutdown.target
References: systemd-journald.socket
References: systemd-fsck-root.service
References: systemd-fsck at dev-mapper-storage.service
ReferencedBy: home.mount
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-fsck at .service/systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
ControlGroup: name=systemd:/system/systemd-fsck at .service/systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal+console
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-fsck %f
FsckPassNo: 2
-> Unit dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device:
Description: /dev/disk/by-uuid/8b6a4fab-31a3-4351-b824-8b123efe9228
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda7.device
Job Timeout: 1min 30s
Wants: var.mount
BoundBy: var.mount
BoundBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
Before: var.mount
Before: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
References: var.mount
ReferencedBy: var.mount
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda7
-> Unit systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service:
Description: File System Check on /dev/disk/by-uuid/8b6a4fab-31a3-4351-b824-8b123efe9228
Instance: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:21:19 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
Documentation: man:systemd-fsck at .service(8)
Fragment Path: /lib/systemd/system/systemd-fsck at .service
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
BindsTo: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
RequiredBy: var.mount
Before: var.mount
Before: shutdown.target
Before: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
Before: systemd-fsck at dev-mapper-storage.service
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
After: systemd-journald.socket
References: dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.device
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: shutdown.target
References: systemd-journald.socket
References: systemd-fsck at dev-disk-by\x2duuid-ad42fbfd\x2d43c6\x2d4bbd\x2d974c\x2d878e852f42ff.service
References: systemd-fsck at dev-mapper-storage.service
ReferencedBy: var.mount
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-fsck at .service/systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
ControlGroup: name=systemd:/system/systemd-fsck at .service/systemd-fsck at dev-disk-by\x2duuid-8b6a4fab\x2d31a3\x2d4351\x2db824\x2d8b123efe9228.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal+console
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /lib/systemd/systemd-fsck %f
FsckPassNo: 1
-> Unit rc-local.service:
Description: /etc/rc.local Compatibility
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: rc-local.service
Name: rc.local.service
Fragment Path: /lib/systemd/system/rc-local.service
(null): /etc/rc.local
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: getty at tty1.service
Before: shutdown.target
Before: multi-user.target
After: network.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: getty at tty1.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/rc-local.service
ControlGroup: name=systemd:/system/rc-local.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /etc/rc.local start
SysVStartPriority: 99
-> Unit systemd-logind.service:
Description: Login Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-logind.service
Documentation: man:systemd-logind.service(8)
Documentation: man:logind.conf(5)
Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
Fragment Path: /lib/systemd/system/systemd-logind.service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: dbus.socket
Requires: basic.target
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: shutdown.target
Before: multi-user.target
After: nss-user-lookup.target
After: systemd-journald.socket
After: dbus.socket
After: basic.target
References: nss-user-lookup.target
References: systemd-journald.socket
References: dbus.socket
References: basic.target
References: shutdown.target
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-logind.service
ControlGroup: name=systemd:/system/systemd-logind.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: dbus
Restart: always
NotifyAccess: none
Main PID: 649
Main PID Known: yes
Main PID Alien: no
BusName: org.freedesktop.login1
Bus Name Good: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 16384
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
CapabilityBoundingSet: cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_kill cap_sys_tty_config cap_audit_control
-> ExecStart:
Command Line: /lib/systemd/systemd-logind
-> Unit systemd-ask-password-wall.path:
Description: Forward Password Requests to Wall Directory Watch
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-ask-password-wall.path
Documentation: man:systemd-ask-password-console.service(8)
Fragment Path: /lib/systemd/system/systemd-ask-password-wall.path
Condition Timestamp: Wed 2014-02-05 12:21:19 CET
Condition Result: yes
Requires: -.mount
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: paths.target
Before: shutdown.target
Before: systemd-ask-password-wall.service
After: -.mount
Triggers: systemd-ask-password-wall.service
References: shutdown.target
References: paths.target
References: systemd-ask-password-wall.service
References: -.mount
ReferencedBy: multi-user.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Path State: waiting
Result: success
Unit: systemd-ask-password-wall.service
MakeDirectory: yes
DirectoryMode: 0755
DirectoryNotEmpty: /run/systemd/ask-password
-> Unit getty.target:
Description: Login Prompts
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: getty.target
Documentation: man:systemd.special(7)
Documentation: man:systemd-getty-generator(8)
Documentation: http://0pointer.de/blog/projects/serial-console.html
Fragment Path: /lib/systemd/system/getty.target
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Wants: getty at tty1.service
WantedBy: multi-user.target
Conflicts: shutdown.target
Before: multi-user.target
After: getty at tty1.service
References: getty at tty1.service
References: shutdown.target
ReferencedBy: multi-user.target
ReferencedBy: getty at tty1.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit getty at tty1.service:
Description: Getty on tty1
Instance: tty1
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Thu 2014-02-06 11:11:45 CET
Active Enter Timestamp: Thu 2014-02-06 11:11:45 CET
Active Exit Timestamp: Thu 2014-02-06 11:11:45 CET
Inactive Enter Timestamp: Thu 2014-02-06 11:11:45 CET
GC Check Good: yes
Need Daemon Reload: no
Name: getty at tty1.service
Documentation: man:agetty(8)
Documentation: man:systemd-getty-generator(8)
Documentation: http://0pointer.de/blog/projects/serial-console.html
Fragment Path: /lib/systemd/system/getty at .service
ConditionPathExists: /dev/tty0
Condition Timestamp: Thu 2014-02-06 11:11:45 CET
Condition Result: yes
Requires: basic.target
WantedBy: getty.target
Conflicts: shutdown.target
Before: getty.target
Before: shutdown.target
After: systemd-user-sessions.service
After: plymouth-quit-wait.service
After: rc-local.service
After: systemd-journald.socket
After: basic.target
References: systemd-user-sessions.service
References: plymouth-quit-wait.service
References: rc-local.service
References: getty.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: getty.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/getty at .service/getty at tty1.service
ControlGroup: name=systemd:/system/getty at .service/getty at tty1.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: idle
Restart: always
NotifyAccess: none
Main PID: 4944
Main PID Known: yes
Main PID Alien: no
KillMode: process
KillSignal: SIGHUP
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: no
Environment: LANG=
Environment: LANGUAGE=
Environment: LC_CTYPE=
Environment: LC_NUMERIC=
Environment: LC_TIME=
Environment: LC_COLLATE=
Environment: LC_MONETARY=
Environment: LC_MESSAGES=
Environment: LC_PAPER=
Environment: LC_NAME=
Environment: LC_ADDRESS=
Environment: LC_TELEPHONE=
Environment: LC_MEASUREMENT=
Environment: LC_IDENTIFICATION=
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
TTYPath: /dev/tty1
TTYReset: yes
TTYVHangup: yes
TTYVTDisallocate: yes
SyslogFacility: daemon
SyslogLevel: info
UtmpIdentifier: tty1
-> ExecStart:
Command Line: /sbin/agetty --noclear %I 38400 linux
PID: 4944
Start Timestamp: Thu 2014-02-06 11:11:45 CET
-> Unit plymouth-quit-wait.service:
Description: plymouth-quit-wait.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: plymouth-quit-wait.service
Before: getty at tty1.service
ReferencedBy: getty at tty1.service
Load Error Code: No such file or directory
-> Unit systemd-ask-password-wall.service:
Description: Forward Password Requests to Wall
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: Thu 2014-02-06 11:04:31 CET
Inactive Enter Timestamp: Thu 2014-02-06 11:04:31 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-ask-password-wall.service
Documentation: man:systemd-ask-password-console.service(8)
Fragment Path: /lib/systemd/system/systemd-ask-password-wall.service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: systemd-ask-password-wall.path
After: systemd-user-sessions.service
After: systemd-journald.socket
After: basic.target
TriggeredBy: systemd-ask-password-wall.path
References: systemd-user-sessions.service
References: systemd-journald.socket
References: basic.target
References: shutdown.target
ReferencedBy: systemd-ask-password-wall.path
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-ask-password-wall.service
ControlGroup: name=systemd:/system/systemd-ask-password-wall.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStartPre:
Command Line: /bin/systemctl stop systemd-ask-password-console.path systemd-ask-password-console.service systemd-ask-password-plymouth.path systemd-ask-password-plymouth.service
-> ExecStart:
Command Line: /bin/systemd-tty-ask-password-agent --wall
-> Unit nss-user-lookup.target:
Description: User and Group Name Lookups
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: nss-user-lookup.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/nss-user-lookup.target
Conflicts: shutdown.target
Before: systemd-logind.service
References: shutdown.target
ReferencedBy: systemd-logind.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit network.target:
Description: Network
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: network.target
Documentation: man:systemd.special(7)
Documentation: http://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
Fragment Path: /lib/systemd/system/network.target
Conflicts: shutdown.target
Before: rc-local.service
Before: php5-fpm.service
Before: cron.service
Before: ntp.service
Before: denyhosts.service
Before: postgresql.service
Before: samba-ad-dc.service
Before: mysql.service
Before: postfix.service
Before: nginx.service
Before: fail2ban.service
Before: knot.service
Before: smbd.service
Before: openvpn.service
Before: nmbd.service
Before: transmission-daemon.service
Before: apache2.service
Before: transmission-daemon-private.service
References: shutdown.target
ReferencedBy: rc-local.service
ReferencedBy: php5-fpm.service
ReferencedBy: cron.service
ReferencedBy: ntp.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: samba-ad-dc.service
ReferencedBy: mysql.service
ReferencedBy: postfix.service
ReferencedBy: nginx.service
ReferencedBy: fail2ban.service
ReferencedBy: knot.service
ReferencedBy: smbd.service
ReferencedBy: openvpn.service
ReferencedBy: nmbd.service
ReferencedBy: transmission-daemon.service
ReferencedBy: apache2.service
ReferencedBy: transmission-daemon-private.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit timers.target:
Description: Timers
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: timers.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/timers.target
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Wants: systemd-tmpfiles-clean.timer
WantedBy: basic.target
Conflicts: shutdown.target
Before: basic.target
After: systemd-tmpfiles-clean.timer
References: systemd-tmpfiles-clean.timer
References: shutdown.target
ReferencedBy: basic.target
ReferencedBy: systemd-tmpfiles-clean.timer
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: active
-> Unit systemd-tmpfiles-clean.timer:
Description: Daily Cleanup of Temporary Directories
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: systemd-tmpfiles-clean.timer
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-clean.timer
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: sysinit.target
WantedBy: timers.target
Conflicts: shutdown.target
Before: systemd-tmpfiles-clean.service
Before: timers.target
Before: shutdown.target
After: sysinit.target
Triggers: systemd-tmpfiles-clean.service
References: systemd-tmpfiles-clean.service
References: timers.target
References: sysinit.target
References: shutdown.target
ReferencedBy: timers.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Timer State: waiting
Result: success
Unit: systemd-tmpfiles-clean.service
OnUnitActiveSec: 1d
OnBootSec: 15min
-> Unit systemd-tmpfiles-clean.service:
Description: Cleanup of Temporary Directories
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: Wed 2014-02-05 12:36:18 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2014-02-05 12:36:18 CET
GC Check Good: no
Need Daemon Reload: no
Name: systemd-tmpfiles-clean.service
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-clean.service
ConditionDirectoryNotEmpty: |/run/tmpfiles.d
ConditionDirectoryNotEmpty: |/etc/tmpfiles.d
ConditionDirectoryNotEmpty: |/usr/local/lib/tmpfiles.d
ConditionDirectoryNotEmpty: |/usr/lib/tmpfiles.d
Condition Timestamp: Wed 2014-02-05 12:36:18 CET
Condition Result: yes
Wants: local-fs.target
Before: sysinit.target
Before: shutdown.target
After: systemd-tmpfiles-clean.timer
After: systemd-readahead-collect.service
After: systemd-readahead-replay.service
After: local-fs.target
After: systemd-journald.socket
TriggeredBy: systemd-tmpfiles-clean.timer
References: local-fs.target
References: systemd-readahead-collect.service
References: systemd-readahead-replay.service
References: sysinit.target
References: shutdown.target
References: systemd-journald.socket
ReferencedBy: systemd-tmpfiles-clean.timer
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/systemd-tmpfiles-clean.service
ControlGroup: name=systemd:/system/systemd-tmpfiles-clean.service
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
IOSchedulingClass: idle
IOPriority: 0
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /bin/systemd-tmpfiles --clean
-> Unit keymap.service:
Description: keymap.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: keymap.service
Before: keyboard-setup.service
ReferencedBy: keyboard-setup.service
Load Error Code: No such file or directory
-> Unit console-screen.service:
Description: console-screen.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: console-screen.service
Before: console-setup.service
ReferencedBy: console-setup.service
Load Error Code: No such file or directory
-> Unit time-sync.target:
Description: System Time Synchronized
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: time-sync.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/time-sync.target
Conflicts: shutdown.target
Before: cron.service
Before: denyhosts.service
Before: postgresql.service
Before: mysql.service
Before: postfix.service
Before: fail2ban.service
References: shutdown.target
ReferencedBy: cron.service
ReferencedBy: denyhosts.service
ReferencedBy: postgresql.service
ReferencedBy: mysql.service
ReferencedBy: postfix.service
ReferencedBy: fail2ban.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit nss-lookup.target:
Description: Host and Network Name Lookups
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: nss-lookup.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/nss-lookup.target
Conflicts: shutdown.target
Before: cron.service
Before: postfix.service
Before: apache2.service
References: shutdown.target
ReferencedBy: cron.service
ReferencedBy: postfix.service
ReferencedBy: apache2.service
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
Target State: dead
-> Unit slapd.service:
Description: slapd.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: slapd.service
Before: cron.service
Before: smbd.service
ReferencedBy: cron.service
ReferencedBy: smbd.service
Load Error Code: No such file or directory
-> Unit autofs.service:
Description: autofs.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: autofs.service
Before: cron.service
ReferencedBy: cron.service
Load Error Code: No such file or directory
-> Unit ypbind.service:
Description: ypbind.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: ypbind.service
Before: cron.service
ReferencedBy: cron.service
Load Error Code: No such file or directory
-> Unit nscd.service:
Description: nscd.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: nscd.service
Before: cron.service
ReferencedBy: cron.service
Load Error Code: No such file or directory
-> Unit nslcd.service:
Description: nslcd.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: nslcd.service
Before: cron.service
ReferencedBy: cron.service
Load Error Code: No such file or directory
-> Unit x-display-manager.target:
Description: x-display-manager.target
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: x-display-manager.target
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit gdm.service:
Description: gdm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: gdm.service
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit kdm.service:
Description: kdm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: kdm.service
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit xdm.service:
Description: xdm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: xdm.service
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit ldm.service:
Description: ldm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: ldm.service
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit sdm.service:
Description: sdm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: sdm.service
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit wdm.service:
Description: wdm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: wdm.service
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit nodm.service:
Description: nodm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: nodm.service
Before: bootlogs.service
After: openvpn.service
ReferencedBy: bootlogs.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit clamav-daemon.service:
Description: clamav-daemon.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: clamav-daemon.service
Before: postfix.service
ReferencedBy: postfix.service
Load Error Code: No such file or directory
-> Unit postgrey.service:
Description: postgrey.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: postgrey.service
Before: postfix.service
ReferencedBy: postfix.service
Load Error Code: No such file or directory
-> Unit spamassassin.service:
Description: spamassassin.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: spamassassin.service
Before: postfix.service
ReferencedBy: postfix.service
Load Error Code: No such file or directory
-> Unit saslauthd.service:
Description: saslauthd.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: saslauthd.service
Before: postfix.service
ReferencedBy: postfix.service
Load Error Code: No such file or directory
-> Unit dovecot.service:
Description: dovecot.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: dovecot.service
Before: postfix.service
ReferencedBy: postfix.service
Load Error Code: No such file or directory
-> Unit iptables.service:
Description: iptables.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: iptables.service
Before: fail2ban.service
ReferencedBy: fail2ban.service
Load Error Code: No such file or directory
-> Unit firehol.service:
Description: firehol.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: firehol.service
Before: fail2ban.service
ReferencedBy: fail2ban.service
Load Error Code: No such file or directory
-> Unit shorewall.service:
Description: shorewall.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: shorewall.service
Before: fail2ban.service
ReferencedBy: fail2ban.service
Load Error Code: No such file or directory
-> Unit ipmasq.service:
Description: ipmasq.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: ipmasq.service
Before: fail2ban.service
ReferencedBy: fail2ban.service
Load Error Code: No such file or directory
-> Unit arno-iptables-firewall.service:
Description: arno-iptables-firewall.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: arno-iptables-firewall.service
Before: fail2ban.service
ReferencedBy: fail2ban.service
Load Error Code: No such file or directory
-> Unit iptables-persistent.service:
Description: iptables-persistent.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: iptables-persistent.service
Before: fail2ban.service
ReferencedBy: fail2ban.service
Load Error Code: No such file or directory
-> Unit ferm.service:
Description: ferm.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: ferm.service
Before: fail2ban.service
ReferencedBy: fail2ban.service
Load Error Code: No such file or directory
-> Unit cups.service:
Description: cups.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: cups.service
Before: smbd.service
ReferencedBy: smbd.service
Load Error Code: No such file or directory
-> Unit network-manager.service:
Description: network-manager.service
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: network-manager.service
Before: openvpn.service
ReferencedBy: openvpn.service
Load Error Code: No such file or directory
-> Unit all.target:
Description: all.target
Instance: n/a
Unit Load State: error
Unit Active State: inactive
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: no
Need Daemon Reload: no
Name: all.target
Before: monit.service
ReferencedBy: monit.service
Load Error Code: No such file or directory
-> Unit sys-devices-pci0000:00-0000:00:01.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device:
Description: QEMU_DVD-ROM
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:01.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0
-> Unit dev-sr0.device:
Description: QEMU_DVD-ROM
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-sr0.device
Following: sys-devices-pci0000:00-0000:00:01.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0
-> Unit dev-cdrom.device:
Description: QEMU_DVD-ROM
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-cdrom.device
Following: sys-devices-pci0000:00-0000:00:01.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0
-> Unit dev-disk-by\x2did-ata\x2dQEMU_DVD\x2dROM_QM00003.device:
Description: QEMU_DVD-ROM
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2did-ata\x2dQEMU_DVD\x2dROM_QM00003.device
Following: sys-devices-pci0000:00-0000:00:01.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:01.1/ata2/host1/target1:0:0/1:0:0:0/block/sr0
-> Unit sys-devices-pci0000:00-0000:00:03.0-virtio0-net-eth0.device:
Description: Virtio network device
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:03.0-virtio0-net-eth0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:03.0/virtio0/net/eth0
-> Unit sys-subsystem-net-devices-eth0.device:
Description: Virtio network device
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-subsystem-net-devices-eth0.device
Job Timeout: 1min 30s
BoundBy: ifup at eth0.service
ReferencedBy: ifup at eth0.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:03.0/virtio0/net/eth0
-> Unit sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda.device:
Description: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda
-> Unit dev-vda.device:
Description: /dev/vda
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vda.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda
-> Unit sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda1.device:
Description: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda1.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1
-> Unit dev-vda1.device:
Description: /dev/vda1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vda1.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda1.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1
-> Unit dev-disk-by\x2duuid-81fbbb9c\x2dd096\x2d4d2d\x2d93c7\x2d6637ce90b41e.device:
Description: /dev/disk/by-uuid/81fbbb9c-d096-4d2d-93c7-6637ce90b41e
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2duuid-81fbbb9c\x2dd096\x2d4d2d\x2d93c7\x2d6637ce90b41e.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda1.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda1
-> Unit sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda2.device:
Description: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda2
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda2.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda2
-> Unit dev-vda2.device:
Description: /dev/vda2
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vda2.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda2.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda2
-> Unit sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda5.device:
Description: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda5
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda5.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda5
-> Unit dev-vda5.device:
Description: /dev/vda5
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vda5.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda5.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda5
-> Unit sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda6.device:
Description: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda6
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda6.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda6
-> Unit dev-vda6.device:
Description: /dev/vda6
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vda6.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda6.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda6
-> Unit sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda7.device:
Description: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda7
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda7.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda7
-> Unit dev-vda7.device:
Description: /dev/vda7
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vda7.device
Following: sys-devices-pci0000:00-0000:00:04.0-virtio1-block-vda-vda7.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:04.0/virtio1/block/vda/vda7
-> Unit sys-devices-pci0000:00-0000:00:06.0-virtio3-block-vdb.device:
Description: /sys/devices/pci0000:00/0000:00:06.0/virtio3/block/vdb
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:06.0-virtio3-block-vdb.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:06.0/virtio3/block/vdb
-> Unit dev-vdb.device:
Description: /dev/vdb
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vdb.device
Following: sys-devices-pci0000:00-0000:00:06.0-virtio3-block-vdb.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:06.0/virtio3/block/vdb
-> Unit sys-devices-pci0000:00-0000:00:06.0-virtio3-block-vdb-vdb1.device:
Description: /sys/devices/pci0000:00/0000:00:06.0/virtio3/block/vdb/vdb1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pci0000:00-0000:00:06.0-virtio3-block-vdb-vdb1.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:06.0/virtio3/block/vdb/vdb1
-> Unit dev-vdb1.device:
Description: /dev/vdb1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vdb1.device
Following: sys-devices-pci0000:00-0000:00:06.0-virtio3-block-vdb-vdb1.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:06.0/virtio3/block/vdb/vdb1
-> Unit sys-devices-platform-serial8250-tty-ttyS1.device:
Description: /sys/devices/platform/serial8250/tty/ttyS1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-platform-serial8250-tty-ttyS1.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS1
-> Unit dev-ttyS1.device:
Description: /dev/ttyS1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-ttyS1.device
Following: sys-devices-platform-serial8250-tty-ttyS1.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS1
-> Unit sys-devices-platform-serial8250-tty-ttyS2.device:
Description: /sys/devices/platform/serial8250/tty/ttyS2
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-platform-serial8250-tty-ttyS2.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS2
-> Unit dev-ttyS2.device:
Description: /dev/ttyS2
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-ttyS2.device
Following: sys-devices-platform-serial8250-tty-ttyS2.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS2
-> Unit sys-devices-platform-serial8250-tty-ttyS3.device:
Description: /sys/devices/platform/serial8250/tty/ttyS3
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-platform-serial8250-tty-ttyS3.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS3
-> Unit dev-ttyS3.device:
Description: /dev/ttyS3
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-ttyS3.device
Following: sys-devices-platform-serial8250-tty-ttyS3.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS3
-> Unit sys-devices-pnp0-00:04-tty-ttyS0.device:
Description: /sys/devices/pnp0/00:04/tty/ttyS0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-pnp0-00:04-tty-ttyS0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pnp0/00:04/tty/ttyS0
-> Unit dev-ttyS0.device:
Description: /dev/ttyS0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-ttyS0.device
Following: sys-devices-pnp0-00:04-tty-ttyS0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/pnp0/00:04/tty/ttyS0
-> Unit sys-devices-virtual-net-tun0.device:
Description: /sys/devices/virtual/net/tun0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-virtual-net-tun0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/tun0
-> Unit sys-subsystem-net-devices-tun0.device:
Description: /sys/subsystem/net/devices/tun0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-subsystem-net-devices-tun0.device
Job Timeout: 1min 30s
BoundBy: ifup at tun0.service
ReferencedBy: ifup at tun0.service
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/tun0
-> Unit sys-devices-virtual-block-dm\x2d0.device:
Description: /sys/devices/virtual/block/dm-0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: sys-devices-virtual-block-dm\x2d0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-dm\x2d0.device:
Description: /dev/dm-0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-dm\x2d0.device
Following: sys-devices-virtual-block-dm\x2d0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-disk-by\x2did-dm\x2dname\x2dstorage.device:
Description: /dev/disk/by-id/dm-name-storage
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2did-dm\x2dname\x2dstorage.device
Following: sys-devices-virtual-block-dm\x2d0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d1deff056f0984fa9a96de0e7ed6bf7a6\x2dstorage.device:
Description: /dev/disk/by-id/dm-uuid-CRYPT-LUKS1-1deff056f0984fa9a96de0e7ed6bf7a6-storage
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2did-dm\x2duuid\x2dCRYPT\x2dLUKS1\x2d1deff056f0984fa9a96de0e7ed6bf7a6\x2dstorage.device
Following: sys-devices-virtual-block-dm\x2d0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-disk-by\x2duuid-849df0fa\x2d07b8\x2d4469\x2da520\x2d5e8223c05fc0.device:
Description: /dev/disk/by-uuid/849df0fa-07b8-4469-a520-5e8223c05fc0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-disk-by\x2duuid-849df0fa\x2d07b8\x2d4469\x2da520\x2d5e8223c05fc0.device
Following: sys-devices-virtual-block-dm\x2d0.device
Job Timeout: 1min 30s
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/dm-0
-> Unit dev-vda5.swap:
Description: /dev/vda5
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:21:19 CET
Active Enter Timestamp: Wed 2014-02-05 12:21:19 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: dev-vda5.swap
Conflicts: umount.target
Before: umount.target
After: systemd-journald.socket
References: systemd-journald.socket
References: umount.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: yes
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/dev-vda5.swap
ControlGroup: name=systemd:/system/dev-vda5.swap
Swap State: active
Result: success
What: /dev/vda5
From /proc/swaps: yes
From fragment: no
Priority: -1
NoAuto: no
NoFail: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
-> Unit ifup at eth0.service:
Description: ifup for eth0
Instance: eth0
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: ifup at eth0.service
Fragment Path: /lib/systemd/system/ifup at .service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
BindsTo: sys-subsystem-net-devices-eth0.device
Conflicts: shutdown.target
Before: shutdown.target
After: local-fs.target
After: systemd-journald.socket
After: basic.target
References: local-fs.target
References: sys-subsystem-net-devices-eth0.device
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/ifup at .service/ifup at eth0.service
ControlGroup: name=systemd:/system/ifup at .service/ifup at eth0.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /sbin/ifup --allow=hotplug %I
-> ExecStop:
Command Line: /sbin/ifdown %I
-> Unit ifup at tun0.service:
Description: ifup for tun0
Instance: tun0
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 12:22:44 CET
Active Enter Timestamp: Wed 2014-02-05 12:22:44 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
GC Check Good: yes
Need Daemon Reload: no
Name: ifup at tun0.service
Fragment Path: /lib/systemd/system/ifup at .service
Condition Timestamp: Wed 2014-02-05 12:22:44 CET
Condition Result: yes
Requires: basic.target
BindsTo: sys-subsystem-net-devices-tun0.device
Conflicts: shutdown.target
Before: shutdown.target
After: local-fs.target
After: systemd-journald.socket
After: basic.target
References: local-fs.target
References: sys-subsystem-net-devices-tun0.device
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/ifup at .service/ifup at tun0.service
ControlGroup: name=systemd:/system/ifup at .service/ifup at tun0.service
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
-> ExecStart:
Command Line: /sbin/ifup --allow=hotplug %I
-> ExecStop:
Command Line: /sbin/ifdown %I
-> Unit transmission-daemon-private.service:
Description: Transmission BitTorrent Daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
Inactive Exit Timestamp: Wed 2014-02-05 16:36:41 CET
Active Enter Timestamp: Wed 2014-02-05 16:36:43 CET
Active Exit Timestamp: Wed 2014-02-05 16:36:41 CET
Inactive Enter Timestamp: Wed 2014-02-05 16:36:41 CET
GC Check Good: yes
Need Daemon Reload: no
Name: transmission-daemon-private.service
Fragment Path: /etc/systemd/system/transmission-daemon-private.service
Condition Timestamp: Wed 2014-02-05 16:36:41 CET
Condition Result: yes
Requires: basic.target
Conflicts: shutdown.target
Before: shutdown.target
After: network.target
After: systemd-journald.socket
After: basic.target
References: network.target
References: systemd-journald.socket
References: basic.target
References: shutdown.target
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureIsolate: no
IgnoreOnIsolate: no
IgnoreOnSnapshot: no
ControlGroup: cpu:/system/transmission-daemon-private.service
ControlGroup: name=systemd:/system/transmission-daemon-private.service
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: on-abort
NotifyAccess: main
Main PID: 17258
Main PID Known: yes
Main PID Alien: no
KillMode: control-group
KillSignal: SIGTERM
SendSIGKILL: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
ControlGroupModify: no
ControlGroupPersistent: yes
PrivateNetwork: no
IgnoreSIGPIPE: yes
LimitNOFILE: 4096
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: private
-> ExecStart:
Command Line: /usr/bin/transmission-daemon -f --log-error --config-dir /storage/private/.config/transmission-daemon/
Status Text: Idle.
-> Job 3790:
Action: php5-fpm.service -> start
State: running
Forced: yes
Irreversible: no
--------------
Contents of /var/lib/systemd/deb-systemd-helper-enabled:
--------------
==> /var/lib/systemd/deb-systemd-helper-enabled/syslog.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/rsyslog.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/rsyslog.service
/etc/systemd/system/syslog.service
==> /var/lib/systemd/deb-systemd-helper-enabled/atd.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/atd.service
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/nginx.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/atd.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/rsyslog.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/nginx.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/nginx.service
-- System Information:
Debian Release: jessie/sid
APT prefers testing-updates
APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Kernel: Linux 3.12-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages systemd depends on:
ii acl 2.2.52-1
ii adduser 3.113+nmu3
ii initscripts 2.88dsf-45
ii libacl1 2.2.52-1
ii libaudit1 1:2.3.3-3
ii libc6 2.17-97
ii libcap2 1:2.22-1.2
ii libcryptsetup4 2:1.6.1-1
ii libdbus-1-3 1.8.0-1
ii libgcrypt11 1.5.3-3
ii libkmod2 16-2
ii liblzma5 5.1.1alpha+20120614-2
ii libpam0g 1.1.3-9
ii libselinux1 2.2.2-1
ii libsystemd-daemon0 204-6
ii libsystemd-journal0 204-6
ii libsystemd-login0 204-6
ii libudev1 204-6
ii libwrap0 7.6.q-25
ii udev 204-6
ii util-linux 2.20.1-5.6
Versions of packages systemd recommends:
pn libpam-systemd <none>
Versions of packages systemd suggests:
pn systemd-ui <none>
-- no debconf information
More information about the Pkg-systemd-maintainers
mailing list