Bug#977562: systemd: Incorrect order of agetty arguments in serial-getty at ttyS0.service definition file
MK
mrkafk at gmail.com
Wed Dec 16 19:49:33 GMT 2020
Package: systemd
Version: 241-7~deb10u5
Severity: normal
Goal: enabling serial communication over null modem cable between two Debian 10 hosts.
Steps to reproduce:
1. Connect null-modem cable to both machines.
2. Edit /etc/default/grub:
GRUB_CMDLINE_LINUX="console=tty0 console=ttyS0,115200n8"
GRUB_TERMINAL=console
(update-initramfs -u of course)
3. Enable serial systemd service:
# systemctl enable serial-getty at ttyS0.service
4. Reboot.
Expected result:
Serial comm works, command used:
tio -f soft /dev/ttyS0
Actual results:
tio or minicom spit out garbage characters.
Cause:
Incorrect order of arguments to agetty in the serial-getty at ttyS0.service
unit file.
It is:
ExecStart=/sbin/agetty --autologin root -8 --keep-baud 115200,38400,9600 ttyS0 xterm-256color
While it should be like:
ExecStart=/sbin/agetty --autologin root -8 --keep-baud ttyS0 115200 xterm-256color
Note: order of port and baud rate is reversed. man agetty says it should
be:
agetty [options] port [baud_rate...] [term]
In the default service definition baud rate PRECEDES port.
After using my config line above serial commuication works fine.
agetty [options] port [baud_rate...] [term]
In the default service definition baud rate PRECEDES port.
After using my config line above serial commuication works fine.
Additional information:
On client you have to issue:
systemctl stop serial-getty at ttyS0.service
Even though I've disabled this service, it was still starting after
reboot. Seems like another bug.
-- Package-specific info:
-- System Information:
Debian Release: 10.7
APT prefers stable-updates
APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Kernel: Linux 4.19.0-13-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8), LANGUAGE=en_US:en (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
Versions of packages systemd depends on:
ii adduser 3.118
ii libacl1 2.2.53-4
ii libapparmor1 2.13.2-10
ii libaudit1 1:2.8.4-3
ii libblkid1 2.33.1-0.1
ii libc6 2.28-10
ii libcap2 1:2.25-2
ii libcryptsetup12 2:2.1.0-5+deb10u2
ii libgcrypt20 1.8.4-5
ii libgnutls30 3.6.7-4+deb10u5
ii libgpg-error0 1.35-1
ii libidn11 1.33-2.2
ii libip4tc0 1.8.2-4
ii libkmod2 26-1
ii liblz4-1 1.8.3-1
ii liblzma5 5.2.4-1
ii libmount1 2.33.1-0.1
ii libpam0g 1.3.1-5
ii libseccomp2 2.3.3-4
ii libselinux1 2.8-1+b1
ii libsystemd0 241-7~deb10u5
ii mount 2.33.1-0.1
ii util-linux 2.33.1-0.1
Versions of packages systemd recommends:
ii dbus 1.12.20-0+deb10u1
ii libpam-systemd 241-7~deb10u5
Versions of packages systemd suggests:
ii policykit-1 0.105-25
pn systemd-container <none>
Versions of packages systemd is related to:
pn dracut <none>
ii initramfs-tools 0.133+deb10u1
ii udev 241-7~deb10u5
-- no debconf information
-------------- next part --------------
[OVERRIDDEN] /etc/tmpfiles.d/screen-cleanup.conf -> /usr/lib/tmpfiles.d/screen-cleanup.conf
--- /usr/lib/tmpfiles.d/screen-cleanup.conf 2017-07-01 14:07:57.000000000 +0200
+++ /etc/tmpfiles.d/screen-cleanup.conf 2020-12-09 20:42:17.134117339 +0100
@@ -1 +1 @@
-d /run/screen 0777 root utmp
+d /run/screen 1777 root utmp
[REDIRECTED] /etc/systemd/system/default.target -> /usr/lib/systemd/system/default.target
[OVERRIDDEN] /etc/systemd/system/rc-local.service -> /usr/lib/systemd/system/rc-local.service
--- /usr/lib/systemd/system/rc-local.service 2020-10-24 20:44:48.000000000 +0200
+++ /etc/systemd/system/rc-local.service 2020-12-09 20:43:58.527759757 +0100
@@ -1,23 +1,14 @@
-# SPDX-License-Identifier: LGPL-2.1+
-#
-# This file is part of systemd.
-#
-# systemd is free software; you can redistribute it and/or modify it
-# under the terms of the GNU Lesser General Public License as published by
-# the Free Software Foundation; either version 2.1 of the License, or
-# (at your option) any later version.
-
-# This unit gets pulled automatically into multi-user.target by
-# systemd-rc-local-generator if /etc/rc.local is executable.
[Unit]
-Description=/etc/rc.local Compatibility
-Documentation=man:systemd-rc-local-generator(8)
-ConditionFileIsExecutable=/etc/rc.local
-After=network.target
+Description=/etc/rc.local
+ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
+StandardOutput=tty
RemainAfterExit=yes
-GuessMainPID=no
+SysVStartPriority=99
+
+[Install]
+WantedBy=multi-user.target
[EXTENDED] /etc/systemd/system/rc-local.service -> /usr/lib/systemd/system/rc-local.service.d/debian.conf
[EXTENDED] /usr/lib/systemd/system/systemd-resolved.service -> /usr/lib/systemd/system/systemd-resolved.service.d/resolvconf.conf
[EXTENDED] /usr/lib/systemd/system/systemd-timesyncd.service -> /usr/lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf
6 overridden configuration files found.
-------------- next part --------------
Timestamp kernel: Wed 2020-12-16 20:59:21 CET
Timestamp userspace: Wed 2020-12-16 20:59:26 CET
Timestamp finish: Wed 2020-12-16 19:59:53 CET
Timestamp security-start: Wed 2020-12-16 20:59:26 CET
Timestamp security-finish: Wed 2020-12-16 20:59:26 CET
Timestamp generators-start: Wed 2020-12-16 19:59:27 CET
Timestamp generators-finish: Wed 2020-12-16 19:59:27 CET
Timestamp units-load-start: Wed 2020-12-16 19:59:27 CET
Timestamp units-load-finish: Wed 2020-12-16 19:59:27 CET
-> Unit dev-mqueue.mount:
Description: POSIX Message Queue File System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/dev-mqueue.mount
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: dev-mqueue.mount
Invocation ID: 3cd0ddbf74034b5ab826b79a328d28a1
Documentation: man:mq_overview(7)
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/dev-mqueue.mount
ConditionCapability: CAP_SYS_ADMIN untested
ConditionPathExists: /proc/sys/fs/mqueue untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-implicit origin-path)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-implicit origin-path)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: -.mount (origin-implicit origin-path)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /dev (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Mount State: mounted
Result: success
Where: /dev/mqueue
What: mqueue
File System Type: mqueue
Options: rw,relatime
From /proc/self/mountinfo: yes
From fragment: yes
Extrinsic: yes
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart3.device
Invocation ID: f5cb87c1e0a2497db626cd875a3f4442
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart3.device
Following Set Member: dev-sdb3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d03.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb3
Found: found-udev
-> Unit shutdown.target:
Description: Shutdown
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: shutdown.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/shutdown.target
ConflictedBy: apt-daily-upgrade.service (destination-default)
ConflictedBy: logrotate.service (destination-default)
ConflictedBy: bind9.service (destination-default)
ConflictedBy: slices.target (destination-default)
ConflictedBy: getty-pre.target (destination-default)
ConflictedBy: plymouth-quit-wait.service (destination-default)
ConflictedBy: remote-fs-pre.target (destination-default)
ConflictedBy: syslog.socket (destination-file)
ConflictedBy: resource-agents-deps.target (destination-default)
ConflictedBy: systemd-tmpfiles-setup.service (destination-file)
ConflictedBy: dbus.socket (destination-default)
ConflictedBy: drbd.service (destination-default)
ConflictedBy: systemd-sysusers.service (destination-file)
ConflictedBy: cryptsetup.target (destination-default)
ConflictedBy: auditd.service (destination-file)
ConflictedBy: sound.target (destination-default)
ConflictedBy: systemd-rfkill.service (destination-file)
ConflictedBy: nss-user-lookup.target (destination-default)
ConflictedBy: getty.target (destination-default)
ConflictedBy: uuidd.socket (destination-default)
ConflictedBy: getty at tty1.service (destination-default)
ConflictedBy: systemd-fsck-root.service (destination-file)
ConflictedBy: uuidd.service (destination-default)
ConflictedBy: corosync.service (destination-default)
ConflictedBy: isc-dhcp-server.service (destination-default)
ConflictedBy: system-getty.slice (destination-default)
ConflictedBy: udisks2.service (destination-default)
ConflictedBy: remote-fs.target (destination-file)
ConflictedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
ConflictedBy: systemd-machine-id-commit.service (destination-file)
ConflictedBy: networking.service (destination-file)
ConflictedBy: systemd-ask-password-wall.path (destination-file)
ConflictedBy: ifup at enp0s25.service (destination-file)
ConflictedBy: getty-static.service (destination-default)
ConflictedBy: systemd-random-seed.service (destination-file)
ConflictedBy: rescue.service (destination-file)
ConflictedBy: virtlogd-admin.socket (destination-default)
ConflictedBy: fail2ban.service (destination-default)
ConflictedBy: man-db.timer (destination-default)
ConflictedBy: libvirt-guests.service (destination-default)
ConflictedBy: pacemaker.service (destination-default)
ConflictedBy: systemd-user-sessions.service (destination-default)
ConflictedBy: emergency.service (destination-file)
ConflictedBy: blk-availability.service (destination-file)
ConflictedBy: systemd-update-utmp.service (destination-file)
ConflictedBy: timers.target (destination-file)
ConflictedBy: systemd-rfkill.socket (destination-file)
ConflictedBy: heartbeat.service (destination-default)
ConflictedBy: systemd-tmpfiles-clean.timer (destination-default)
ConflictedBy: rsync.service (destination-default)
ConflictedBy: lvm2-monitor.service (destination-file)
ConflictedBy: local-fs.target (destination-file)
ConflictedBy: systemd-ask-password-plymouth.path (destination-file)
ConflictedBy: setserial.service (destination-default)
ConflictedBy: rc-local.service (destination-default)
ConflictedBy: exim4.service (destination-default)
ConflictedBy: sysinit.target (destination-default)
ConflictedBy: network.target (destination-default)
ConflictedBy: virtlockd.socket (destination-default)
ConflictedBy: cron.service (destination-default)
ConflictedBy: session-4.scope (destination-default)
ConflictedBy: system-serial\x2dgetty.slice (destination-default)
ConflictedBy: logrotate.timer (destination-default)
ConflictedBy: ssh.service (destination-default)
ConflictedBy: rescue.target (destination-default)
ConflictedBy: virtlogd.socket (destination-default)
ConflictedBy: session-3.scope (destination-default)
ConflictedBy: man-db.service (destination-default)
ConflictedBy: serial-getty at ttyS0.service (destination-default)
ConflictedBy: multi-user.target (destination-default)
ConflictedBy: lvm2-lvmpolld.socket (destination-file)
ConflictedBy: systemd-sysctl.service (destination-file)
ConflictedBy: systemd-ask-password-console.path (destination-file)
ConflictedBy: systemd-logind.service (destination-default)
ConflictedBy: systemd-modules-load.service (destination-file)
ConflictedBy: user.slice (destination-default)
ConflictedBy: systemd-update-utmp-runlevel.service (destination-file)
ConflictedBy: systemd-timesyncd.service (destination-file)
ConflictedBy: user at 0.service (destination-default)
ConflictedBy: user-0.slice (destination-default)
ConflictedBy: apt-daily.service (destination-default)
ConflictedBy: virtlogd.service (destination-default)
ConflictedBy: apt-daily.timer (destination-default)
ConflictedBy: virt-guest-shutdown.target (destination-default)
ConflictedBy: emergency.target (destination-default)
ConflictedBy: logd.service (destination-default)
ConflictedBy: systemd-ask-password-plymouth.service (destination-file)
ConflictedBy: systemd-tmpfiles-clean.service (destination-file)
ConflictedBy: systemd-ask-password-console.service (destination-file)
ConflictedBy: systemd-networkd.service (destination-file)
ConflictedBy: apt-daily-upgrade.timer (destination-default)
ConflictedBy: virtlockd.service (destination-default)
ConflictedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ConflictedBy: basic.target (destination-default)
ConflictedBy: graphical.target (destination-default)
ConflictedBy: dbus.service (destination-default)
ConflictedBy: lvm2-lvmpolld.service (destination-file)
ConflictedBy: etc-setserial.service (destination-default)
ConflictedBy: nss-lookup.target (destination-default)
ConflictedBy: lightdm.service (destination-default)
ConflictedBy: xrdp-sesman.service (destination-default)
ConflictedBy: system-systemd\x2dfsck.slice (destination-default)
ConflictedBy: systemd-hwdb-update.service (destination-file)
ConflictedBy: plymouth-quit.service (destination-default)
ConflictedBy: xrdp.service (destination-default)
ConflictedBy: rsyslog.service (destination-default)
ConflictedBy: systemd-remount-fs.service (destination-file)
ConflictedBy: network-pre.target (destination-default)
ConflictedBy: paths.target (destination-default)
ConflictedBy: systemd-ask-password-wall.service (destination-default)
ConflictedBy: time-sync.target (destination-default)
ConflictedBy: unattended-upgrades.service (destination-default)
ConflictedBy: selinux-autorelabel-mark.service (destination-file)
ConflictedBy: dm-event.service (destination-file)
ConflictedBy: systemd-binfmt.service (destination-file)
ConflictedBy: swap.target (destination-default)
ConflictedBy: network-online.target (destination-default)
ConflictedBy: sockets.target (destination-default)
ConflictedBy: local-fs-pre.target (destination-default)
ConflictedBy: virtlockd-admin.socket (destination-default)
ConflictedBy: libvirtd.service (destination-default)
ConflictedBy: zabbix-agent2.service (destination-default)
ConflictedBy: user-runtime-dir at 0.service (destination-default)
After: systemd-random-seed.service (destination-file)
After: corosync.service (destination-default)
After: sockets.target (destination-default)
After: setserial.service (destination-default)
After: xrdp.service (destination-default)
After: systemd-timesyncd.service (destination-file)
After: libvirt-guests.service (destination-default)
After: virt-guest-shutdown.target (destination-default)
After: plymouth-quit-wait.service (destination-default)
After: systemd-ask-password-plymouth.service (destination-file)
After: multi-user.target (destination-default)
After: apt-daily-upgrade.service (destination-default)
After: user at 0.service (destination-default)
After: auditd.service (destination-file)
After: virtlockd.socket (destination-default)
After: basic.target (destination-default)
After: bind9.service (destination-default)
After: systemd-rfkill.service (destination-file)
After: systemd-tmpfiles-clean.service (destination-file)
After: cron.service (destination-default)
After: dm-event.service (destination-file)
After: user-0.slice (destination-default)
After: virtlogd.service (destination-default)
After: getty-pre.target (destination-default)
After: emergency.target (destination-default)
After: sysinit.target (destination-default)
After: systemd-networkd.service (destination-file)
After: time-sync.target (destination-default)
After: selinux-autorelabel-mark.service (destination-file)
After: systemd-logind.service (destination-default)
After: session-3.scope (destination-default)
After: exim4.service (destination-default)
After: rsyslog.service (destination-default)
After: man-db.service (destination-default)
After: systemd-ask-password-console.service (destination-file)
After: serial-getty at ttyS0.service (destination-default)
After: user.slice (destination-default)
After: systemd-tmpfiles-setup-dev.service (destination-file)
After: nss-lookup.target (destination-default)
After: getty-static.service (destination-default)
After: virtlockd.service (destination-default)
After: getty at tty1.service (destination-default)
After: systemd-modules-load.service (destination-file)
After: rc-local.service (destination-default)
After: emergency.service (destination-file)
After: rsync.service (destination-default)
After: pacemaker.service (destination-default)
After: cryptsetup.target (destination-default)
After: network-pre.target (destination-default)
After: systemd-tmpfiles-clean.timer (destination-default)
After: systemd-ask-password-console.path (destination-file)
After: virtlogd.socket (destination-default)
After: udisks2.service (destination-default)
After: paths.target (destination-default)
After: systemd-sysusers.service (destination-file)
After: libvirtd.service (destination-default)
After: fail2ban.service (destination-default)
After: ifup at enp0s25.service (destination-file)
After: system-serial\x2dgetty.slice (destination-default)
After: virtlockd-admin.socket (destination-default)
After: systemd-tmpfiles-setup.service (destination-file)
After: unattended-upgrades.service (destination-default)
After: systemd-rfkill.socket (destination-file)
After: resource-agents-deps.target (destination-default)
After: local-fs-pre.target (destination-default)
After: uuidd.service (destination-default)
After: man-db.timer (destination-default)
After: systemd-fsck-root.service (destination-file)
After: syslog.socket (destination-file)
After: plymouth-quit.service (destination-default)
After: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
After: network.target (destination-default)
After: apt-daily.timer (destination-default)
After: xrdp-sesman.service (destination-default)
After: apt-daily.service (destination-default)
After: systemd-user-sessions.service (destination-default)
After: swap.target (destination-default)
After: systemd-update-utmp.service (destination-file)
After: logrotate.timer (destination-default)
After: logrotate.service (destination-default)
After: session-4.scope (destination-default)
After: rescue.target (destination-default)
After: zabbix-agent2.service (destination-default)
After: apt-daily-upgrade.timer (destination-default)
After: logd.service (destination-default)
After: slices.target (destination-default)
After: dbus.service (destination-default)
After: systemd-binfmt.service (destination-file)
After: graphical.target (destination-default)
After: systemd-quotacheck.service (destination-file)
After: dbus.socket (destination-default)
After: virtlogd-admin.socket (destination-default)
After: systemd-machine-id-commit.service (destination-file)
After: system-systemd\x2dfsck.slice (destination-default)
After: systemd-ask-password-wall.path (destination-file)
After: systemd-update-utmp-runlevel.service (destination-file)
After: systemd-hwdb-update.service (destination-file)
After: etc-setserial.service (destination-default)
After: user-runtime-dir at 0.service (destination-default)
After: remote-fs-pre.target (destination-default)
After: systemd-sysctl.service (destination-file)
After: systemd-ask-password-plymouth.path (destination-file)
After: heartbeat.service (destination-default)
After: uuidd.socket (destination-default)
After: getty.target (destination-default)
After: networking.service (destination-file)
After: systemd-ask-password-wall.service (destination-default)
After: systemd-remount-fs.service (destination-file)
After: network-online.target (destination-default)
After: ssh.service (destination-default)
After: nss-user-lookup.target (destination-default)
After: drbd.service (destination-default)
After: systemd-fsckd.service (destination-file)
After: lightdm.service (destination-default)
After: isc-dhcp-server.service (destination-default)
After: system-getty.slice (destination-default)
After: sound.target (destination-default)
After: rescue.service (destination-file)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file)
ReferencedBy: corosync.service (destination-default)
ReferencedBy: uuidd.socket (destination-default)
ReferencedBy: systemd-binfmt.service (destination-file)
ReferencedBy: plymouth-quit-wait.service (destination-default)
ReferencedBy: getty.target (destination-default)
ReferencedBy: apt-daily-upgrade.timer (destination-default)
ReferencedBy: rsyslog.service (destination-default)
ReferencedBy: apt-daily.timer (destination-default)
ReferencedBy: user-runtime-dir at 0.service (destination-default)
ReferencedBy: systemd-random-seed.service (destination-file)
ReferencedBy: xrdp.service (destination-default)
ReferencedBy: lvm2-lvmpolld.service (destination-file)
ReferencedBy: systemd-user-sessions.service (destination-default)
ReferencedBy: systemd-update-utmp.service (destination-file)
ReferencedBy: setserial.service (destination-default)
ReferencedBy: slices.target (destination-default)
ReferencedBy: system-getty.slice (destination-default)
ReferencedBy: rescue.target (destination-default)
ReferencedBy: basic.target (destination-default)
ReferencedBy: system-serial\x2dgetty.slice (destination-default)
ReferencedBy: remote-fs-pre.target (destination-default)
ReferencedBy: systemd-ask-password-plymouth.path (destination-file)
ReferencedBy: uuidd.service (destination-default)
ReferencedBy: time-sync.target (destination-default)
ReferencedBy: networking.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-default)
ReferencedBy: heartbeat.service (destination-default)
ReferencedBy: virt-guest-shutdown.target (destination-default)
ReferencedBy: systemd-logind.service (destination-default)
ReferencedBy: nss-user-lookup.target (destination-default)
ReferencedBy: virtlockd-admin.socket (destination-default)
ReferencedBy: resource-agents-deps.target (destination-default)
ReferencedBy: rescue.service (destination-file)
ReferencedBy: lvm2-monitor.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: network-pre.target (destination-default)
ReferencedBy: systemd-quotacheck.service (destination-file)
ReferencedBy: systemd-fsck-root.service (destination-file)
ReferencedBy: dbus.socket (destination-default)
ReferencedBy: timers.target (destination-file)
ReferencedBy: cron.service (destination-default)
ReferencedBy: rsync.service (destination-default)
ReferencedBy: syslog.socket (destination-file)
ReferencedBy: virtlogd.service (destination-default)
ReferencedBy: systemd-sysusers.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
ReferencedBy: dm-event.service (destination-file)
ReferencedBy: cryptsetup.target (destination-default)
ReferencedBy: fail2ban.service (destination-default)
ReferencedBy: auditd.service (destination-file)
ReferencedBy: man-db.service (destination-default)
ReferencedBy: dbus.service (destination-default)
ReferencedBy: systemd-ask-password-wall.path (destination-file)
ReferencedBy: exim4.service (destination-default)
ReferencedBy: drbd.service (destination-default)
ReferencedBy: network.target (destination-default)
ReferencedBy: selinux-autorelabel-mark.service (destination-file)
ReferencedBy: local-fs-pre.target (destination-default)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: systemd-tmpfiles-clean.service (destination-file)
ReferencedBy: getty at tty1.service (destination-default)
ReferencedBy: logrotate.service (destination-default)
ReferencedBy: rc-local.service (destination-default)
ReferencedBy: user at 0.service (destination-default)
ReferencedBy: apt-daily.service (destination-default)
ReferencedBy: systemd-hwdb-update.service (destination-file)
ReferencedBy: session-3.scope (destination-default)
ReferencedBy: logrotate.timer (destination-default)
ReferencedBy: unattended-upgrades.service (destination-default)
ReferencedBy: paths.target (destination-default)
ReferencedBy: virtlockd.socket (destination-default)
ReferencedBy: bind9.service (destination-default)
ReferencedBy: virtlockd.service (destination-default)
ReferencedBy: xrdp-sesman.service (destination-default)
ReferencedBy: remote-fs.target (destination-file)
ReferencedBy: systemd-ask-password-console.service (destination-file)
ReferencedBy: lvm2-lvmpolld.socket (destination-file)
ReferencedBy: pacemaker.service (destination-default)
ReferencedBy: system-systemd\x2dfsck.slice (destination-default)
ReferencedBy: man-db.timer (destination-default)
ReferencedBy: session-4.scope (destination-default)
ReferencedBy: etc-setserial.service (destination-default)
ReferencedBy: systemd-rfkill.socket (destination-file)
ReferencedBy: systemd-machine-id-commit.service (destination-file)
ReferencedBy: systemd-fsckd.service (destination-file)
ReferencedBy: logd.service (destination-default)
ReferencedBy: systemd-tmpfiles-clean.timer (destination-default)
ReferencedBy: getty-pre.target (destination-default)
ReferencedBy: systemd-ask-password-wall.service (destination-default)
ReferencedBy: emergency.service (destination-file)
ReferencedBy: systemd-rfkill.service (destination-file)
ReferencedBy: plymouth-quit.service (destination-default)
ReferencedBy: virtlogd.socket (destination-default)
ReferencedBy: systemd-sysctl.service (destination-file)
ReferencedBy: multi-user.target (destination-default)
ReferencedBy: graphical.target (destination-default)
ReferencedBy: libvirt-guests.service (destination-default)
ReferencedBy: user.slice (destination-default)
ReferencedBy: sysinit.target (destination-default)
ReferencedBy: systemd-modules-load.service (destination-file)
ReferencedBy: zabbix-agent2.service (destination-default)
ReferencedBy: udisks2.service (destination-default)
ReferencedBy: getty-static.service (destination-default)
ReferencedBy: sockets.target (destination-default)
ReferencedBy: apt-daily-upgrade.service (destination-default)
ReferencedBy: serial-getty at ttyS0.service (destination-default)
ReferencedBy: systemd-remount-fs.service (destination-file)
ReferencedBy: lightdm.service (destination-default)
ReferencedBy: libvirtd.service (destination-default)
ReferencedBy: user-0.slice (destination-default)
ReferencedBy: swap.target (destination-default)
ReferencedBy: network-online.target (destination-default)
ReferencedBy: virtlogd-admin.socket (destination-default)
ReferencedBy: sound.target (destination-default)
ReferencedBy: systemd-ask-password-plymouth.service (destination-file)
ReferencedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ReferencedBy: ssh.service (destination-default)
ReferencedBy: systemd-ask-password-console.path (destination-file)
ReferencedBy: local-fs.target (destination-file)
ReferencedBy: emergency.target (destination-default)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
ReferencedBy: nss-lookup.target (destination-default)
ReferencedBy: systemd-tmpfiles-setup.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-enp1s0f0.device:
Description: 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) (PRO/1000 PT Dual Port Server Adapter)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-enp1s0f0.device
Invocation ID: 3043a2c942b44d57b8d4eac5deda22ea
Following Set Member: sys-subsystem-net-devices-enp1s0f0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/net/enp1s0f0
Found: found-udev
-> Unit dev-disk-by\x2did-md\x2dname\x2de1:0.device:
Description: /dev/disk/by-id/md-name-e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-md\x2dname\x2de1:0.device
Invocation ID: e7d36712efdb4329af9dcee8aba7a9f4
Following: sys-devices-virtual-block-md0.device
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2ddad7fdda:6e09b338:4f191946:ff6f2211.device
Following Set Member: dev-disk-by\x2duuid-d7feb5a7\x2dbf6f\x2d4dd1\x2d9c1a\x2deaf043afbaf4.device
Following Set Member: sys-devices-virtual-block-md0.device
Following Set Member: dev-md0.device
Following Set Member: dev-md-0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md0
Found: found-udev
-> Unit dev-ttyS0.device:
Description: /dev/ttyS0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-ttyS0.device
Invocation ID: d5475b0aac844c3b83a89c42b1771f80
Following: sys-devices-pnp0-00:08-tty-ttyS0.device
Following Set Member: sys-devices-pnp0-00:08-tty-ttyS0.device
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
BoundBy: serial-getty at ttyS0.service (destination-file)
Before: serial-getty at ttyS0.service (destination-file)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pnp0/00:08/tty/ttyS0
Found: found-udev
-> Unit man-db.timer:
Description: Daily man-db regeneration
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:59 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: man-db.timer
Invocation ID: a1d82a203c584292982107cd60e2f708
Documentation: man:mandb(8)
Fragment Path: /lib/systemd/system/man-db.timer
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
WantedBy: timers.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: timers.target (origin-default)
Before: shutdown.target (origin-default)
Before: man-db.service (origin-implicit)
After: sysinit.target (origin-default)
After: time-sync.target (origin-default)
After: -.mount (origin-file origin-path)
Triggers: man-db.service (origin-implicit)
References: sysinit.target (origin-default)
References: timers.target (origin-default)
References: time-sync.target (origin-default)
References: shutdown.target (origin-default)
References: -.mount (origin-file origin-path)
References: man-db.service (origin-implicit)
ReferencedBy: timers.target (destination-file)
RequiresMountsFor: /var/lib/systemd/timers (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Timer State: waiting
Result: success
Unit: man-db.service
Persistent: yes
WakeSystem: no
Accuracy: 12h
RemainAfterElapse: yes
OnCalendar: *-*-* 00:00:00
-> Unit user at 0.service:
Description: User Manager for UID 0
Instance: 0
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:50 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:50 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:50 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: user-0.slice
CGroup: /user.slice/user-0.slice/user at 0.service
CGroup realized: yes
CGroup realized mask: memory pids
CGroup own mask: memory pids
CGroup delegate mask: memory pids
Name: user at 0.service
Invocation ID: d37b641c23ee4c33aec09825e0ce18d7
Documentation: man:user at .service(5)
Fragment Path: /lib/systemd/system/user at .service
Condition Timestamp: Wed 2020-12-16 19:59:50 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:50 CET
Assert Result: yes
Requires: user-0.slice (origin-file)
Requires: sysinit.target (origin-default)
Requires: user-runtime-dir at 0.service (origin-file)
WantedBy: session-4.scope (destination-file)
WantedBy: session-3.scope (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: session-4.scope (destination-file)
Before: session-3.scope (destination-file)
After: basic.target (origin-default)
After: user-runtime-dir at 0.service (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-user-sessions.service (origin-file)
After: dbus.service (origin-file)
After: user-0.slice (origin-file)
After: sysinit.target (origin-default)
References: user-runtime-dir at 0.service (origin-file)
References: shutdown.target (origin-default)
References: user-0.slice (origin-file)
References: systemd-user-sessions.service (origin-file)
References: sysinit.target (origin-default)
References: dbus.service (origin-file)
References: basic.target (origin-default)
References: systemd-journald.socket (origin-file)
ReferencedBy: session-4.scope (destination-file)
ReferencedBy: session-3.scope (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: no
NotifyAccess: main
NotifyState: unknown
Main PID: 1182
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 2min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: mixed
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: 0
DynamicUser: no
PAMName: systemd-user
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd --user
Status Text: Startup finished in 184ms.
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=yes
DelegateControllers=memory pids
-> Unit firewalld.service:
Description: firewalld.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: firewalld.service
ConsistsOf: fail2ban.service (destination-file)
Before: fail2ban.service (destination-file)
ReferencedBy: fail2ban.service (destination-file)
-> Unit lvm2-monitor.service:
Description: Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/lvm2-monitor.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: lvm2-monitor.service
Invocation ID: 2b87efce63b3492d93d3a3c87a8d52c2
Documentation: man:dmeventd(8)
Documentation: man:lvcreate(8)
Documentation: man:lvchange(8)
Documentation: man:vgchange(8)
Fragment Path: /lib/systemd/system/lvm2-monitor.service
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: dm-event.socket (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: local-fs-pre.target (origin-file)
After: system.slice (origin-file)
After: dm-event.service (origin-file)
After: systemd-journald.socket (origin-file)
After: dm-event.socket (origin-file)
After: lvm2-activation.service (origin-file)
References: lvm2-activation.service (origin-file)
References: system.slice (origin-file)
References: dm-event.service (origin-file)
References: dm-event.socket (origin-file)
References: local-fs-pre.target (origin-file)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
Environment: LVM_SUPPRESS_LOCKING_FAILURE_MESSAGES=1
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /sbin/lvm vgchange --monitor y
-> ExecStop:
Command Line: /sbin/lvm vgchange --monitor n
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-ask-password-wall.service:
Description: Forward Password Requests to Wall
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-ask-password-wall.service
Documentation: man:systemd-ask-password-console.service(8)
Fragment Path: /lib/systemd/system/systemd-ask-password-wall.service
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: basic.target (origin-default)
After: sysinit.target (origin-default)
After: systemd-ask-password-wall.path (destination-implicit)
After: systemd-user-sessions.service (origin-file)
TriggeredBy: systemd-ask-password-wall.path (destination-implicit)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: systemd-user-sessions.service (origin-file)
ReferencedBy: systemd-ask-password-wall.path (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
SystemCallArchitectures: native
-> 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
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit ifup at enp0s25.service:
Description: ifup for enp0s25
Instance: enp0s25
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/ifup at enp0s25.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: ifup at enp0s25.service
Invocation ID: 7bad94e205f84290b76b2e20a5dc3ea4
Fragment Path: /lib/systemd/system/ifup at .service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: system.slice (origin-file)
BindsTo: sys-subsystem-net-devices-enp0s25.device (origin-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
Before: network-online.target (origin-file)
Before: network.target (origin-file)
After: system.slice (origin-file)
After: sys-subsystem-net-devices-enp0s25.device (origin-file)
After: local-fs.target (origin-file)
After: network-pre.target (origin-file)
After: apparmor.service (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-sysctl.service (origin-file)
References: system.slice (origin-file)
References: shutdown.target (origin-file)
References: local-fs.target (origin-file)
References: apparmor.service (origin-file)
References: network-online.target (origin-file)
References: systemd-sysctl.service (origin-file)
References: network-pre.target (origin-file)
References: sys-subsystem-net-devices-enp0s25.device (origin-file)
References: systemd-journald.socket (origin-file)
References: network.target (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 5min
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/sh -ec 'ifup --allow=hotplug enp0s25; ifquery --state enp0s25'
-> ExecStop:
Command Line: /sbin/ifdown enp0s25
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-tmpfiles-clean.service:
Description: Cleanup of Temporary Directories
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:14:22 CET
Inactive Exit Timestamp: Wed 2020-12-16 20:14:22 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2020-12-16 20:14:22 CET
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-tmpfiles-clean.service
Invocation ID: f701e86e61ac47198a2ae9d5f3c61a69
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-clean.service
Condition Timestamp: Wed 2020-12-16 20:14:22 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 20:14:22 CET
Assert Result: yes
Requires: system.slice (origin-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-tmpfiles-clean.timer (destination-implicit)
After: time-sync.target (origin-file)
After: system.slice (origin-file)
After: local-fs.target (origin-file)
After: systemd-journald.socket (origin-file)
TriggeredBy: systemd-tmpfiles-clean.timer (destination-implicit)
References: systemd-journald.socket (origin-file)
References: time-sync.target (origin-file)
References: system.slice (origin-file)
References: local-fs.target (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: systemd-tmpfiles-clean.timer (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
IOSchedulingClass: idle
IOPriority: 0
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemd-tmpfiles --clean
PID: 2331
Start Timestamp: Wed 2020-12-16 20:14:22 CET
Exit Timestamp: Wed 2020-12-16 20:14:22 CET
Exit Code: exited
Exit Status: 0
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-md-0.device:
Description: /dev/md/0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-md-0.device
Invocation ID: 864f8ff225de41eea25bdcd8743f3fd2
Following: sys-devices-virtual-block-md0.device
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2ddad7fdda:6e09b338:4f191946:ff6f2211.device
Following Set Member: sys-devices-virtual-block-md0.device
Following Set Member: dev-disk-by\x2duuid-d7feb5a7\x2dbf6f\x2d4dd1\x2d9c1a\x2deaf043afbaf4.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:0.device
Following Set Member: dev-md0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md0
Found: found-udev
-> Unit udisks2.service:
Description: Disk Manager
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: udisks2.service
Documentation: man:udisks(8)
Fragment Path: /lib/systemd/system/udisks2.service
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Requires: dbus.socket (origin-file)
WantedBy: graphical.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: graphical.target (destination-default)
Before: shutdown.target (origin-default)
After: dbus.socket (origin-file)
After: systemd-journald.socket (origin-file)
After: sysinit.target (origin-default)
After: basic.target (origin-default)
After: system.slice (origin-file)
References: dbus.socket (origin-file)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
References: system.slice (origin-file)
ReferencedBy: graphical.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: dbus
Restart: no
NotifyAccess: none
NotifyState: unknown
BusName: org.freedesktop.UDisks2
Bus Name Good: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGINT
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/lib/udisks2/udisksd
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit setserial.service:
Description: controls configuration of serial ports
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/setserial.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: setserial.service
Invocation ID: 4ddb6d2499b04efaa4c701811faa8efd
Documentation: man:setserial(8)
Fragment Path: /lib/systemd/system/setserial.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: system-getty.slice (origin-file)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
After: system.slice (origin-file)
After: sysinit.target (origin-default)
After: basic.target (origin-default)
After: systemd-journald.socket (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
References: system-getty.slice (origin-file)
References: shutdown.target (origin-default)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /etc/init.d/setserial start
-> ExecStop:
Command Line: /etc/init.d/setserial stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-fsckd.service:
Description: File System Check Daemon to report status
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 19:59:59 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: Wed 2020-12-16 19:59:59 CET
Inactive Enter Timestamp: Wed 2020-12-16 19:59:59 CET
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-fsckd.service
Invocation ID: 753e811365cf4f84bc096de44ace96a0
Documentation: man:systemd-fsckd.service(8)
Fragment Path: /lib/systemd/system/systemd-fsckd.service
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: systemd-fsckd.socket (origin-file)
Before: shutdown.target (origin-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-fsckd.socket (destination-implicit)
TriggeredBy: systemd-fsckd.socket (destination-implicit)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-fsckd.socket (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: systemd-fsckd.socket (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal+console
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-fsckd
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit ip6tables.service:
Description: ip6tables.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: ip6tables.service
Before: fail2ban.service (destination-file)
ReferencedBy: fail2ban.service (destination-file)
-> Unit dev-drbd-by\x2dres-er0.device:
Description: /dev/drbd/by-res/er0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:32 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:32 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-drbd-by\x2dres-er0.device
Invocation ID: 8d118ba33f5549b987be108baf4e2173
Following: sys-devices-virtual-block-drbd0.device
Following Set Member: dev-drbd-by\x2ddisk-md1.device
Following Set Member: dev-drbd0.device
Following Set Member: sys-devices-virtual-block-drbd0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/drbd0
Found: found-udev
-> Unit dev-dvd.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-dvd.device
Invocation ID: 79bcb36bde174ba0a104e89d0262b26f
Following: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrw.device
Following Set Member: dev-dvdrw.device
Following Set Member: dev-sr0.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrom.device
Following Set Member: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit dev-hugepages.mount:
Description: Huge Pages File System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/dev-hugepages.mount
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: dev-hugepages.mount
Invocation ID: 9aa88f4f722f41cf81de04b2801733e1
Documentation: https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/dev-hugepages.mount
ConditionVirtualization: !private-users untested
ConditionCapability: CAP_SYS_ADMIN untested
ConditionPathExists: /sys/kernel/mm/hugepages untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-implicit origin-path)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-implicit origin-path)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: -.mount (origin-implicit origin-path)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /dev (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Mount State: mounted
Result: success
Where: /dev/hugepages
What: hugetlbfs
File System Type: hugetlbfs
Options: rw,relatime,pagesize=2M
From /proc/self/mountinfo: yes
From fragment: yes
Extrinsic: yes
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit slapd.service:
Description: slapd.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: slapd.service
Before: isc-dhcp-server.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-file)
-> Unit exim4.service:
Description: LSB: exim Mail Transport Agent
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:53 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:53 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/exim4.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: exim4.service
Invocation ID: 0bcb7267534d4cf98a533156e6d30af1
Documentation: man:systemd-sysv-generator(8)
Fragment Path: /run/systemd/generator.late/exim4.service
Source Path: /etc/init.d/exim4
Condition Timestamp: Wed 2020-12-16 19:59:32 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:32 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Wants: network-online.target (origin-file)
WantedBy: graphical.target (destination-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: graphical.target (origin-file destination-default)
Before: multi-user.target (origin-file destination-default)
After: network-online.target (origin-file)
After: mysql.service (origin-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: postgresql.service (origin-file)
After: time-sync.target (origin-file)
After: remote-fs.target (origin-file)
After: basic.target (origin-default)
After: nss-lookup.target (origin-file)
After: sysinit.target (origin-default)
After: spamassassin.service (origin-file)
After: clamav-daemon.service (origin-file)
After: greylist.service (origin-file)
References: greylist.service (origin-file)
References: nss-lookup.target (origin-file)
References: shutdown.target (origin-default)
References: time-sync.target (origin-file)
References: postgresql.service (origin-file)
References: mysql.service (origin-file)
References: graphical.target (origin-file)
References: sysinit.target (origin-default)
References: clamav-daemon.service (origin-file)
References: spamassassin.service (origin-file)
References: basic.target (origin-default)
References: systemd-journald.socket (origin-file)
References: multi-user.target (origin-file)
References: system.slice (origin-file)
References: remote-fs.target (origin-file)
References: network-online.target (origin-file)
ReferencedBy: graphical.target (destination-file destination-default)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 5min
TimeoutStopSec: 5min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /etc/init.d/exim4 start
-> ExecReload:
Command Line: /etc/init.d/exim4 reload
-> ExecStop:
Command Line: /etc/init.d/exim4 stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-tmpfiles-clean.timer:
Description: Daily Cleanup of Temporary Directories
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 20:14:22 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: systemd-tmpfiles-clean.timer
Invocation ID: 8ad6cbf9c1044ed395b4bed3607daefe
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-clean.timer
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
WantedBy: timers.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: timers.target (origin-default)
Before: systemd-tmpfiles-clean.service (origin-implicit)
Before: shutdown.target (origin-default)
After: sysinit.target (origin-default)
Triggers: systemd-tmpfiles-clean.service (origin-implicit)
References: timers.target (origin-default)
References: sysinit.target (origin-default)
References: systemd-tmpfiles-clean.service (origin-implicit)
References: shutdown.target (origin-default)
ReferencedBy: timers.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Timer State: waiting
Result: success
Unit: systemd-tmpfiles-clean.service
Persistent: no
WakeSystem: no
Accuracy: 1min
RemainAfterElapse: yes
OnUnitActiveSec: 1d
OnBootSec: 15min
-> Unit systemd-update-utmp-runlevel.service:
Description: Update UTMP about System Runlevel Changes
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 19:59:53 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:53 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2020-12-16 19:59:53 CET
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-update-utmp-runlevel.service
Invocation ID: da1c74e6ce3e426ba1fd33724f34abff
Documentation: man:systemd-update-utmp.service(8)
Documentation: man:utmp(5)
Fragment Path: /lib/systemd/system/systemd-update-utmp-runlevel.service
Condition Timestamp: Wed 2020-12-16 19:59:53 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:53 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
Requisite: systemd-update-utmp.service (origin-file)
WantedBy: graphical.target (destination-file)
WantedBy: rescue.target (destination-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
After: system.slice (origin-file)
After: rescue.target (origin-file)
After: graphical.target (origin-file)
After: multi-user.target (origin-file)
After: systemd-journald.socket (origin-file)
After: -.mount (origin-file origin-path)
After: systemd-update-utmp.service (origin-file)
References: rescue.target (origin-file)
References: multi-user.target (origin-file)
References: -.mount (origin-file origin-path)
References: graphical.target (origin-file)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-file)
References: systemd-update-utmp.service (origin-file)
References: system.slice (origin-file)
ReferencedBy: graphical.target (destination-file)
ReferencedBy: rescue.target (destination-file)
ReferencedBy: multi-user.target (destination-file)
RequiresMountsFor: /var/log/wtmp (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-update-utmp runlevel
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart3.device
Invocation ID: ea71bd6ad7ba4e1fae5478b129d44a89
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: dev-sdb3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d03.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb3
Found: found-udev
-> Unit sockets.target:
Description: Sockets
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sockets.target
Invocation ID: 0a39a4dd2bc749b59079f0fa48f73ec2
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/sockets.target
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Wants: uuidd.socket (origin-file)
Wants: virtlogd-admin.socket (origin-file)
Wants: dm-event.socket (origin-file)
Wants: dbus.socket (origin-file)
Wants: systemd-journald-audit.socket (origin-file)
Wants: systemd-udevd-kernel.socket (origin-file)
Wants: systemd-initctl.socket (origin-file)
Wants: virtlockd-admin.socket (origin-file)
Wants: systemd-journald-dev-log.socket (origin-file)
Wants: systemd-udevd-control.socket (origin-file)
Wants: systemd-journald.socket (origin-file)
WantedBy: basic.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: basic.target (destination-file destination-default)
Before: shutdown.target (origin-default)
After: systemd-udevd-control.socket (destination-file)
After: uuidd.socket (origin-default destination-default)
After: dbus.socket (origin-default destination-default)
After: systemd-initctl.socket (destination-file)
After: syslog.socket (destination-file)
After: systemd-journald.socket (destination-file)
After: systemd-udevd-kernel.socket (destination-file)
After: systemd-journald-audit.socket (destination-file)
After: systemd-journald-dev-log.socket (destination-file)
After: virtlockd-admin.socket (origin-default destination-default)
After: virtlogd-admin.socket (origin-default destination-default)
After: virtlogd.socket (destination-default)
After: virtlockd.socket (destination-default)
References: systemd-initctl.socket (origin-file)
References: systemd-journald-dev-log.socket (origin-file)
References: virtlockd-admin.socket (origin-file origin-default)
References: systemd-journald.socket (origin-file)
References: systemd-journald-audit.socket (origin-file)
References: systemd-udevd-kernel.socket (origin-file)
References: dbus.socket (origin-file origin-default)
References: systemd-udevd-control.socket (origin-file)
References: uuidd.socket (origin-file origin-default)
References: virtlogd-admin.socket (origin-file origin-default)
References: shutdown.target (origin-default)
References: dm-event.socket (origin-file)
ReferencedBy: virtlogd.socket (destination-default)
ReferencedBy: systemd-initctl.socket (destination-file)
ReferencedBy: virtlockd.socket (destination-default)
ReferencedBy: virtlockd-admin.socket (destination-default)
ReferencedBy: systemd-journald-dev-log.socket (destination-file)
ReferencedBy: basic.target (destination-file destination-default)
ReferencedBy: dbus.socket (destination-default)
ReferencedBy: syslog.socket (destination-file)
ReferencedBy: systemd-journald-audit.socket (destination-file)
ReferencedBy: uuidd.socket (destination-default)
ReferencedBy: systemd-udevd-control.socket (destination-file)
ReferencedBy: systemd-udevd-kernel.socket (destination-file)
ReferencedBy: systemd-journald.socket (destination-file)
ReferencedBy: virtlogd-admin.socket (destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit getty-static.service:
Description: getty on tty2-tty6 if dbus and logind are not available
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: getty-static.service
Fragment Path: /lib/systemd/system/getty-static.service
ConditionPathExists: !/lib/systemd/system/dbus.service untested
ConditionPathExists: /dev/tty0 untested
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: no
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: getty.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: getty.target (destination-default)
Before: shutdown.target (origin-default)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: basic.target (origin-default)
After: systemd-journald.socket (origin-file)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: system.slice (origin-file)
References: basic.target (origin-default)
References: systemd-journald.socket (origin-file)
ReferencedBy: getty.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemctl --no-block start getty at tty2.service getty at tty3.service getty at tty4.service getty at tty5.service getty at tty6.service
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-tmpfiles-setup.service:
Description: Create Volatile Files and Directories
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-tmpfiles-setup.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-tmpfiles-setup.service
Invocation ID: 6bf06b7cc71047d280fd60846db865db
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-setup.service
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: logrotate.service (destination-file)
Before: systemd-update-utmp.service (destination-file)
Before: corosync.service (destination-file)
Before: systemd-timesyncd.service (destination-file)
Before: auditd.service (destination-file)
Before: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: local-fs.target (origin-file)
After: systemd-journald.service (origin-file)
After: systemd-journal-flush.service (destination-file)
After: systemd-sysusers.service (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-file)
References: systemd-sysusers.service (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.service (origin-file)
References: local-fs.target (origin-file)
ReferencedBy: corosync.service (destination-file)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: systemd-journal-flush.service (destination-file)
ReferencedBy: systemd-update-utmp.service (destination-file)
ReferencedBy: auditd.service (destination-file)
ReferencedBy: logrotate.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: yes
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemd-tmpfiles --create --remove --boot --exclude-prefix=/dev
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit swap.target:
Description: Swap
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: swap.target
Invocation ID: 13c0ba55a7d94e39babdb5ba3f0545ad
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/swap.target
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: run-user-0.mount (destination-mountinfo-default)
Before: sysinit.target (destination-file destination-default)
References: shutdown.target (origin-default)
ReferencedBy: sysinit.target (destination-file destination-default)
ReferencedBy: run-user-0.mount (destination-mountinfo-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit auditd.service:
Description: Security Auditing Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/auditd.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: auditd.service
Invocation ID: 5e10345e973b4792b49503597cc63d27
Documentation: man:auditd(8)
Documentation: https://github.com/linux-audit/audit-documentation
Fragment Path: /lib/systemd/system/auditd.service
ConditionKernelCommandLine: !audit=0 untested
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: systemd-update-utmp.service (destination-file)
Before: shutdown.target (origin-file)
Before: ssh.service (destination-file)
After: systemd-tmpfiles-setup.service (origin-file)
After: local-fs.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: sysinit.target (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-tmpfiles-setup.service (origin-file)
References: local-fs.target (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: multi-user.target (destination-file)
ReferencedBy: systemd-update-utmp.service (destination-file)
ReferencedBy: ssh.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 526
Main PID Known: yes
Main PID Alien: no
PIDFile: /run/auditd.pid
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /sbin/auditd
-> ExecStartPost:
Command Line: /sbin/augenrules --load
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit greylist.service:
Description: greylist.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: greylist.service
Before: exim4.service (destination-file)
ReferencedBy: exim4.service (destination-file)
-> Unit dev-cdrw.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-cdrw.device
Invocation ID: de1867a0c63e4a4fa692b84b12b03fd5
Following: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-dvdrw.device
Following Set Member: dev-sr0.device
Following Set Member: dev-dvd.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrom.device
Following Set Member: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit dev-sda.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sda.device
Invocation ID: 0d346da9672c453e811fba77cf0e10c5
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
Found: found-udev
-> Unit uuidd.service:
Description: Daemon for generating UUIDs
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: uuidd.service
Documentation: man:uuidd(8)
Fragment Path: /lib/systemd/system/uuidd.service
Requires: sysinit.target (origin-default)
Requires: uuidd.socket (origin-file)
Requires: system.slice (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: system.slice (origin-file)
After: basic.target (origin-default)
After: systemd-journald.socket (origin-file)
After: sysinit.target (origin-default)
After: uuidd.socket (destination-implicit)
TriggeredBy: uuidd.socket (destination-implicit)
References: system.slice (origin-file)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: systemd-journald.socket (origin-file)
References: sysinit.target (origin-default)
References: uuidd.socket (origin-file)
ReferencedBy: uuidd.socket (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: uuidd
Group: uuidd
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/uuidd --socket-activation
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sys-subsystem-net-devices-enp0s25.device:
Description: 82579LM Gigabit Network Connection (Lewisville)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-subsystem-net-devices-enp0s25.device
Invocation ID: e0c5e9a89aed48798ef918e6fdc90fe0
Following Set Member: sys-devices-pci0000:00-0000:00:19.0-net-enp0s25.device
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
BoundBy: ifup at enp0s25.service (destination-file)
Before: ifup at enp0s25.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:19.0/net/enp0s25
Found: found-udev
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
Invocation ID: 8d9a454fd51445c3994c1df1eebd9e5d
Following Set Member: dev-sdb2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart2.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d02.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb2
Found: found-udev
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart2.device
Invocation ID: 868e4c30c6ed41788c7b0ccbcd470b5f
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d02.device
Following Set Member: dev-sdb2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb2
Found: found-udev
-> Unit NetworkManager.service:
Description: NetworkManager.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: NetworkManager.service
Before: apt-daily-upgrade.service (destination-file)
Before: apt-daily.service (destination-file)
ReferencedBy: apt-daily-upgrade.service (destination-file)
ReferencedBy: apt-daily.service (destination-file)
-> Unit sys-devices-pci0000:00-0000:00:16.3-tty-ttyS1.device:
Description: 7 Series/C210 Series Chipset Family KT Controller
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:16.3-tty-ttyS1.device
Invocation ID: 8760ed28e27d43daa82014a2c1e44c1c
Following Set Member: dev-ttyS1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:16.3/tty/ttyS1
Found: found-udev
-> Unit systemd-remount-fs.service:
Description: Remount Root and Kernel File Systems
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-remount-fs.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-remount-fs.service
Invocation ID: 54cdd81f15c14899a22964b990872485
Documentation: man:systemd-remount-fs.service(8)
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/systemd-remount-fs.service
ConditionPathExists: /etc/fstab untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Wants: local-fs-pre.target (origin-file)
WantedBy: local-fs.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: local-fs.target (origin-file)
Before: shutdown.target (origin-file)
Before: systemd-random-seed.service (destination-file)
Before: local-fs-pre.target (origin-file)
Before: systemd-journal-flush.service (destination-file)
Before: systemd-hwdb-update.service (destination-file)
Before: systemd-timesyncd.service (destination-file)
Before: systemd-quotacheck.service (destination-file)
Before: systemd-sysusers.service (destination-file)
Before: systemd-rfkill.socket (destination-file)
Before: systemd-update-utmp.service (destination-file)
Before: systemd-rfkill.service (destination-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-fsck-root.service (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-fsck-root.service (origin-file)
References: shutdown.target (origin-file)
References: local-fs-pre.target (origin-file)
References: local-fs.target (origin-file)
ReferencedBy: systemd-rfkill.socket (destination-file)
ReferencedBy: systemd-journal-flush.service (destination-file)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: systemd-random-seed.service (destination-file)
ReferencedBy: systemd-rfkill.service (destination-file)
ReferencedBy: local-fs.target (destination-file)
ReferencedBy: systemd-sysusers.service (destination-file)
ReferencedBy: systemd-update-utmp.service (destination-file)
ReferencedBy: systemd-hwdb-update.service (destination-file)
ReferencedBy: systemd-quotacheck.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-remount-fs
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sys-subsystem-net-devices-enp1s0f0.device:
Description: 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) (PRO/1000 PT Dual Port Server Adapter)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-subsystem-net-devices-enp1s0f0.device
Invocation ID: dd575d038fe544f191f08974682b6e27
Following Set Member: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.0-net-enp1s0f0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.0/net/enp1s0f0
Found: found-udev
-> Unit sys-fs-fuse-connections.mount:
Description: FUSE Control File System
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: sys-fs-fuse-connections.mount
Documentation: https://www.kernel.org/doc/Documentation/filesystems/fuse.txt
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/sys-fs-fuse-connections.mount
ConditionVirtualization: !private-users untested
ConditionCapability: CAP_SYS_ADMIN untested
ConditionPathExists: /sys/fs/fuse/connections untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: no
Requires: system.slice (origin-file)
Requires: -.mount (origin-implicit origin-path)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
After: systemd-modules-load.service (origin-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: -.mount (origin-implicit origin-path)
References: systemd-modules-load.service (origin-file)
References: sysinit.target (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: -.mount (origin-implicit origin-path)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /sys/fs/fuse (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
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
Extrinsic: yes
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit virtlockd.socket:
Description: Virtual machine lock manager socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/virtlockd.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: virtlockd.socket
Invocation ID: d6192feb275546c2b11e97a38ec3bf5c
Fragment Path: /lib/systemd/system/virtlockd.socket
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
RequiredBy: virtlockd.service (destination-file)
RequiredBy: libvirtd.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: libvirtd.service (origin-file)
Before: virtlockd.service (origin-implicit)
Before: shutdown.target (origin-default)
Before: sockets.target (origin-default)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: virtlockd.service (origin-implicit)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: virtlockd.service (origin-implicit)
References: libvirtd.service (origin-file)
References: -.mount (origin-file origin-path)
References: sockets.target (origin-default)
References: sysinit.target (origin-default)
ReferencedBy: virtlockd.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
RequiresMountsFor: /var/run/libvirt/virtlockd-sock (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: virtlockd.socket
SELinuxContextFromNet: no
ListenStream: /var/run/libvirt/virtlockd-sock
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit logrotate.service:
Description: Rotate log files
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory devices pids bpf-devices
Name: logrotate.service
Documentation: man:logrotate(8)
Documentation: man:logrotate.conf(5)
Fragment Path: /lib/systemd/system/logrotate.service
ConditionACPower: true untested
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: -.mount (origin-file origin-path)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: basic.target (origin-default)
After: systemd-tmpfiles-setup.service (origin-file)
After: logrotate.timer (destination-implicit)
After: sysinit.target (origin-default)
TriggeredBy: logrotate.timer (destination-implicit)
References: systemd-journald.socket (origin-file)
References: -.mount (origin-file origin-path)
References: system.slice (origin-file)
References: systemd-tmpfiles-setup.service (origin-file)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
ReferencedBy: logrotate.timer (destination-implicit)
RequiresMountsFor: /tmp (origin-file)
RequiresMountsFor: /var/tmp (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: yes
PrivateDevices: yes
ProtectKernelTunables: no
ProtectKernelModules: yes
ProtectControlGroups: yes
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: full
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: yes
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
Nice: 19
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
IOSchedulingClass: best-effort
IOPriority: 7
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
CapabilityBoundingSet: cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap_ipc_owner cap_sys_chroot cap_sys_ptrace cap_sys_pacct cap_sys_admin cap_sys_boot cap_sys_nice cap_sys_resource cap_sys_time cap_sys_tty_config cap_lease cap_audit_write cap_audit_control cap_setfcap cap_mac_override cap_mac_admin cap_syslog cap_wake_alarm cap_block_suspend
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/logrotate /etc/logrotate.conf
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=closed
Delegate=no
-> Unit dev-disk-by\x2did-md\x2duuid\x2da3345aa3:3cdb29e4:80818cb1:b2a5d670.device:
Description: /dev/disk/by-id/md-uuid-a3345aa3:3cdb29e4:80818cb1:b2a5d670
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-md\x2duuid\x2da3345aa3:3cdb29e4:80818cb1:b2a5d670.device
Invocation ID: b63078bf957e43dc8f0053b8c35471a3
Following: sys-devices-virtual-block-md1.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:md1.device
Following Set Member: dev-md-e1:1.device
Following Set Member: dev-md1.device
Following Set Member: sys-devices-virtual-block-md1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md1
Found: found-udev
-> Unit rc-local.service:
Description: /etc/rc.local
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:45 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:45 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/rc-local.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: rc-local.service
Invocation ID: 8d0cef7ebc804dbaa81b3d1b7091be65
Fragment Path: /etc/systemd/system/rc-local.service
DropIn Path: /usr/lib/systemd/system/rc-local.service.d/debian.conf
ConditionPathExists: /etc/rc.local untested
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: plymouth-quit-wait.service (destination-file)
Before: plymouth-quit.service (destination-file)
Before: getty at tty1.service (destination-file)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: serial-getty at ttyS0.service (destination-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: network-online.target (origin-file)
After: basic.target (origin-default)
After: sysinit.target (origin-default)
References: basic.target (origin-default)
References: sysinit.target (origin-default)
References: shutdown.target (origin-default)
References: systemd-journald.socket (origin-file)
References: network-online.target (origin-file)
References: system.slice (origin-file)
ReferencedBy: plymouth-quit-wait.service (destination-file)
ReferencedBy: plymouth-quit.service (destination-file)
ReferencedBy: getty at tty1.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: infinity
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal+console
StandardError: journal+console
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /etc/rc.local start
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sys-devices-pci0000:00-0000:00:19.0-net-enp0s25.device:
Description: 82579LM Gigabit Network Connection (Lewisville)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:19.0-net-enp0s25.device
Invocation ID: fdbc989ec0954f1895a75a9b324243e3
Following Set Member: sys-subsystem-net-devices-enp0s25.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:19.0/net/enp0s25
Found: found-udev
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart3.device
Invocation ID: 29e687e818a24d11be2cbdcc1373814b
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart3.device
Following Set Member: dev-sdb3.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d03.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb3
Found: found-udev
-> Unit systemd-journal-flush.service:
Description: Flush Journal to Persistent Storage
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-journal-flush.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-journal-flush.service
Invocation ID: f042dc80ca934539b35cdf434b39b576
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journal-flush.service
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
Requires: systemd-journald.service (origin-file)
WantedBy: sysinit.target (destination-file)
Before: systemd-tmpfiles-setup.service (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
After: systemd-journald.service (origin-file)
After: systemd-remount-fs.service (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-tmpfiles-setup.service (origin-file)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
References: systemd-journald.service (origin-file)
References: systemd-remount-fs.service (origin-file)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /var/log/journal (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/journalctl --flush
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-sr0.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sr0.device
Invocation ID: 87d63ac3de454c9c888f3b80e9c33f4e
Following: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrw.device
Following Set Member: dev-dvdrw.device
Following Set Member: dev-dvd.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrom.device
Following Set Member: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit remote-fs-pre.target:
Description: Remote File Systems (Pre)
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: remote-fs-pre.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/remote-fs-pre.target
Conflicts: shutdown.target (origin-default)
Before: remote-fs.target (destination-file)
Before: shutdown.target (origin-default)
References: shutdown.target (origin-default)
ReferencedBy: remote-fs.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Invocation ID: 69cd0bbf4d3e4de3934b97680264d54e
Following Set Member: dev-sdb3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d03.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb3
Found: found-udev
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device
Invocation ID: 9d7ef0c69e5b4f05a262b1adea11312a
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
Following Set Member: dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device
Following Set Member: dev-sdb1.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
Found: found-udev
-> Unit emergency.target:
Description: Emergency Mode
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: emergency.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/emergency.target
Requires: emergency.service (origin-file)
Conflicts: shutdown.target (origin-default)
ConflictedBy: sysinit.target (destination-file)
Before: sysinit.target (destination-file)
Before: shutdown.target (origin-default)
After: emergency.service (origin-file)
References: emergency.service (origin-file)
References: shutdown.target (origin-default)
ReferencedBy: local-fs.target (destination-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit rsync.service:
Description: fast remote file copy program daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: rsync.service
Documentation: man:rsync(1)
Documentation: man:rsyncd.conf(5)
Fragment Path: /lib/systemd/system/rsync.service
ConditionPathExists: /etc/rsyncd.conf untested
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: no
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: sysinit.target (origin-default)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: network.target (origin-file)
After: basic.target (origin-default)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: network.target (origin-file)
References: basic.target (origin-default)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/bin/rsync --daemon --no-detach
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit apt-daily-upgrade.service:
Description: Daily apt upgrade and clean activities
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: apt-daily-upgrade.service
Documentation: man:apt(8)
Fragment Path: /lib/systemd/system/apt-daily-upgrade.service
ConditionACPower: true untested
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: sysinit.target (origin-default)
After: apt-daily.service (origin-file)
After: connman.service (origin-file)
After: network-online.target (origin-file)
After: apt-daily-upgrade.timer (destination-implicit)
After: systemd-networkd.service (origin-file)
After: basic.target (origin-default)
After: systemd-journald.socket (origin-file)
After: network.target (origin-file)
After: NetworkManager.service (origin-file)
After: system.slice (origin-file)
TriggeredBy: apt-daily-upgrade.timer (destination-implicit)
References: systemd-networkd.service (origin-file)
References: systemd-journald.socket (origin-file)
References: apt-daily.service (origin-file)
References: NetworkManager.service (origin-file)
References: connman.service (origin-file)
References: system.slice (origin-file)
References: sysinit.target (origin-default)
References: network.target (origin-file)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: network-online.target (origin-file)
ReferencedBy: apt-daily-upgrade.timer (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 15min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /usr/lib/apt/apt-helper wait-online
-> ExecStart:
Command Line: /usr/lib/apt/apt.systemd.daily install
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit syslog.target:
Description: syslog.target
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: syslog.target
Before: zabbix-agent2.service (destination-file)
ReferencedBy: zabbix-agent2.service (destination-file)
-> Unit systemd-ask-password-plymouth.path:
Description: Forward Password Requests to Plymouth Directory Watch
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: systemd-ask-password-plymouth.path
Invocation ID: 1521c1d3d0b24ea68a91125a8496b0b1
Documentation: http://www.freedesktop.org/wiki/Software/systemd/PasswordAgents
Fragment Path: /lib/systemd/system/systemd-ask-password-plymouth.path
ConditionPathExists: /run/plymouth/pid untested
ConditionKernelCommandLine: !nosplash untested
ConditionKernelCommandLine: !plymouth.enable=0 untested
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
Requires: -.mount (origin-file origin-path)
WantedBy: plymouth-start.service (destination-file)
Conflicts: shutdown.target (origin-file)
Before: systemd-ask-password-plymouth.service (origin-implicit)
Before: basic.target (origin-file)
Before: shutdown.target (origin-file)
After: plymouth-start.service (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-ask-password-plymouth.service (origin-implicit)
References: systemd-ask-password-plymouth.service (origin-implicit)
References: basic.target (origin-file)
References: -.mount (origin-file origin-path)
References: plymouth-start.service (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: plymouth-start.service (destination-file)
RequiresMountsFor: /run/systemd/ask-password (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Path State: waiting
Result: success
Unit: systemd-ask-password-plymouth.service
MakeDirectory: yes
DirectoryMode: 0755
DirectoryNotEmpty: /run/systemd/ask-password
-> Unit dev-sdb1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sdb1.device
Invocation ID: 369f75287a0f4070af9d822cb675a178
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
Following Set Member: dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
Found: found-udev
-> Unit sys-devices-virtual-net-br1.device:
Description: /sys/devices/virtual/net/br1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-net-br1.device
Invocation ID: 2bd5dc7a356947b183bdb5c8591f5508
Following Set Member: sys-subsystem-net-devices-br1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/br1
Found: found-udev
-> Unit tmp.mount:
Description: tmp.mount
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: tmp.mount
WantedBy: basic.target (destination-file)
Before: basic.target (destination-file)
ReferencedBy: basic.target (destination-file)
-> Unit libvirtd.service:
Description: Virtualization daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:33 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:33 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/libvirtd.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: libvirtd.service
Invocation ID: 83f0ffb14b484f15aecb24d7623cecf3
Documentation: man:libvirtd(8)
Documentation: https://libvirt.org
Fragment Path: /lib/systemd/system/libvirtd.service
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: virtlogd.socket (origin-file)
Requires: system.slice (origin-file)
Requires: virtlockd.socket (origin-file)
Requires: sysinit.target (origin-default)
Wants: systemd-machined.service (origin-file)
WantedBy: libvirt-guests.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: libvirt-guests.service (origin-file destination-file)
Before: shutdown.target (origin-default)
After: apparmor.service (origin-file)
After: remote-fs.target (origin-file)
After: virtlockd-admin.socket (destination-file)
After: dbus.service (origin-file)
After: iscsid.service (origin-file)
After: sysinit.target (origin-default)
After: virtlogd.socket (destination-file)
After: virtlogd-admin.socket (destination-file)
After: systemd-machined.service (origin-file)
After: virtlogd.service (destination-file)
After: systemd-journald.socket (origin-file)
After: virtlockd.socket (destination-file)
After: local-fs.target (origin-file)
After: virtlockd.service (destination-file)
After: systemd-logind.service (origin-file)
After: network.target (origin-file)
After: basic.target (origin-default)
After: system.slice (origin-file)
References: systemd-logind.service (origin-file)
References: system.slice (origin-file)
References: iscsid.service (origin-file)
References: virtlogd.socket (origin-file)
References: apparmor.service (origin-file)
References: systemd-machined.service (origin-file)
References: local-fs.target (origin-file)
References: systemd-journald.socket (origin-file)
References: remote-fs.target (origin-file)
References: shutdown.target (origin-default)
References: dbus.service (origin-file)
References: basic.target (origin-default)
References: libvirt-guests.service (origin-file)
References: virtlockd.socket (origin-file)
References: network.target (origin-file)
References: sysinit.target (origin-default)
ReferencedBy: virtlogd.socket (destination-file)
ReferencedBy: virtlockd-admin.socket (destination-file)
ReferencedBy: libvirt-guests.service (destination-file)
ReferencedBy: virtlogd-admin.socket (destination-file)
ReferencedBy: virtlogd.service (destination-file)
ReferencedBy: virtlockd.service (destination-file)
ReferencedBy: virtlockd.socket (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: on-failure
NotifyAccess: main
NotifyState: unknown
Main PID: 686
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/libvirtd
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 8192
LimitNOFILESoft: 8192
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/libvirtd $libvirtd_opts
-> ExecReload:
Command Line: /bin/kill -HUP $MAINPID
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=32768
DevicePolicy=auto
Delegate=no
-> Unit dev-md1.device:
Description: /dev/md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-md1.device
Invocation ID: 71046fbf766c4ac09f92be1676e0a2c1
Following: sys-devices-virtual-block-md1.device
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2da3345aa3:3cdb29e4:80818cb1:b2a5d670.device
Following Set Member: sys-devices-virtual-block-md1.device
Following Set Member: dev-md-e1:1.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:md1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md1
Found: found-udev
-> Unit timers.target:
Description: Timers
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: timers.target
Invocation ID: 4990c4b77efe4470b7bf1814b7a28772
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/timers.target
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Wants: man-db.timer (origin-file)
Wants: systemd-tmpfiles-clean.timer (origin-file)
Wants: apt-daily-upgrade.timer (origin-file)
Wants: logrotate.timer (origin-file)
Wants: apt-daily.timer (origin-file)
WantedBy: basic.target (destination-file)
Conflicts: shutdown.target (origin-file)
After: man-db.timer (destination-default)
After: systemd-tmpfiles-clean.timer (destination-default)
After: apt-daily.timer (destination-default)
After: logrotate.timer (destination-default)
After: apt-daily-upgrade.timer (destination-default)
References: man-db.timer (origin-file)
References: systemd-tmpfiles-clean.timer (origin-file)
References: apt-daily-upgrade.timer (origin-file)
References: logrotate.timer (origin-file)
References: apt-daily.timer (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: apt-daily-upgrade.timer (destination-default)
ReferencedBy: basic.target (destination-file)
ReferencedBy: man-db.timer (destination-default)
ReferencedBy: systemd-tmpfiles-clean.timer (destination-default)
ReferencedBy: apt-daily.timer (destination-default)
ReferencedBy: logrotate.timer (destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit systemd-vconsole-setup.service:
Description: systemd-vconsole-setup.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: systemd-vconsole-setup.service
Before: systemd-ask-password-console.service (destination-file)
ReferencedBy: systemd-ask-password-console.service (destination-file)
-> Unit getty.target:
Description: Login Prompts
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:45 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:45 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:45 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: getty.target
Invocation ID: fee38e4557ad4cc890cee9f025635e4c
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 2020-12-16 19:59:45 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:45 CET
Assert Result: yes
Wants: getty at tty1.service (origin-file)
Wants: serial-getty at ttyS0.service (origin-file)
Wants: getty-static.service (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: getty at tty1.service (origin-default destination-file)
After: serial-getty at ttyS0.service (origin-default destination-file)
After: getty-static.service (origin-default)
References: getty at tty1.service (origin-file origin-default)
References: serial-getty at ttyS0.service (origin-file origin-default)
References: shutdown.target (origin-default)
References: getty-static.service (origin-file origin-default)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
ReferencedBy: getty at tty1.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit iscsid.service:
Description: iscsid.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: iscsid.service
Before: blk-availability.service (destination-file)
Before: libvirtd.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
-> Unit sys-kernel-config.mount:
Description: Kernel Configuration File System
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: sys-kernel-config.mount
Documentation: https://www.kernel.org/doc/Documentation/filesystems/configfs/configfs.txt
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/sys-kernel-config.mount
ConditionCapability: CAP_SYS_RAWIO untested
ConditionPathExists: /sys/kernel/config untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: no
Requires: system.slice (origin-file)
Requires: -.mount (origin-implicit origin-path)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-implicit origin-path)
After: systemd-journald.socket (origin-file)
After: systemd-modules-load.service (origin-file)
References: system.slice (origin-file)
References: sysinit.target (origin-file)
References: -.mount (origin-implicit origin-path)
References: systemd-journald.socket (origin-file)
References: systemd-modules-load.service (origin-file)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /sys/kernel (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
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
Extrinsic: yes
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-initctl.service:
Description: initctl Compatibility Daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-initctl.service
Documentation: man:systemd-initctl.service(8)
Fragment Path: /lib/systemd/system/systemd-initctl.service
Requires: system.slice (origin-file)
After: systemd-initctl.socket (destination-implicit)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
TriggeredBy: systemd-initctl.socket (destination-implicit)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
ReferencedBy: systemd-initctl.socket (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: all
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
SystemCallArchitectures: native
-> ExecStart:
Command Line: /lib/systemd/systemd-initctl
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit emergency.service:
Description: Emergency Shell
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: emergency.service
Documentation: man:sulogin(8)
Fragment Path: /lib/systemd/system/emergency.service
Requires: system.slice (origin-file)
RequiredBy: emergency.target (destination-file)
Conflicts: rescue.service (origin-file)
Conflicts: shutdown.target (origin-file)
ConflictedBy: systemd-ask-password-wall.path (destination-file)
ConflictedBy: sysinit.target (destination-file)
ConflictedBy: systemd-ask-password-console.path (destination-file)
ConflictedBy: syslog.socket (destination-file)
ConflictedBy: systemd-ask-password-console.service (destination-file)
Before: shutdown.target (origin-file)
Before: rescue.service (origin-file)
Before: emergency.target (destination-file)
Before: sysinit.target (destination-file)
After: system.slice (origin-file)
After: syslog.socket (destination-file)
References: rescue.service (origin-file)
References: shutdown.target (origin-file)
References: system.slice (origin-file)
ReferencedBy: systemd-ask-password-wall.path (destination-file)
ReferencedBy: emergency.target (destination-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: systemd-ask-password-console.path (destination-file)
ReferencedBy: syslog.socket (destination-file)
ReferencedBy: systemd-ask-password-console.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: idle
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: yes
UMask: 0022
WorkingDirectory: /root
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
Environment: HOME=/root
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: tty-force
StandardOutput: inherit
StandardError: inherit
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /bin/plymouth --wait quit
-> ExecStart:
Command Line: /lib/systemd/systemd-sulogin-shell emergency
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-ask-password-plymouth.service:
Description: Forward Password Requests to Plymouth
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-ask-password-plymouth.service
Documentation: http://www.freedesktop.org/wiki/Software/systemd/PasswordAgents
Fragment Path: /lib/systemd/system/systemd-ask-password-plymouth.service
ConditionPathExists: /run/plymouth/pid untested
ConditionVirtualization: !container untested
ConditionKernelCommandLine: !nosplash untested
ConditionKernelCommandLine: !plymouth.enable=0 untested
Requires: system.slice (origin-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-ask-password-plymouth.path (destination-implicit)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: plymouth-start.service (origin-file destination-file)
TriggeredBy: systemd-ask-password-plymouth.path (destination-implicit)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: plymouth-start.service (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: plymouth-start.service (destination-file)
ReferencedBy: systemd-ask-password-plymouth.path (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemd-tty-ask-password-agent --watch --plymouth
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device
Invocation ID: 0ece5cac0d614bbfab33ce2a2215c58c
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device
Following Set Member: dev-sda1.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d01.device
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
BoundBy: boot.mount (destination-file)
BoundBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
Before: boot.mount (destination-file)
Before: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
ReferencedBy: boot.mount (destination-file)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
Found: found-udev
-> Unit -.slice:
Description: Root Slice
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: yes
Garbage Collection Mode: inactive
Slice: n/a
CGroup:
CGroup realized: yes
CGroup realized mask: cpu cpuacct memory devices pids bpf-firewall bpf-devices
CGroup enabled mask: memory pids
CGroup own mask: cpu cpuacct memory pids
CGroup members mask: memory devices pids bpf-firewall bpf-devices
Name: -.slice
Documentation: man:systemd.special(7)
RequiredBy: system.slice (destination-implicit)
RequiredBy: init.scope (destination-file)
RequiredBy: user.slice (destination-implicit)
WantedBy: slices.target (destination-file)
Before: slices.target (destination-file)
Before: system.slice (destination-implicit)
Before: init.scope (destination-file)
Before: user.slice (destination-implicit)
ReferencedBy: slices.target (destination-file)
ReferencedBy: system.slice (destination-implicit)
ReferencedBy: init.scope (destination-file)
ReferencedBy: user.slice (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Slice State: active
CPUAccounting=yes
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
-> Unit systemd-tmpfiles-setup-dev.service:
Description: Create Static Device Nodes in /dev
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-tmpfiles-setup-dev.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-tmpfiles-setup-dev.service
Invocation ID: 07771eed2d574dfaaa48188d040dda93
Documentation: man:tmpfiles.d(5)
Documentation: man:systemd-tmpfiles(8)
Fragment Path: /lib/systemd/system/systemd-tmpfiles-setup-dev.service
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: systemd-udevd.service (origin-file)
Before: local-fs-pre.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-sysusers.service (origin-file)
After: system.slice (origin-file)
After: kmod-static-nodes.service (destination-file)
References: shutdown.target (origin-file)
References: systemd-sysusers.service (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: local-fs-pre.target (origin-file)
References: systemd-udevd.service (origin-file)
References: sysinit.target (origin-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: kmod-static-nodes.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemd-tmpfiles --prefix=/dev --create --boot
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit session-4.scope:
Description: Session 4 of user root
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 20:03:13 CET
Inactive Exit Timestamp: Wed 2020-12-16 20:03:13 CET
Active Enter Timestamp: Wed 2020-12-16 20:03:13 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: yes
Perpetual: no
Garbage Collection Mode: inactive
Slice: user-0.slice
CGroup: /user.slice/user-0.slice/session-4.scope
CGroup realized: yes
CGroup realized mask: memory pids
CGroup own mask: memory pids
Name: session-4.scope
Invocation ID: b043df44b57c475ab1832b86ed1778e5
Fragment Path: /run/systemd/transient/session-4.scope
Condition Timestamp: Wed 2020-12-16 20:03:13 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 20:03:13 CET
Assert Result: yes
Requires: user-0.slice (origin-file)
Requires: -.mount (origin-file)
Wants: user at 0.service (origin-file)
Wants: user-runtime-dir at 0.service (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: systemd-logind.service (origin-file)
After: user-runtime-dir at 0.service (origin-file)
After: -.mount (origin-file)
After: user-0.slice (origin-file)
After: user at 0.service (origin-file)
After: systemd-user-sessions.service (origin-file)
References: user at 0.service (origin-file)
References: systemd-logind.service (origin-file)
References: shutdown.target (origin-default)
References: user-0.slice (origin-file)
References: user-runtime-dir at 0.service (origin-file)
References: -.mount (origin-file)
References: systemd-user-sessions.service (origin-file)
RequiresMountsFor: /root (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Scope State: running
Result: success
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: yes
-> Unit nss-lookup.target:
Description: Host and Network Name Lookups
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:32 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:32 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: nss-lookup.target
Invocation ID: 8dfe80be2f6d4da4a511d454968042a5
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/nss-lookup.target
Condition Timestamp: Wed 2020-12-16 19:59:32 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:32 CET
Assert Result: yes
WantedBy: bind9.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: exim4.service (destination-file)
Before: isc-dhcp-server.service (destination-file)
After: bind9.service (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: exim4.service (destination-file)
ReferencedBy: bind9.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: 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
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: proc-sys-fs-binfmt_misc.automount
Invocation ID: e4541bf4d6114c7e990fce8e6487b8a4
Documentation: https://www.kernel.org/doc/html/latest/admin-guide/binfmt-misc.html
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/proc-sys-fs-binfmt_misc.automount
ConditionPathIsReadWrite: /proc/sys untested
ConditionPathExists: /proc/sys/fs/binfmt_misc untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: -.mount (origin-implicit origin-path)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
Before: proc-sys-fs-binfmt_misc.mount (origin-implicit)
Before: systemd-binfmt.service (destination-file)
After: -.mount (origin-implicit origin-path)
Triggers: proc-sys-fs-binfmt_misc.mount (origin-implicit)
References: proc-sys-fs-binfmt_misc.mount (origin-implicit)
References: sysinit.target (origin-file)
References: -.mount (origin-implicit origin-path)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: systemd-binfmt.service (destination-file)
RequiresMountsFor: /proc/sys/fs (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Automount State: waiting
Result: success
Where: /proc/sys/fs/binfmt_misc
DirectoryMode: 0755
TimeoutIdleUSec: 0
-> Unit system.slice:
Description: System Slice
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: yes
Garbage Collection Mode: inactive
Slice: -.slice
CGroup: /system.slice
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup enabled mask: memory pids
CGroup own mask: memory pids
CGroup members mask: memory devices pids bpf-firewall bpf-devices
Name: system.slice
Documentation: man:systemd.special(7)
Requires: -.slice (origin-implicit)
RequiredBy: systemd-journald.socket (destination-file)
RequiredBy: systemd-tmpfiles-setup-dev.service (destination-file)
RequiredBy: blk-availability.service (destination-file)
RequiredBy: ifupdown-pre.service (destination-file)
RequiredBy: dm-event.socket (destination-file)
RequiredBy: systemd-ask-password-console.service (destination-file)
RequiredBy: systemd-user-sessions.service (destination-file)
RequiredBy: systemd-ask-password-plymouth.service (destination-file)
RequiredBy: xrdp-sesman.service (destination-file)
RequiredBy: virtlogd.service (destination-file)
RequiredBy: systemd-timesyncd.service (destination-file)
RequiredBy: keyboard-setup.service (destination-file)
RequiredBy: systemd-random-seed.service (destination-file)
RequiredBy: run-user-0.mount (destination-file)
RequiredBy: drbd.service (destination-file)
RequiredBy: systemd-update-utmp-runlevel.service (destination-file)
RequiredBy: systemd-journal-flush.service (destination-file)
RequiredBy: ifup at enp0s25.service (destination-file)
RequiredBy: lvm2-lvmpolld.service (destination-file)
RequiredBy: systemd-fsck-root.service (destination-file)
RequiredBy: logd.service (destination-file)
RequiredBy: boot.mount (destination-file)
RequiredBy: systemd-machine-id-commit.service (destination-file)
RequiredBy: systemd-journald-audit.socket (destination-file)
RequiredBy: cron.service (destination-file)
RequiredBy: zabbix-agent2.service (destination-file)
RequiredBy: apparmor.service (destination-file)
RequiredBy: -.mount (destination-file)
RequiredBy: syslog.socket (destination-file)
RequiredBy: system-getty.slice (destination-implicit)
RequiredBy: isc-dhcp-server.service (destination-file)
RequiredBy: exim4.service (destination-file)
RequiredBy: apt-daily-upgrade.service (destination-file)
RequiredBy: uuidd.service (destination-file)
RequiredBy: systemd-fsckd.socket (destination-file)
RequiredBy: sys-fs-fuse-connections.mount (destination-file)
RequiredBy: apt-daily.service (destination-file)
RequiredBy: systemd-fsckd.service (destination-file)
RequiredBy: systemd-ask-password-wall.service (destination-file)
RequiredBy: systemd-initctl.socket (destination-file)
RequiredBy: system-systemd\x2dfsck.slice (destination-implicit)
RequiredBy: dbus.socket (destination-file)
RequiredBy: getty-static.service (destination-file)
RequiredBy: uuidd.socket (destination-file)
RequiredBy: systemd-rfkill.service (destination-file)
RequiredBy: plymouth-read-write.service (destination-file)
RequiredBy: systemd-modules-load.service (destination-file)
RequiredBy: auditd.service (destination-file)
RequiredBy: logrotate.service (destination-file)
RequiredBy: systemd-tmpfiles-setup.service (destination-file)
RequiredBy: systemd-sysusers.service (destination-file)
RequiredBy: systemd-quotacheck.service (destination-file)
RequiredBy: networking.service (destination-file)
RequiredBy: emergency.service (destination-file)
RequiredBy: sys-kernel-debug.mount (destination-file)
RequiredBy: rescue.service (destination-file)
RequiredBy: dm-event.service (destination-file)
RequiredBy: console-setup.service (destination-file)
RequiredBy: heartbeat.service (destination-file)
RequiredBy: dbus.service (destination-file)
RequiredBy: system-serial\x2dgetty.slice (destination-implicit)
RequiredBy: systemd-udevd-control.socket (destination-file)
RequiredBy: proc-sys-fs-binfmt_misc.mount (destination-file)
RequiredBy: pacemaker.service (destination-file)
RequiredBy: virtlockd.socket (destination-file)
RequiredBy: lvm2-monitor.service (destination-file)
RequiredBy: systemd-logind.service (destination-file)
RequiredBy: systemd-udevd.service (destination-file)
RequiredBy: man-db.service (destination-file)
RequiredBy: libvirt-guests.service (destination-file)
RequiredBy: unattended-upgrades.service (destination-file)
RequiredBy: lightdm.service (destination-file)
RequiredBy: libvirtd.service (destination-file)
RequiredBy: plymouth-start.service (destination-file)
RequiredBy: virtlogd-admin.socket (destination-file)
RequiredBy: systemd-remount-fs.service (destination-file)
RequiredBy: systemd-rfkill.socket (destination-file)
RequiredBy: etc-setserial.service (destination-file)
RequiredBy: systemd-journald.service (destination-file)
RequiredBy: sys-kernel-config.mount (destination-file)
RequiredBy: systemd-udevd-kernel.socket (destination-file)
RequiredBy: virtlockd-admin.socket (destination-file)
RequiredBy: bind9.service (destination-file)
RequiredBy: rc-local.service (destination-file)
RequiredBy: systemd-update-utmp.service (destination-file)
RequiredBy: systemd-journald-dev-log.socket (destination-file)
RequiredBy: virtlockd.service (destination-file)
RequiredBy: corosync.service (destination-file)
RequiredBy: systemd-initctl.service (destination-file)
RequiredBy: lvm2-lvmpolld.socket (destination-file)
RequiredBy: setserial.service (destination-file)
RequiredBy: systemd-binfmt.service (destination-file)
RequiredBy: plymouth-quit.service (destination-file)
RequiredBy: ssh.service (destination-file)
RequiredBy: rsyslog.service (destination-file)
RequiredBy: mdmonitor.service (destination-file)
RequiredBy: kmod-static-nodes.service (destination-file)
RequiredBy: dev-hugepages.mount (destination-file)
RequiredBy: systemd-hwdb-update.service (destination-file)
RequiredBy: systemd-udev-trigger.service (destination-file)
RequiredBy: systemd-sysctl.service (destination-file)
RequiredBy: plymouth-quit-wait.service (destination-file)
RequiredBy: fail2ban.service (destination-file)
RequiredBy: systemd-networkd.service (destination-file)
RequiredBy: dev-mqueue.mount (destination-file)
RequiredBy: rsync.service (destination-file)
RequiredBy: xrdp.service (destination-file)
RequiredBy: udisks2.service (destination-file)
RequiredBy: systemd-tmpfiles-clean.service (destination-file)
RequiredBy: selinux-autorelabel-mark.service (destination-file)
RequiredBy: virtlogd.socket (destination-file)
WantedBy: slices.target (destination-file)
Before: systemd-machine-id-commit.service (destination-file)
Before: unattended-upgrades.service (destination-file)
Before: systemd-tmpfiles-clean.service (destination-file)
Before: system-systemd\x2dfsck.slice (destination-implicit)
Before: fail2ban.service (destination-file)
Before: mdmonitor.service (destination-file)
Before: systemd-update-utmp-runlevel.service (destination-file)
Before: ssh.service (destination-file)
Before: system-getty.slice (destination-implicit)
Before: auditd.service (destination-file)
Before: systemd-udevd-control.socket (destination-file)
Before: boot.mount (destination-file)
Before: sys-fs-fuse-connections.mount (destination-file)
Before: systemd-initctl.socket (destination-file)
Before: dm-event.service (destination-file)
Before: run-user-0.mount (destination-file)
Before: systemd-sysusers.service (destination-file)
Before: xrdp-sesman.service (destination-file)
Before: systemd-journald-audit.socket (destination-file)
Before: dev-hugepages.mount (destination-file)
Before: systemd-ask-password-wall.service (destination-file)
Before: virtlockd-admin.socket (destination-file)
Before: kmod-static-nodes.service (destination-file)
Before: networking.service (destination-file)
Before: systemd-initctl.service (destination-file)
Before: rescue.service (destination-file)
Before: systemd-tmpfiles-setup.service (destination-file)
Before: syslog.socket (destination-file)
Before: ifup at enp0s25.service (destination-file)
Before: proc-sys-fs-binfmt_misc.mount (destination-file)
Before: rsyslog.service (destination-file)
Before: systemd-quotacheck.service (destination-file)
Before: systemd-rfkill.socket (destination-file)
Before: dm-event.socket (destination-file)
Before: systemd-sysctl.service (destination-file)
Before: rc-local.service (destination-file)
Before: setserial.service (destination-file)
Before: systemd-journald.service (destination-file)
Before: ifupdown-pre.service (destination-file)
Before: virtlockd.socket (destination-file)
Before: systemd-ask-password-console.service (destination-file)
Before: systemd-fsck-root.service (destination-file)
Before: systemd-udevd-kernel.socket (destination-file)
Before: etc-setserial.service (destination-file)
Before: plymouth-quit-wait.service (destination-file)
Before: systemd-logind.service (destination-file)
Before: corosync.service (destination-file)
Before: systemd-random-seed.service (destination-file)
Before: sys-kernel-config.mount (destination-file)
Before: virtlogd-admin.socket (destination-file)
Before: systemd-udevd.service (destination-file)
Before: virtlockd.service (destination-file)
Before: systemd-binfmt.service (destination-file)
Before: systemd-tmpfiles-setup-dev.service (destination-file)
Before: xrdp.service (destination-file)
Before: systemd-remount-fs.service (destination-file)
Before: systemd-update-utmp.service (destination-file)
Before: logrotate.service (destination-file)
Before: man-db.service (destination-file)
Before: systemd-udev-trigger.service (destination-file)
Before: virtlogd.service (destination-file)
Before: systemd-journal-flush.service (destination-file)
Before: sys-kernel-debug.mount (destination-file)
Before: dbus.socket (destination-file)
Before: selinux-autorelabel-mark.service (destination-file)
Before: exim4.service (destination-file)
Before: libvirt-guests.service (destination-file)
Before: systemd-journald.socket (destination-file)
Before: heartbeat.service (destination-file)
Before: apparmor.service (destination-file)
Before: lvm2-monitor.service (destination-file)
Before: virtlogd.socket (destination-file)
Before: uuidd.socket (destination-file)
Before: systemd-timesyncd.service (destination-file)
Before: systemd-user-sessions.service (destination-file)
Before: -.mount (destination-file)
Before: plymouth-read-write.service (destination-file)
Before: getty-static.service (destination-file)
Before: systemd-fsckd.socket (destination-file)
Before: keyboard-setup.service (destination-file)
Before: cron.service (destination-file)
Before: console-setup.service (destination-file)
Before: logd.service (destination-file)
Before: system-serial\x2dgetty.slice (destination-implicit)
Before: zabbix-agent2.service (destination-file)
Before: systemd-ask-password-plymouth.service (destination-file)
Before: blk-availability.service (destination-file)
Before: uuidd.service (destination-file)
Before: plymouth-start.service (destination-file)
Before: pacemaker.service (destination-file)
Before: systemd-modules-load.service (destination-file)
Before: isc-dhcp-server.service (destination-file)
Before: apt-daily.service (destination-file)
Before: udisks2.service (destination-file)
Before: lvm2-lvmpolld.service (destination-file)
Before: systemd-rfkill.service (destination-file)
Before: systemd-hwdb-update.service (destination-file)
Before: drbd.service (destination-file)
Before: dev-mqueue.mount (destination-file)
Before: systemd-networkd.service (destination-file)
Before: lightdm.service (destination-file)
Before: systemd-journald-dev-log.socket (destination-file)
Before: apt-daily-upgrade.service (destination-file)
Before: plymouth-quit.service (destination-file)
Before: lvm2-lvmpolld.socket (destination-file)
Before: bind9.service (destination-file)
Before: emergency.service (destination-file)
Before: dbus.service (destination-file)
Before: systemd-fsckd.service (destination-file)
Before: libvirtd.service (destination-file)
Before: slices.target (destination-file)
Before: rsync.service (destination-file)
After: -.slice (origin-implicit)
References: -.slice (origin-implicit)
ReferencedBy: etc-setserial.service (destination-file)
ReferencedBy: virtlockd.service (destination-file)
ReferencedBy: system-getty.slice (destination-implicit)
ReferencedBy: uuidd.socket (destination-file)
ReferencedBy: virtlogd.service (destination-file)
ReferencedBy: systemd-journald.service (destination-file)
ReferencedBy: rescue.service (destination-file)
ReferencedBy: kmod-static-nodes.service (destination-file)
ReferencedBy: systemd-ask-password-console.service (destination-file)
ReferencedBy: selinux-autorelabel-mark.service (destination-file)
ReferencedBy: system-systemd\x2dfsck.slice (destination-implicit)
ReferencedBy: auditd.service (destination-file)
ReferencedBy: sys-kernel-debug.mount (destination-file)
ReferencedBy: systemd-modules-load.service (destination-file)
ReferencedBy: apparmor.service (destination-file)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file)
ReferencedBy: systemd-ask-password-plymouth.service (destination-file)
ReferencedBy: systemd-sysusers.service (destination-file)
ReferencedBy: systemd-fsckd.service (destination-file)
ReferencedBy: systemd-initctl.service (destination-file)
ReferencedBy: apt-daily-upgrade.service (destination-file)
ReferencedBy: plymouth-start.service (destination-file)
ReferencedBy: getty-static.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: dev-mqueue.mount (destination-file)
ReferencedBy: logd.service (destination-file)
ReferencedBy: run-user-0.mount (destination-file)
ReferencedBy: plymouth-quit.service (destination-file)
ReferencedBy: libvirt-guests.service (destination-file)
ReferencedBy: systemd-rfkill.service (destination-file)
ReferencedBy: apt-daily.service (destination-file)
ReferencedBy: drbd.service (destination-file)
ReferencedBy: lightdm.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
ReferencedBy: bind9.service (destination-file)
ReferencedBy: systemd-udevd-kernel.socket (destination-file)
ReferencedBy: systemd-journald.socket (destination-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: cron.service (destination-file)
ReferencedBy: udisks2.service (destination-file)
ReferencedBy: systemd-rfkill.socket (destination-file)
ReferencedBy: fail2ban.service (destination-file)
ReferencedBy: xrdp.service (destination-file)
ReferencedBy: systemd-udev-trigger.service (destination-file)
ReferencedBy: plymouth-quit-wait.service (destination-file)
ReferencedBy: zabbix-agent2.service (destination-file)
ReferencedBy: keyboard-setup.service (destination-file)
ReferencedBy: lvm2-lvmpolld.socket (destination-file)
ReferencedBy: virtlockd-admin.socket (destination-file)
ReferencedBy: dm-event.socket (destination-file)
ReferencedBy: console-setup.service (destination-file)
ReferencedBy: setserial.service (destination-file)
ReferencedBy: rsync.service (destination-file)
ReferencedBy: dm-event.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: ssh.service (destination-file)
ReferencedBy: logrotate.service (destination-file)
ReferencedBy: emergency.service (destination-file)
ReferencedBy: rc-local.service (destination-file)
ReferencedBy: proc-sys-fs-binfmt_misc.mount (destination-file)
ReferencedBy: man-db.service (destination-file)
ReferencedBy: unattended-upgrades.service (destination-file)
ReferencedBy: pacemaker.service (destination-file)
ReferencedBy: systemd-ask-password-wall.service (destination-file)
ReferencedBy: systemd-journald-dev-log.socket (destination-file)
ReferencedBy: systemd-update-utmp.service (destination-file)
ReferencedBy: uuidd.service (destination-file)
ReferencedBy: systemd-tmpfiles-setup.service (destination-file)
ReferencedBy: lvm2-monitor.service (destination-file)
ReferencedBy: heartbeat.service (destination-file)
ReferencedBy: plymouth-read-write.service (destination-file)
ReferencedBy: virtlockd.socket (destination-file)
ReferencedBy: -.mount (destination-file)
ReferencedBy: ifupdown-pre.service (destination-file)
ReferencedBy: virtlogd.socket (destination-file)
ReferencedBy: sys-fs-fuse-connections.mount (destination-file)
ReferencedBy: systemd-journal-flush.service (destination-file)
ReferencedBy: dbus.socket (destination-file)
ReferencedBy: systemd-random-seed.service (destination-file)
ReferencedBy: systemd-sysctl.service (destination-file)
ReferencedBy: exim4.service (destination-file)
ReferencedBy: systemd-logind.service (destination-file)
ReferencedBy: systemd-user-sessions.service (destination-file)
ReferencedBy: lvm2-lvmpolld.service (destination-file)
ReferencedBy: systemd-hwdb-update.service (destination-file)
ReferencedBy: systemd-quotacheck.service (destination-file)
ReferencedBy: virtlogd-admin.socket (destination-file)
ReferencedBy: dev-hugepages.mount (destination-file)
ReferencedBy: systemd-binfmt.service (destination-file)
ReferencedBy: systemd-fsckd.socket (destination-file)
ReferencedBy: xrdp-sesman.service (destination-file)
ReferencedBy: systemd-udevd.service (destination-file)
ReferencedBy: systemd-fsck-root.service (destination-file)
ReferencedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: syslog.socket (destination-file)
ReferencedBy: systemd-udevd-control.socket (destination-file)
ReferencedBy: sys-kernel-config.mount (destination-file)
ReferencedBy: rsyslog.service (destination-file)
ReferencedBy: systemd-remount-fs.service (destination-file)
ReferencedBy: systemd-machine-id-commit.service (destination-file)
ReferencedBy: mdmonitor.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-file)
ReferencedBy: corosync.service (destination-file)
ReferencedBy: dbus.service (destination-file)
ReferencedBy: slices.target (destination-file)
ReferencedBy: boot.mount (destination-file)
ReferencedBy: systemd-journald-audit.socket (destination-file)
ReferencedBy: system-serial\x2dgetty.slice (destination-implicit)
ReferencedBy: systemd-initctl.socket (destination-file)
ReferencedBy: systemd-tmpfiles-clean.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Slice State: active
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
-> Unit paths.target:
Description: Paths
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: paths.target
Invocation ID: e884daa7f6984f1ea732dfeaef79f3cc
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/paths.target
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
WantedBy: basic.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: basic.target (destination-file destination-default)
Before: shutdown.target (origin-default)
After: systemd-ask-password-console.path (destination-file)
After: systemd-ask-password-wall.path (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: basic.target (destination-file destination-default)
ReferencedBy: systemd-ask-password-console.path (destination-file)
ReferencedBy: systemd-ask-password-wall.path (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit logrotate.timer:
Description: Daily rotation of log files
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:59 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: logrotate.timer
Invocation ID: 266b353397124845ab3259af46e54d30
Documentation: man:logrotate(8)
Documentation: man:logrotate.conf(5)
Fragment Path: /lib/systemd/system/logrotate.timer
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
WantedBy: timers.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: logrotate.service (origin-implicit)
Before: timers.target (origin-default)
Before: shutdown.target (origin-default)
After: time-sync.target (origin-default)
After: -.mount (origin-file origin-path)
After: sysinit.target (origin-default)
Triggers: logrotate.service (origin-implicit)
References: sysinit.target (origin-default)
References: timers.target (origin-default)
References: time-sync.target (origin-default)
References: shutdown.target (origin-default)
References: -.mount (origin-file origin-path)
References: logrotate.service (origin-implicit)
ReferencedBy: timers.target (destination-file)
RequiresMountsFor: /var/lib/systemd/timers (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Timer State: waiting
Result: success
Unit: logrotate.service
Persistent: yes
WakeSystem: no
Accuracy: 12h
RemainAfterElapse: yes
OnCalendar: *-*-* 00:00:00
-> Unit pacemaker.service:
Description: Pacemaker High Availability Cluster Manager
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: pacemaker.service
Documentation: man:pacemakerd
Documentation: https://clusterlabs.org/pacemaker/doc/en-US/Pacemaker/2.0/html-single/Pacemaker_Explained/index.html
Fragment Path: /lib/systemd/system/pacemaker.service
Requires: sysinit.target (origin-default)
Requires: corosync.service (origin-file)
Requires: system.slice (origin-file)
Wants: dbus.service (origin-file)
Wants: resource-agents-deps.target (origin-file)
ConsistsOf: logd.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: sysinit.target (origin-default)
After: rsyslog.service (origin-file)
After: network.target (origin-file)
After: system.slice (origin-file)
After: logd.service (destination-file)
After: basic.target (origin-default)
After: resource-agents-deps.target (origin-file)
After: systemd-journald.socket (origin-file)
After: corosync.service (origin-file)
After: time-sync.target (origin-file)
After: dbus.service (origin-file)
References: shutdown.target (origin-default)
References: resource-agents-deps.target (origin-file)
References: corosync.service (origin-file)
References: rsyslog.service (origin-file)
References: dbus.service (origin-file)
References: time-sync.target (origin-file)
References: network.target (origin-file)
References: systemd-journald.socket (origin-file)
References: basic.target (origin-default)
References: sysinit.target (origin-default)
References: system.slice (origin-file)
ReferencedBy: logd.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: on-failure
NotifyAccess: main
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min
TimeoutStopSec: 30min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: no
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/pacemaker
EnvironmentFile: -/etc/default/sbd
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: null
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/pacemakerd -f
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
-> Unit sys-devices-virtual-misc-rfkill.device:
Description: /sys/devices/virtual/misc/rfkill
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-misc-rfkill.device
Invocation ID: f209b9ee95c84829bd8184f06b042a06
Following Set Member: dev-rfkill.device
Wants: systemd-rfkill.socket (origin-udev)
BoundBy: systemd-rfkill.service (destination-file)
BoundBy: systemd-rfkill.socket (destination-file)
Before: systemd-rfkill.service (destination-file)
Before: systemd-rfkill.socket (destination-file)
References: systemd-rfkill.socket (origin-udev)
ReferencedBy: systemd-rfkill.service (destination-file)
ReferencedBy: systemd-rfkill.socket (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/misc/rfkill
Found: found-udev
udev SYSTEMD_WANTS: systemd-rfkill.socket
-> Unit dm-event.socket:
Description: Device-mapper event daemon FIFOs
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/dm-event.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: dm-event.socket
Invocation ID: e0fceb7f208c4dfcada62e4dd27134cb
Documentation: man:dmeventd(8)
Fragment Path: /lib/systemd/system/dm-event.socket
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequiredBy: dm-event.service (destination-file)
RequiredBy: lvm2-monitor.service (destination-file)
WantedBy: sockets.target (destination-file)
Before: dm-event.service (origin-implicit destination-file)
Before: lvm2-monitor.service (destination-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: dm-event.service (origin-implicit)
References: -.mount (origin-file origin-path)
References: dm-event.service (origin-implicit)
References: system.slice (origin-file)
ReferencedBy: dm-event.service (destination-file)
ReferencedBy: lvm2-monitor.service (destination-file)
ReferencedBy: sockets.target (destination-file)
RequiresMountsFor: /run/dmeventd-server (origin-file)
RequiresMountsFor: /run/dmeventd-client (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: yes
Writable: no
FileDescriptorName: dm-event.socket
SELinuxContextFromNet: no
ListenFIFO: /run/dmeventd-server
ListenFIFO: /run/dmeventd-client
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit cron.service:
Description: Regular background program processing daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/cron.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: cron.service
Invocation ID: a96357dc5059445a9b0931d17d244d5e
Documentation: man:cron(8)
Fragment Path: /lib/systemd/system/cron.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: system.slice (origin-file)
After: remote-fs.target (origin-file)
After: systemd-journald.socket (origin-file)
After: sysinit.target (origin-default)
After: basic.target (origin-default)
After: nss-user-lookup.target (origin-file)
References: nss-user-lookup.target (origin-file)
References: shutdown.target (origin-default)
References: remote-fs.target (origin-file)
References: basic.target (origin-default)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: sysinit.target (origin-default)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: on-failure
NotifyAccess: none
NotifyState: unknown
Main PID: 577
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/cron
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/cron -f $EXTRA_OPTS
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-sda3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sda3.device
Invocation ID: 4703807791114f5f9f6b2c335a886830
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d03.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
Found: found-udev
-> Unit lvm2-lvmpolld.service:
Description: LVM2 poll daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: lvm2-lvmpolld.service
Documentation: man:lvmpolld(8)
Fragment Path: /lib/systemd/system/lvm2-lvmpolld.service
Requires: system.slice (origin-file)
Requires: lvm2-lvmpolld.socket (origin-file)
Conflicts: shutdown.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: lvm2-lvmpolld.socket (origin-file destination-implicit)
TriggeredBy: lvm2-lvmpolld.socket (destination-implicit)
References: shutdown.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: lvm2-lvmpolld.socket (origin-file)
ReferencedBy: lvm2-lvmpolld.socket (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
PIDFile: /run/lvmpolld.pid
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: yes
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
Environment: SD_ACTIVATION=1
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /sbin/lvmpolld -t 60 -f
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device
Invocation ID: 6b326a3a6a4c48048a0b173a87e61b1d
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device
Following Set Member: dev-sda1.device
Following Set Member: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d01.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
Found: found-udev
-> Unit sys-subsystem-net-devices-br1.device:
Description: /sys/subsystem/net/devices/br1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-subsystem-net-devices-br1.device
Invocation ID: e020c697732a49ba86b0e7e9cf157bed
Following Set Member: sys-devices-virtual-net-br1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/br1
Found: found-udev
-> Unit resource-agents-deps.target:
Description: resource-agents dependencies
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: resource-agents-deps.target
Fragment Path: /lib/systemd/system/resource-agents-deps.target
WantedBy: pacemaker.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: pacemaker.service (destination-file)
Before: shutdown.target (origin-default)
References: shutdown.target (origin-default)
ReferencedBy: pacemaker.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit virtlogd-admin.socket:
Description: Virtual machine log manager socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/virtlogd-admin.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: virtlogd-admin.socket
Invocation ID: f6fb8f39018442da950e821acc70c457
Fragment Path: /lib/systemd/system/virtlogd-admin.socket
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
Requires: system.slice (origin-file)
RequiredBy: virtlogd.service (destination-file)
WantedBy: sockets.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: libvirtd.service (origin-file)
Before: virtlogd.service (origin-implicit)
Before: sockets.target (origin-default destination-default)
After: sysinit.target (origin-default)
After: -.mount (origin-file origin-path)
After: system.slice (origin-file)
Triggers: virtlogd.service (origin-implicit)
References: system.slice (origin-file)
References: sysinit.target (origin-default)
References: -.mount (origin-file origin-path)
References: libvirtd.service (origin-file)
References: virtlogd.service (origin-implicit)
References: sockets.target (origin-default)
References: shutdown.target (origin-default)
ReferencedBy: virtlogd.service (destination-file)
ReferencedBy: sockets.target (destination-file destination-default)
RequiresMountsFor: /var/run/libvirt/virtlogd-admin-sock (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: virtlogd-admin.socket
SELinuxContextFromNet: no
ListenStream: /var/run/libvirt/virtlogd-admin-sock
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit getty at tty1.service:
Description: Getty on tty1
Instance: tty1
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:45 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:45 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:45 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system-getty.slice
CGroup: /system.slice/system-getty.slice/getty at tty1.service
CGroup realized: yes
CGroup realized mask: memory pids
CGroup own mask: memory pids
Name: getty at tty1.service
Invocation ID: f16f83433b8e40b8a83dfb1ab98355b7
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 untested
Condition Timestamp: Wed 2020-12-16 19:59:45 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:45 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system-getty.slice (origin-file)
WantedBy: getty.target (destination-file)
Conflicts: shutdown.target (origin-default)
Conflicts: rescue.service (origin-file)
Before: getty.target (origin-file destination-default)
Before: rescue.service (origin-file)
Before: shutdown.target (origin-default)
After: getty-pre.target (origin-file)
After: system-getty.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-user-sessions.service (origin-file)
After: basic.target (origin-default)
After: rc-local.service (origin-file)
After: sysinit.target (origin-default)
After: plymouth-quit-wait.service (origin-file)
References: rescue.service (origin-file)
References: rc-local.service (origin-file)
References: shutdown.target (origin-default)
References: systemd-user-sessions.service (origin-file)
References: system-getty.slice (origin-file)
References: getty.target (origin-file)
References: sysinit.target (origin-default)
References: plymouth-quit-wait.service (origin-file)
References: getty-pre.target (origin-file)
References: systemd-journald.socket (origin-file)
References: basic.target (origin-default)
ReferencedBy: getty.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: idle
Restart: always
NotifyAccess: none
NotifyState: unknown
Main PID: 1149
Main PID Known: yes
Main PID Alien: no
RestartSec: 0
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
UnsetEnvironment: LANG
UnsetEnvironment: LANGUAGE
UnsetEnvironment: LC_CTYPE
UnsetEnvironment: LC_NUMERIC
UnsetEnvironment: LC_TIME
UnsetEnvironment: LC_COLLATE
UnsetEnvironment: LC_MONETARY
UnsetEnvironment: LC_MESSAGES
UnsetEnvironment: LC_PAPER
UnsetEnvironment: LC_NAME
UnsetEnvironment: LC_ADDRESS
UnsetEnvironment: LC_TELEPHONE
UnsetEnvironment: LC_MEASUREMENT
UnsetEnvironment: LC_IDENTIFICATION
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
TTYPath: /dev/tty1
TTYReset: yes
TTYVHangup: yes
TTYVTDisallocate: yes
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
UtmpIdentifier: tty1
LockPersonality: no
-> ExecStart:
Command Line: /sbin/agetty -o '-p -- \u' --noclear tty1 $TERM
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-md\x2dname\x2de1:md1.device:
Description: /dev/disk/by-id/md-name-e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-md\x2dname\x2de1:md1.device
Invocation ID: 88ae106f58294c1890d5646ca660fd16
Following: sys-devices-virtual-block-md1.device
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2da3345aa3:3cdb29e4:80818cb1:b2a5d670.device
Following Set Member: dev-md1.device
Following Set Member: sys-devices-virtual-block-md1.device
Following Set Member: dev-md-e1:1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md1
Found: found-udev
-> Unit mdmonitor.service:
Description: MD array monitor
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/mdmonitor.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: mdmonitor.service
Invocation ID: 101e2d5159534fae888c7ddde27814c5
Fragment Path: /lib/systemd/system/mdmonitor.service
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sys-devices-virtual-block-md1.device (destination-udev)
WantedBy: sys-devices-virtual-block-md0.device (destination-udev)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
ReferencedBy: sys-devices-virtual-block-md1.device (destination-udev)
ReferencedBy: sys-devices-virtual-block-md0.device (destination-udev)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 450
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /sbin/mdadm --monitor --scan
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1.device
Invocation ID: 4f7191b831274d41bc3ed6da056d8470
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190.device
Following Set Member: dev-sda.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
Found: found-udev
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
Invocation ID: 79c84543e6c04311abad02edffb27740
Following Set Member: dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device
Following Set Member: dev-sdb1.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
Found: found-udev
-> Unit zabbix-agent2.service:
Description: Zabbix Agent 2
Instance: n/a
Unit Load State: loaded
Unit Active State: activating
State Change Timestamp: Wed 2020-12-16 20:48:22 CET
Inactive Exit Timestamp: Wed 2020-12-16 20:48:22 CET
Active Enter Timestamp: Wed 2020-12-16 20:48:22 CET
Active Exit Timestamp: Wed 2020-12-16 20:48:22 CET
Inactive Enter Timestamp: Wed 2020-12-16 20:48:22 CET
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: zabbix-agent2.service
Invocation ID: fbade19935344632abb9c56b4a7af35d
Fragment Path: /lib/systemd/system/zabbix-agent2.service
Condition Timestamp: Wed 2020-12-16 20:48:22 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 20:48:22 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: network.target (origin-file)
After: syslog.target (origin-file)
After: sysinit.target (origin-default)
After: basic.target (origin-default)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: systemd-journald.socket (origin-file)
References: network.target (origin-file)
References: syslog.target (origin-file)
References: basic.target (origin-default)
References: system.slice (origin-file)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: auto-restart
Result: exit-code
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: on-failure
NotifyAccess: none
NotifyState: unknown
PIDFile: /run/zabbix/zabbix_agent2.pid
RestartSec: 10s
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
Environment: CONFFILE=/etc/zabbix/zabbix_agent2.conf
EnvironmentFile: -/etc/default/zabbix-agent2
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: zabbix
Group: zabbix
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/zabbix_agent2 -c $CONFFILE
PID: 3795
Start Timestamp: Wed 2020-12-16 20:48:22 CET
Exit Timestamp: Wed 2020-12-16 20:48:22 CET
Exit Code: exited
Exit Status: 1
-> ExecStop:
Command Line: /bin/kill -SIGTERM $MAINPID
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit ipset.service:
Description: ipset.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: ipset.service
Before: fail2ban.service (destination-file)
ReferencedBy: fail2ban.service (destination-file)
-> Unit virtlockd-admin.socket:
Description: Virtual machine lock manager admin socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/virtlockd-admin.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: virtlockd-admin.socket
Invocation ID: aaf4917111f14314b96ec98067e40aaf
Fragment Path: /lib/systemd/system/virtlockd-admin.socket
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
Requires: system.slice (origin-file)
RequiredBy: virtlockd.service (destination-file)
WantedBy: sockets.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: virtlockd.service (origin-implicit)
Before: shutdown.target (origin-default)
Before: libvirtd.service (origin-file)
Before: sockets.target (origin-default destination-default)
After: system.slice (origin-file)
After: sysinit.target (origin-default)
After: -.mount (origin-file origin-path)
Triggers: virtlockd.service (origin-implicit)
References: libvirtd.service (origin-file)
References: sysinit.target (origin-default)
References: virtlockd.service (origin-implicit)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: sockets.target (origin-default)
References: -.mount (origin-file origin-path)
ReferencedBy: virtlockd.service (destination-file)
ReferencedBy: sockets.target (destination-file destination-default)
RequiresMountsFor: /var/run/libvirt/virtlockd-admin-sock (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: virtlockd-admin.socket
SELinuxContextFromNet: no
ListenStream: /var/run/libvirt/virtlockd-admin-sock
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit plymouth-read-write.service:
Description: Tell Plymouth To Write Out Runtime Data
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2020-12-16 19:59:29 CET
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: plymouth-read-write.service
Invocation ID: dacf5e84f8af40cda7a1cc6aa4ed9cbe
Fragment Path: /lib/systemd/system/plymouth-read-write.service
ConditionPathExists: !/etc/initrd-release untested
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
After: systemd-journald.socket (origin-file)
After: local-fs.target (origin-file)
After: system.slice (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: local-fs.target (origin-file)
References: sysinit.target (origin-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/plymouth update-root-fs --read-write
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-udevd-control.socket:
Description: udev Control Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-udevd-control.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-udevd-control.socket
Invocation ID: 4758e618d39f497abe5d993486f1706b
Documentation: man:systemd-udevd.service(8)
Documentation: man:udev(7)
Fragment Path: /lib/systemd/system/systemd-udevd-control.socket
ConditionPathIsReadWrite: /sys untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
WantedBy: systemd-udevd.service (destination-file)
WantedBy: sockets.target (destination-file)
Before: systemd-udev-trigger.service (destination-file)
Before: sockets.target (origin-file)
Before: systemd-udevd.service (origin-implicit destination-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-udevd.service (origin-implicit destination-file)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
References: sockets.target (origin-file)
References: systemd-udevd.service (origin-implicit)
ReferencedBy: sockets.target (destination-file)
ReferencedBy: systemd-udev-trigger.service (destination-file)
ReferencedBy: systemd-udevd.service (destination-file)
RequiresMountsFor: /run/udev/control (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: yes
Writable: no
FileDescriptorName: systemd-udevd-control.socket
SELinuxContextFromNet: no
ListenSequentialPacket: /run/udev/control
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2dpartuuid-4de1036d\x2d01.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpartuuid-4de1036d\x2d01.device
Invocation ID: 3af25bb8e6f145c695e7da253a6c8a13
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device
Following Set Member: dev-sda1.device
Following Set Member: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
Found: found-udev
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart2.device
Invocation ID: 2d361d1f2b8f4722b99dfb3ebd58f1e4
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart2.device
Following Set Member: dev-sda2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart2.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d02.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
Found: found-udev
-> Unit rbdmap.service:
Description: rbdmap.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: rbdmap.service
Before: blk-availability.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
-> Unit dev-disk-by\x2dpartuuid-b3257d2e\x2d02.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpartuuid-b3257d2e\x2d02.device
Invocation ID: d647ce5b6e684fec816a1ffeace280f4
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
Following Set Member: dev-sdb2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb2
Found: found-udev
-> Unit sys-devices-virtual-block-md0.device:
Description: /sys/devices/virtual/block/md0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-block-md0.device
Invocation ID: fc81508586554df3939473d6f10fcc40
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2ddad7fdda:6e09b338:4f191946:ff6f2211.device
Following Set Member: dev-disk-by\x2duuid-d7feb5a7\x2dbf6f\x2d4dd1\x2d9c1a\x2deaf043afbaf4.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:0.device
Following Set Member: dev-md0.device
Following Set Member: dev-md-0.device
Wants: mdmonitor.service (origin-udev)
References: mdmonitor.service (origin-udev)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md0
Found: found-udev
udev SYSTEMD_WANTS: mdmonitor.service
-> Unit -.mount:
Description: Root Mount
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: yes
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/-.mount
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: -.mount
Documentation: man:fstab(5)
Documentation: man:systemd-fstab-generator(8)
Fragment Path: /run/systemd/generator/-.mount
Source Path: /etc/fstab
Requires: system.slice (origin-file)
RequiredBy: systemd-fsckd.socket (destination-file destination-path)
RequiredBy: systemd-update-utmp.service (destination-file destination-path)
RequiredBy: xrdp-sesman.service (destination-file destination-path)
RequiredBy: basic.target (destination-file destination-path)
RequiredBy: systemd-rfkill.service (destination-file destination-path)
RequiredBy: systemd-udevd-control.socket (destination-file destination-path)
RequiredBy: xrdp.service (destination-file destination-path)
RequiredBy: systemd-random-seed.service (destination-file destination-path)
RequiredBy: dev-mqueue.mount (destination-implicit destination-path)
RequiredBy: boot.mount (destination-file destination-implicit destination-path)
RequiredBy: virtlockd-admin.socket (destination-file destination-path)
RequiredBy: systemd-networkd.service (destination-file destination-path)
RequiredBy: local-fs.target (destination-file)
RequiredBy: dev-hugepages.mount (destination-implicit destination-path)
RequiredBy: logrotate.timer (destination-file destination-path)
RequiredBy: syslog.socket (destination-file destination-path)
RequiredBy: systemd-initctl.socket (destination-file destination-path)
RequiredBy: sys-fs-fuse-connections.mount (destination-implicit destination-path)
RequiredBy: systemd-journald-dev-log.socket (destination-file destination-path)
RequiredBy: systemd-timesyncd.service (destination-file destination-path)
RequiredBy: apt-daily.timer (destination-file destination-path)
RequiredBy: uuidd.socket (destination-file destination-path)
RequiredBy: systemd-ask-password-console.path (destination-file destination-path)
RequiredBy: virtlogd-admin.socket (destination-file destination-path)
RequiredBy: sys-kernel-debug.mount (destination-implicit destination-path)
RequiredBy: systemd-update-utmp-runlevel.service (destination-file destination-path)
RequiredBy: man-db.timer (destination-file destination-path)
RequiredBy: systemd-journal-flush.service (destination-file destination-path)
RequiredBy: apparmor.service (destination-file destination-path)
RequiredBy: virtlogd.socket (destination-file destination-path)
RequiredBy: sys-kernel-config.mount (destination-implicit destination-path)
RequiredBy: corosync.service (destination-file destination-path)
RequiredBy: proc-sys-fs-binfmt_misc.automount (destination-implicit destination-path)
RequiredBy: virtlockd.socket (destination-file destination-path)
RequiredBy: session-3.scope (destination-file)
RequiredBy: session-4.scope (destination-file)
RequiredBy: dbus.socket (destination-file destination-path)
RequiredBy: systemd-journald.socket (destination-file destination-path)
RequiredBy: proc-sys-fs-binfmt_misc.mount (destination-implicit destination-path)
RequiredBy: unattended-upgrades.service (destination-file destination-path)
RequiredBy: dm-event.socket (destination-file destination-path)
RequiredBy: console-setup.service (destination-file destination-path)
RequiredBy: logrotate.service (destination-file destination-path)
RequiredBy: systemd-ask-password-plymouth.path (destination-file destination-path)
RequiredBy: ssh.service (destination-file destination-path)
RequiredBy: systemd-ask-password-wall.path (destination-file destination-path)
RequiredBy: apt-daily-upgrade.timer (destination-file destination-path)
RequiredBy: lvm2-lvmpolld.socket (destination-file destination-path)
RequiredBy: systemd-rfkill.socket (destination-file destination-path)
RequiredBy: run-user-0.mount (destination-implicit)
Before: basic.target (destination-file destination-path)
Before: systemd-journald.socket (destination-file destination-path)
Before: systemd-initctl.socket (destination-file destination-path)
Before: systemd-ask-password-console.path (destination-file destination-path)
Before: virtlockd.socket (destination-file destination-path)
Before: sys-fs-fuse-connections.mount (destination-implicit destination-path)
Before: logrotate.service (destination-file destination-path)
Before: systemd-journald-dev-log.socket (destination-file destination-path)
Before: man-db.timer (destination-file destination-path)
Before: uuidd.socket (destination-file destination-path)
Before: xrdp.service (destination-file destination-path)
Before: dev-hugepages.mount (destination-implicit destination-path)
Before: systemd-rfkill.socket (destination-file destination-path)
Before: proc-sys-fs-binfmt_misc.mount (destination-implicit destination-path)
Before: systemd-update-utmp.service (destination-file destination-path)
Before: apt-daily-upgrade.timer (destination-file destination-path)
Before: sys-kernel-debug.mount (destination-implicit destination-path)
Before: console-setup.service (destination-file destination-path)
Before: sys-kernel-config.mount (destination-implicit destination-path)
Before: apt-daily.timer (destination-file destination-path)
Before: systemd-update-utmp-runlevel.service (destination-file destination-path)
Before: dm-event.socket (destination-file destination-path)
Before: systemd-fsckd.socket (destination-file destination-path)
Before: session-3.scope (destination-file)
Before: systemd-rfkill.service (destination-file destination-path)
Before: unattended-upgrades.service (destination-file destination-path)
Before: apparmor.service (destination-file destination-path)
Before: systemd-timesyncd.service (destination-file destination-path)
Before: virtlogd-admin.socket (destination-file destination-path)
Before: dbus.socket (destination-file destination-path)
Before: proc-sys-fs-binfmt_misc.automount (destination-implicit destination-path)
Before: corosync.service (destination-file destination-path)
Before: run-user-0.mount (destination-implicit)
Before: syslog.socket (destination-file destination-path)
Before: ssh.service (destination-file destination-path)
Before: dev-mqueue.mount (destination-implicit destination-path)
Before: systemd-networkd.service (destination-file destination-path)
Before: xrdp-sesman.service (destination-file destination-path)
Before: systemd-journal-flush.service (destination-file destination-path)
Before: local-fs.target (origin-file)
Before: systemd-random-seed.service (destination-file destination-path)
Before: virtlockd-admin.socket (destination-file destination-path)
Before: virtlogd.socket (destination-file destination-path)
Before: systemd-ask-password-plymouth.path (destination-file destination-path)
Before: systemd-ask-password-wall.path (destination-file destination-path)
Before: session-4.scope (destination-file)
Before: lvm2-lvmpolld.socket (destination-file destination-path)
Before: systemd-udevd-control.socket (destination-file destination-path)
Before: boot.mount (destination-file destination-implicit destination-path)
Before: logrotate.timer (destination-file destination-path)
After: system.slice (origin-file)
References: local-fs.target (origin-file)
References: system.slice (origin-file)
ReferencedBy: systemd-ask-password-plymouth.path (destination-file destination-path)
ReferencedBy: systemd-fsckd.socket (destination-file destination-path)
ReferencedBy: local-fs.target (destination-file)
ReferencedBy: apt-daily-upgrade.timer (destination-file destination-path)
ReferencedBy: dm-event.socket (destination-file destination-path)
ReferencedBy: proc-sys-fs-binfmt_misc.automount (destination-implicit destination-path)
ReferencedBy: session-4.scope (destination-file)
ReferencedBy: systemd-timesyncd.service (destination-file destination-path)
ReferencedBy: lvm2-lvmpolld.socket (destination-file destination-path)
ReferencedBy: systemd-rfkill.socket (destination-file destination-path)
ReferencedBy: run-user-0.mount (destination-implicit)
ReferencedBy: virtlockd.socket (destination-file destination-path)
ReferencedBy: systemd-networkd.service (destination-file destination-path)
ReferencedBy: virtlogd.socket (destination-file destination-path)
ReferencedBy: dev-hugepages.mount (destination-implicit destination-path)
ReferencedBy: sys-kernel-debug.mount (destination-implicit destination-path)
ReferencedBy: man-db.timer (destination-file destination-path)
ReferencedBy: sys-kernel-config.mount (destination-implicit destination-path)
ReferencedBy: logrotate.timer (destination-file destination-path)
ReferencedBy: apt-daily.timer (destination-file destination-path)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file destination-path)
ReferencedBy: session-3.scope (destination-file)
ReferencedBy: systemd-random-seed.service (destination-file destination-path)
ReferencedBy: systemd-ask-password-wall.path (destination-file destination-path)
ReferencedBy: xrdp.service (destination-file destination-path)
ReferencedBy: systemd-initctl.socket (destination-file destination-path)
ReferencedBy: virtlockd-admin.socket (destination-file destination-path)
ReferencedBy: unattended-upgrades.service (destination-file destination-path)
ReferencedBy: dbus.socket (destination-file destination-path)
ReferencedBy: proc-sys-fs-binfmt_misc.mount (destination-implicit destination-path)
ReferencedBy: basic.target (destination-file destination-path)
ReferencedBy: apparmor.service (destination-file destination-path)
ReferencedBy: systemd-journal-flush.service (destination-file destination-path)
ReferencedBy: systemd-ask-password-console.path (destination-file destination-path)
ReferencedBy: virtlogd-admin.socket (destination-file destination-path)
ReferencedBy: dev-mqueue.mount (destination-implicit destination-path)
ReferencedBy: sys-fs-fuse-connections.mount (destination-implicit destination-path)
ReferencedBy: corosync.service (destination-file destination-path)
ReferencedBy: syslog.socket (destination-file destination-path)
ReferencedBy: logrotate.service (destination-file destination-path)
ReferencedBy: systemd-journald.socket (destination-file destination-path)
ReferencedBy: console-setup.service (destination-file destination-path)
ReferencedBy: systemd-rfkill.service (destination-file destination-path)
ReferencedBy: systemd-journald-dev-log.socket (destination-file destination-path)
ReferencedBy: boot.mount (destination-file destination-implicit destination-path)
ReferencedBy: xrdp-sesman.service (destination-file destination-path)
ReferencedBy: systemd-udevd-control.socket (destination-file destination-path)
ReferencedBy: ssh.service (destination-file destination-path)
ReferencedBy: systemd-update-utmp.service (destination-file destination-path)
ReferencedBy: uuidd.socket (destination-file destination-path)
RequiresMountsFor: /dev/disk/by-uuid/d7feb5a7-bf6f-4dd1-9c1a-eaf043afbaf4 (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Mount State: mounted
Result: success
Where: /
What: /dev/md0
File System Type: ext4
Options: rw,relatime,errors=remount-ro
From /proc/self/mountinfo: yes
From fragment: yes
Extrinsic: yes
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: null
StandardError: inherit
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit remote-fs.target:
Description: Remote File Systems
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: remote-fs.target
Invocation ID: eb76767232ee455eb16c79d18fc18c71
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/remote-fs.target
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: systemd-user-sessions.service (destination-file)
Before: exim4.service (destination-file)
Before: isc-dhcp-server.service (destination-file)
Before: cron.service (destination-file)
Before: libvirtd.service (destination-file)
After: systemd-quotacheck.service (destination-file)
After: remote-fs-pre.target (origin-file)
References: shutdown.target (origin-file)
References: remote-fs-pre.target (origin-file)
ReferencedBy: systemd-user-sessions.service (destination-file)
ReferencedBy: multi-user.target (destination-file)
ReferencedBy: cron.service (destination-file)
ReferencedBy: exim4.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: systemd-quotacheck.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS.device
Invocation ID: 27652bf5f07a41979093c19d8a717be5
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190.device
Following Set Member: dev-sda.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
Found: found-udev
-> Unit plymouth-quit.service:
Description: Terminate Plymouth Boot Screen
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 19:59:45 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:45 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2020-12-16 19:59:45 CET
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: plymouth-quit.service
Invocation ID: 691c4dc505994fa5aad7687029be82d7
Fragment Path: /lib/systemd/system/plymouth-quit.service
Condition Timestamp: Wed 2020-12-16 19:59:45 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:45 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
ConflictedBy: lightdm.service (destination-file)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: lightdm.service (destination-file)
After: system.slice (origin-file)
After: rc-local.service (origin-file)
After: sysinit.target (origin-default)
After: basic.target (origin-default)
After: systemd-journald.socket (origin-file)
After: plymouth-start.service (origin-file)
After: systemd-user-sessions.service (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: rc-local.service (origin-file)
References: plymouth-start.service (origin-file)
References: shutdown.target (origin-default)
References: basic.target (origin-default)
References: systemd-user-sessions.service (origin-file)
References: sysinit.target (origin-default)
ReferencedBy: lightdm.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 20s
TimeoutStopSec: 20s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/plymouth quit
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit run-user-0.mount:
Description: /run/user/0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:50 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:50 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:50 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/run-user-0.mount
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: run-user-0.mount
Invocation ID: 6cc554c494ae43a49cad992342141c94
Source Path: /proc/self/mountinfo
Requires: system.slice (origin-file)
Requires: -.mount (origin-implicit)
Conflicts: umount.target (origin-mountinfo-default)
Before: local-fs.target (origin-mountinfo-default)
Before: umount.target (origin-mountinfo-default)
After: -.mount (origin-implicit)
After: swap.target (origin-mountinfo-default)
After: local-fs-pre.target (origin-mountinfo-default)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: umount.target (origin-mountinfo-default)
References: system.slice (origin-file)
References: local-fs-pre.target (origin-mountinfo-default)
References: -.mount (origin-implicit)
References: local-fs.target (origin-mountinfo-default)
References: swap.target (origin-mountinfo-default)
References: systemd-journald.socket (origin-file)
RequiresMountsFor: /run/user (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Mount State: mounted
Result: success
Where: /run/user/0
What: tmpfs
File System Type: tmpfs
Options: rw,nosuid,nodev,relatime,size=1629888k,mode=700
From /proc/self/mountinfo: yes
From fragment: no
Extrinsic: no
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-udev-trigger.service:
Description: udev Coldplug all Devices
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-udev-trigger.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-udev-trigger.service
Invocation ID: 61fd8c0ec28849eba41e70c4ea71da69
Documentation: man:udev(7)
Documentation: man:systemd-udevd.service(8)
Fragment Path: /lib/systemd/system/systemd-udev-trigger.service
ConditionPathIsReadWrite: /sys untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Wants: systemd-udevd.service (origin-file)
WantedBy: sysinit.target (destination-file)
Before: ifupdown-pre.service (destination-file)
Before: plymouth-start.service (destination-file)
Before: sysinit.target (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-udevd-control.socket (origin-file)
After: systemd-udevd-kernel.socket (origin-file)
After: system.slice (origin-file)
References: system.slice (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-udevd-kernel.socket (origin-file)
References: systemd-udevd-control.socket (origin-file)
References: systemd-udevd.service (origin-file)
ReferencedBy: ifupdown-pre.service (destination-file)
ReferencedBy: plymouth-start.service (destination-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/udevadm trigger --type=subsystems --action=add
Command Line: /bin/udevadm trigger --type=devices --action=add
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit getty-pre.target:
Description: Login Prompts (Pre)
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: getty-pre.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-pre.target
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: serial-getty at ttyS0.service (destination-file)
Before: getty at tty1.service (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: getty at tty1.service (destination-file)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit dbus.service:
Description: D-Bus System Message Bus
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/dbus.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: dbus.service
Invocation ID: c0fd80d65b8a4b0c8698482ed91db1eb
Documentation: man:dbus-daemon(1)
Fragment Path: /lib/systemd/system/dbus.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: dbus.socket (origin-file)
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: pacemaker.service (destination-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: user at 0.service (destination-file)
Before: libvirtd.service (destination-file)
Before: multi-user.target (destination-default)
Before: user-runtime-dir at 0.service (destination-file)
Before: pacemaker.service (destination-file)
Before: shutdown.target (origin-default)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: dbus.socket (destination-implicit)
After: sysinit.target (origin-default)
After: basic.target (origin-default)
TriggeredBy: dbus.socket (destination-implicit)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: dbus.socket (origin-file)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
ReferencedBy: dbus.socket (destination-implicit)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: pacemaker.service (destination-file)
ReferencedBy: user at 0.service (destination-file)
ReferencedBy: user-runtime-dir at 0.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 578
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
OOMScoreAdjust: -900
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only
-> ExecReload:
Command Line: /usr/bin/dbus-send --print-reply --system --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit logd.service:
Description: ha_logd logging daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/logd.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: logd.service
Invocation ID: 25e5d4ee9abb481f88fd6bcf696d5eef
Documentation: man:ha_logd(8)
Fragment Path: /lib/systemd/system/logd.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
PartOf: pacemaker.service (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: pacemaker.service (origin-file)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: basic.target (origin-default)
After: systemd-journald.socket (origin-file)
References: sysinit.target (origin-default)
References: system.slice (origin-file)
References: pacemaker.service (origin-file)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: systemd-journald.socket (origin-file)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 580
Main PID Known: yes
Main PID Alien: no
PIDFile: /run/logd.pid
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /bin/rm -f /run/logd.pid
-> ExecStart:
Command Line: /usr/lib/heartbeat/ha_logd -c /etc/logd.cf
-> ExecStopPost:
Command Line: /bin/rm -f /run/logd.pid
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-sysctl.service:
Description: Apply Kernel Variables
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-sysctl.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-sysctl.service
Invocation ID: f484a4d39a524eca8db06053187c6160
Documentation: man:systemd-sysctl.service(8)
Documentation: man:sysctl.d(5)
Fragment Path: /lib/systemd/system/systemd-sysctl.service
ConditionPathIsReadWrite: /proc/sys/net untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: systemd-networkd.service (destination-file)
Before: ifup at enp0s25.service (destination-file)
Before: shutdown.target (origin-file)
Before: networking.service (destination-file)
Before: sysinit.target (origin-file)
After: systemd-modules-load.service (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: shutdown.target (origin-file)
References: systemd-modules-load.service (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-sysctl
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit corosync.service:
Description: Corosync Cluster Engine
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: corosync.service
Documentation: man:corosync
Documentation: man:corosync.conf
Documentation: man:corosync_overview
Fragment Path: /lib/systemd/system/corosync.service
ConditionKernelCommandLine: !nocluster untested
Requires: network-online.target (origin-file)
Requires: -.mount (origin-file origin-path)
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
RequiredBy: pacemaker.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: pacemaker.service (destination-file)
Before: shutdown.target (origin-default)
After: -.mount (origin-file origin-path)
After: network-online.target (origin-file)
After: systemd-tmpfiles-setup.service (origin-file)
After: systemd-journald.socket (origin-file)
After: basic.target (origin-default)
After: sysinit.target (origin-default)
After: drbd.service (destination-file)
After: system.slice (origin-file)
References: systemd-tmpfiles-setup.service (origin-file)
References: sysinit.target (origin-default)
References: shutdown.target (origin-default)
References: systemd-journald.socket (origin-file)
References: basic.target (origin-default)
References: -.mount (origin-file origin-path)
References: system.slice (origin-file)
References: network-online.target (origin-file)
ReferencedBy: pacemaker.service (destination-file)
ReferencedBy: drbd.service (destination-file)
RequiresMountsFor: /tmp (origin-file)
RequiresMountsFor: /var/tmp (origin-file)
StopWhenUnneeded: yes
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: no
NotifyAccess: main
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: yes
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/corosync
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: null
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/corosync -f $COROSYNC_OPTIONS
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-udevd-kernel.socket:
Description: udev Kernel Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-udevd-kernel.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-udevd-kernel.socket
Invocation ID: 1da18a7c7c974e7481b41583ab123048
Documentation: man:systemd-udevd.service(8)
Documentation: man:udev(7)
Fragment Path: /lib/systemd/system/systemd-udevd-kernel.socket
ConditionPathIsReadWrite: /sys untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: systemd-udevd.service (destination-file)
WantedBy: sockets.target (destination-file)
Before: systemd-udev-trigger.service (destination-file)
Before: sockets.target (origin-file)
Before: systemd-udevd.service (origin-implicit destination-file)
After: system.slice (origin-file)
Triggers: systemd-udevd.service (origin-implicit destination-file)
References: system.slice (origin-file)
References: sockets.target (origin-file)
References: systemd-udevd.service (origin-implicit)
ReferencedBy: sockets.target (destination-file)
ReferencedBy: systemd-udev-trigger.service (destination-file)
ReferencedBy: systemd-udevd.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: systemd-udevd-kernel.socket
SELinuxContextFromNet: no
ReceiveBuffer: 134217728
ListenNetlink: kobject-uevent 1
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-sdb3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sdb3.device
Invocation ID: 581be77e2b2a42759bb8689e99587883
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d03.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb3
Found: found-udev
-> Unit sys-subsystem-net-devices-br0.device:
Description: /sys/subsystem/net/devices/br0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-subsystem-net-devices-br0.device
Invocation ID: 03b7df594a0d451b936e84f6fa6ca28a
Following Set Member: sys-devices-virtual-net-br0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/br0
Found: found-udev
-> Unit systemd-fsck-root.service:
Description: File System Check on Root Device
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-fsck-root.service
Documentation: man:systemd-fsck-root.service(8)
Fragment Path: /lib/systemd/system/systemd-fsck-root.service
ConditionPathExists: !/run/initramfs/fsck-root untested
ConditionPathIsReadWrite: !/ untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: no
Requires: system.slice (origin-file)
Wants: systemd-fsckd.socket (origin-file)
WantedBy: local-fs.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: local-fs.target (origin-file)
Before: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
Before: shutdown.target (origin-file)
Before: systemd-remount-fs.service (destination-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-fsckd.socket (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-fsckd.socket (origin-file)
References: shutdown.target (origin-file)
References: local-fs.target (origin-file)
ReferencedBy: systemd-remount-fs.service (destination-file)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
ReferencedBy: local-fs.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: infinity
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-fsck
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit plymouth-start.service:
Description: Show Plymouth Boot Screen
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2020-12-16 19:59:28 CET
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: plymouth-start.service
Invocation ID: 8fd857dfa2bf439ea0d56d43ece8a8b5
Fragment Path: /lib/systemd/system/plymouth-start.service
ConditionVirtualization: !container untested
ConditionKernelCommandLine: !nosplash untested
ConditionKernelCommandLine: !plymouth.enable=0 untested
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
Requires: system.slice (origin-file)
Wants: systemd-ask-password-plymouth.path (origin-file)
WantedBy: sysinit.target (destination-file)
Before: plymouth-quit-wait.service (destination-file)
Before: systemd-ask-password-plymouth.path (destination-file)
Before: plymouth-quit.service (destination-file)
Before: systemd-ask-password-console.path (destination-file)
Before: rescue.service (destination-file)
Before: systemd-ask-password-console.service (destination-file)
Before: systemd-ask-password-plymouth.service (origin-file destination-file)
After: keyboard-setup.service (origin-file)
After: systemd-udevd.service (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-udev-trigger.service (origin-file)
After: system.slice (origin-file)
References: keyboard-setup.service (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-udev-trigger.service (origin-file)
References: system.slice (origin-file)
References: systemd-ask-password-plymouth.service (origin-file)
References: systemd-udevd.service (origin-file)
References: systemd-ask-password-plymouth.path (origin-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: plymouth-quit.service (destination-file)
ReferencedBy: systemd-ask-password-plymouth.path (destination-file)
ReferencedBy: systemd-ask-password-console.service (destination-file)
ReferencedBy: systemd-ask-password-console.path (destination-file)
ReferencedBy: plymouth-quit-wait.service (destination-file)
ReferencedBy: rescue.service (destination-file)
ReferencedBy: systemd-ask-password-plymouth.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: none
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: no
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /sbin/plymouthd --mode=boot --pid-file=/run/plymouth/pid --attach-to-session
-> ExecStartPost:
Command Line: /bin/plymouth show-splash
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit user-runtime-dir at 0.service:
Description: User Runtime Directory /run/user/0
Instance: 0
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:50 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:50 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:50 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: user-0.slice
CGroup: /user.slice/user-0.slice/user-runtime-dir at 0.service
CGroup realized: yes
CGroup realized mask: memory pids
CGroup own mask: memory pids
Name: user-runtime-dir at 0.service
Invocation ID: 26e60b2cd2924aeda43193b29f52bd8f
Documentation: man:user at .service(5)
Fragment Path: /lib/systemd/system/user-runtime-dir at .service
Condition Timestamp: Wed 2020-12-16 19:59:50 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:50 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: user-0.slice (origin-file)
RequiredBy: user at 0.service (destination-file)
WantedBy: session-4.scope (destination-file)
WantedBy: session-3.scope (destination-file)
Conflicts: shutdown.target (origin-default)
Before: session-4.scope (destination-file)
Before: user at 0.service (destination-file)
Before: shutdown.target (origin-default)
Before: session-3.scope (destination-file)
After: systemd-journald.socket (origin-file)
After: dbus.service (origin-file)
After: systemd-user-sessions.service (origin-file)
After: user-0.slice (origin-file)
After: basic.target (origin-default)
After: sysinit.target (origin-default)
References: shutdown.target (origin-default)
References: user-0.slice (origin-file)
References: systemd-user-sessions.service (origin-file)
References: basic.target (origin-default)
References: systemd-journald.socket (origin-file)
References: dbus.service (origin-file)
References: sysinit.target (origin-default)
ReferencedBy: session-3.scope (destination-file)
ReferencedBy: user at 0.service (destination-file)
ReferencedBy: session-4.scope (destination-file)
StopWhenUnneeded: yes
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-user-runtime-dir start 0
-> ExecStop:
Command Line: /lib/systemd/systemd-user-runtime-dir stop 0
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device
Invocation ID: e5cbea283c924d2fbadb25aaec6bb447
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device
Following Set Member: dev-sda1.device
Following Set Member: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d01.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
Found: found-udev
-> Unit dev-drbd0.device:
Description: /dev/drbd0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:32 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:32 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-drbd0.device
Invocation ID: c81f878f6800424b9be0dfbebd05770e
Following: sys-devices-virtual-block-drbd0.device
Following Set Member: dev-drbd-by\x2ddisk-md1.device
Following Set Member: sys-devices-virtual-block-drbd0.device
Following Set Member: dev-drbd-by\x2dres-er0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/drbd0
Found: found-udev
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2.device
Invocation ID: fb629d42868e40fb8f6038a77c6f4f68
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: dev-sdb.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
Found: found-udev
-> Unit nss-user-lookup.target:
Description: User and Group Name Lookups
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: nss-user-lookup.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/nss-user-lookup.target
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: cron.service (destination-file)
Before: systemd-logind.service (destination-file)
Before: systemd-user-sessions.service (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: systemd-user-sessions.service (destination-file)
ReferencedBy: systemd-logind.service (destination-file)
ReferencedBy: cron.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit local-fs-pre.target:
Description: Local File Systems (Pre)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: local-fs-pre.target
Invocation ID: ef7e769338ca49b3a24382244283678e
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/local-fs-pre.target
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
WantedBy: keyboard-setup.service (destination-file)
WantedBy: systemd-remount-fs.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
Before: boot.mount (destination-file)
Before: run-user-0.mount (destination-mountinfo-default)
Before: local-fs.target (destination-file)
Before: shutdown.target (origin-default)
After: lvm2-monitor.service (destination-file)
After: systemd-tmpfiles-setup-dev.service (destination-file)
After: dm-event.service (destination-file)
After: systemd-remount-fs.service (destination-file)
After: keyboard-setup.service (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: boot.mount (destination-file)
ReferencedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
ReferencedBy: run-user-0.mount (destination-mountinfo-default)
ReferencedBy: local-fs.target (destination-file)
ReferencedBy: systemd-remount-fs.service (destination-file)
ReferencedBy: keyboard-setup.service (destination-file)
ReferencedBy: dm-event.service (destination-file)
ReferencedBy: lvm2-monitor.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit xrdp-sesman.service:
Description: xrdp session manager
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:31 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:31 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/xrdp-sesman.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: xrdp-sesman.service
Invocation ID: 6b5cdc8afb374a34b154e20929ecc506
Documentation: man:xrdp-sesman(8)
Documentation: man:sesman.ini(5)
Fragment Path: /lib/systemd/system/xrdp-sesman.service
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: -.mount (origin-file origin-path)
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
BindsTo: xrdp.service (origin-file)
RequiredBy: xrdp.service (destination-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: xrdp.service (destination-file)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
After: network.target (origin-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: -.mount (origin-file origin-path)
After: basic.target (origin-default)
After: sysinit.target (origin-default)
References: systemd-journald.socket (origin-file)
References: xrdp.service (origin-file)
References: network.target (origin-file)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
References: -.mount (origin-file origin-path)
ReferencedBy: xrdp.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
RequiresMountsFor: /run/xrdp (origin-file)
StopWhenUnneeded: yes
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 701
Main PID Known: yes
Main PID Alien: no
PIDFile: /run/xrdp/xrdp-sesman.pid
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/sysconfig/xrdp
EnvironmentFile: -/etc/default/xrdp
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
RuntimeDirectory: xrdp
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/xrdp-sesman $SESMAN_OPTIONS
-> ExecStop:
Command Line: /usr/sbin/xrdp-sesman $SESMAN_OPTIONS --kill
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-dvdrw.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-dvdrw.device
Invocation ID: dae054dc686249d5a1186eaf67d450b8
Following: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrw.device
Following Set Member: dev-sr0.device
Following Set Member: dev-dvd.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrom.device
Following Set Member: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit local-fs.target:
Description: Local File Systems
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: local-fs.target
Invocation ID: 98788d90bce44a3abaa67bbe883faa27
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/local-fs.target
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: -.mount (origin-file)
Requires: boot.mount (origin-file)
Wants: systemd-remount-fs.service (origin-file)
Wants: systemd-fsck-root.service (origin-file)
RequiredBy: selinux-autorelabel-mark.service (destination-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: systemd-tmpfiles-setup.service (destination-file)
Before: unattended-upgrades.service (destination-file)
Before: auditd.service (destination-file)
Before: selinux-autorelabel-mark.service (destination-file)
Before: networking.service (destination-file)
Before: libvirtd.service (destination-file)
Before: systemd-tmpfiles-clean.service (destination-file)
Before: ifup at enp0s25.service (destination-file)
Before: systemd-machine-id-commit.service (destination-file)
Before: plymouth-read-write.service (destination-file)
Before: sysinit.target (destination-file)
Before: apparmor.service (destination-file)
Before: console-setup.service (destination-file)
After: local-fs-pre.target (origin-file)
After: systemd-remount-fs.service (destination-file)
After: run-user-0.mount (destination-mountinfo-default)
After: -.mount (destination-file)
After: systemd-fsck-root.service (destination-file)
After: boot.mount (destination-file)
OnFailure: emergency.target (origin-file)
References: local-fs-pre.target (origin-file)
References: boot.mount (origin-file)
References: systemd-remount-fs.service (origin-file)
References: emergency.target (origin-file)
References: shutdown.target (origin-file)
References: -.mount (origin-file)
References: systemd-fsck-root.service (origin-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: systemd-tmpfiles-setup.service (destination-file)
ReferencedBy: systemd-tmpfiles-clean.service (destination-file)
ReferencedBy: console-setup.service (destination-file)
ReferencedBy: auditd.service (destination-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: apparmor.service (destination-file)
ReferencedBy: run-user-0.mount (destination-mountinfo-default)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: systemd-fsck-root.service (destination-file)
ReferencedBy: selinux-autorelabel-mark.service (destination-file)
ReferencedBy: systemd-machine-id-commit.service (destination-file)
ReferencedBy: boot.mount (destination-file)
ReferencedBy: unattended-upgrades.service (destination-file)
ReferencedBy: systemd-remount-fs.service (destination-file)
ReferencedBy: -.mount (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: plymouth-read-write.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace-irreversibly
IgnoreOnIsolate: no
Target State: active
-> Unit time-sync.target:
Description: System Time Synchronized
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: time-sync.target
Invocation ID: c7f203c63072493282058e620771b57d
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/time-sync.target
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
WantedBy: systemd-timesyncd.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: apt-daily-upgrade.timer (destination-default)
Before: man-db.timer (destination-default)
Before: apt-daily.timer (destination-default)
Before: systemd-tmpfiles-clean.service (destination-file)
Before: shutdown.target (origin-default)
Before: libvirt-guests.service (destination-file)
Before: exim4.service (destination-file)
Before: logrotate.timer (destination-default)
Before: pacemaker.service (destination-file)
After: systemd-timesyncd.service (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: man-db.timer (destination-default)
ReferencedBy: systemd-tmpfiles-clean.service (destination-file)
ReferencedBy: apt-daily.timer (destination-default)
ReferencedBy: libvirt-guests.service (destination-file)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: apt-daily-upgrade.timer (destination-default)
ReferencedBy: pacemaker.service (destination-file)
ReferencedBy: logrotate.timer (destination-default)
ReferencedBy: exim4.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Invocation ID: ae17b42511f74e95b752b703090a507a
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device
Following Set Member: dev-sda1.device
Following Set Member: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d01.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
Found: found-udev
-> Unit blk-availability.service:
Description: Availability of block devices
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/blk-availability.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: blk-availability.service
Invocation ID: 5883e516e47a434a973e9847d5309a6f
Fragment Path: /lib/systemd/system/blk-availability.service
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
After: systemd-journald.socket (origin-file)
After: lvm2-activation.service (origin-file)
After: fcoe.service (origin-file)
After: iscsi.service (origin-file)
After: rbdmap.service (origin-file)
After: iscsi-shutdown.service (origin-file)
After: system.slice (origin-file)
After: iscsid.service (origin-file)
References: iscsid.service (origin-file)
References: iscsi-shutdown.service (origin-file)
References: lvm2-activation.service (origin-file)
References: iscsi.service (origin-file)
References: rbdmap.service (origin-file)
References: shutdown.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: fcoe.service (origin-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/true
-> ExecStop:
Command Line: /sbin/blkdeactivate -u -l wholevg -m disablequeueing -r wait
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart3.device
Invocation ID: 2c96d3dfc41e4af7a1917f4fe4f7a88e
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d03.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart3.device
Following Set Member: dev-sda3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
Found: found-udev
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
Invocation ID: 37751e4431d0484bbf2a94a37f56d890
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190.device
Following Set Member: dev-sda.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
Found: found-udev
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart2.device
Invocation ID: 2a4e12df359e4bc7a98384cd21aa8aef
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart2.device
Following Set Member: dev-sda2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d02.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
Found: found-udev
-> Unit systemd-networkd.service:
Description: Network Service
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-networkd.service
Documentation: man:systemd-networkd.service(8)
Fragment Path: /lib/systemd/system/systemd-networkd.service
ConditionCapability: CAP_NET_ADMIN untested
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
Wants: network.target (origin-file)
Conflicts: shutdown.target (origin-file)
Before: multi-user.target (origin-file)
Before: shutdown.target (origin-file)
Before: network.target (origin-file)
Before: apt-daily-upgrade.service (destination-file)
Before: apt-daily.service (destination-file)
After: systemd-sysusers.service (origin-file)
After: -.mount (origin-file origin-path)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: network-pre.target (origin-file)
After: systemd-udevd.service (origin-file)
After: systemd-sysctl.service (origin-file)
References: network.target (origin-file)
References: multi-user.target (origin-file)
References: systemd-udevd.service (origin-file)
References: systemd-sysctl.service (origin-file)
References: systemd-sysusers.service (origin-file)
References: system.slice (origin-file)
References: shutdown.target (origin-file)
References: network-pre.target (origin-file)
References: systemd-journald.socket (origin-file)
References: -.mount (origin-file origin-path)
ReferencedBy: apt-daily-upgrade.service (destination-file)
ReferencedBy: apt-daily.service (destination-file)
RequiresMountsFor: /run/systemd/netif (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: on-failure
NotifyAccess: main
NotifyState: unknown
RestartSec: 0
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 3min
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: yes
ProtectControlGroups: yes
PrivateNetwork: no
PrivateUsers: no
ProtectHome: yes
ProtectSystem: strict
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: yes
RestrictRealtime: yes
KeyringMode: private
RuntimeDirectoryPreserve: yes
RuntimeDirectoryMode: 0755
RuntimeDirectory: systemd/netif
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
CapabilityBoundingSet: cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw
AmbientCapabilities: cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw
User: systemd-network
DynamicUser: no
LockPersonality: yes
SystemCallFilter: rt_sigsuspend copy_file_range setgid dup2 symlink umask getresgid ftruncate prctl fremovexattr semget clock_getres migrate_pages shmdt munlock setresgid32 exit_group getgid set_tls fcntl64 getegid32 oldlstat ftruncate64 nice inotify_add_watch sigprocmask epoll_ctl_old close readv fadvise64 ioprio_get sched_getaffinity write waitid ioprio_set timer_gettime request_key flistxattr setsid mq_timedreceive kill msgrcv setresuid _llseek recvmsg setsockopt send setitimer setfsuid nanosleep fcntl sigpending statx epoll_create1 tgkill mq_notify llistxattr setreuid32 lsetxattr msgsnd timer_create dup oldolduname ppoll inotify_init fchmodat get_robust_list gettid io_submit lseek recvfrom lremovexattr symlinkat setpriority sync_file_range unlink sync set_mempolicy accept4 eventfd2 brk arch_prctl read futimesat sched_rr_get_interval memfd_create readahead uname getpeername set_tid_address readlinkat fchmod munlockall rt_tgsigqueueinfo lgetxattr getppid pselect6 chown32 add_key mq_unlink execve recv inotify_init1 kcmp shutdown stat64 getpgrp olduname io_cancel exit sigaction faccessat mremap setxattr fdatasync sched_setscheduler sendto msgctl fstatfs64 mknodat epoll_pwait utimes openat mbind setregid32 epoll_ctl timer_settime time sendmsg readlink setregid prlimit64 setfsuid32 timerfd_gettime keyctl inotify_rm_watch shmget sched_getparam mmap2 getrusage alarm set_robust_list rt_sigprocmask sched_yield remap_file_pages splice readdir io_getevents mprotect name_to_handle_at clock_gettime pause get_thread_area mkdir fchownat lchown sched_getattr getcwd preadv setresuid32 sigsuspend tee msgget clone chown open recvmmsg unlinkat getxattr epoll_create getuid setuid pread64 rmdir fstat64 munmap eventfd removexattr syncfs setrlimit mmap process_vm_readv getpgid getegid getpid shmctl newfstatat io_destroy fork capset timer_delete get_mempolicy statfs64 ipc writev fchdir setfsgid ugetrlimit getrlimit getgid32 mq_getsetattr sync_file_range2 timerfd_settime getpriority creat getsid waitpid getgroups32 msync listxattr _newselect socketcall mq_timedsend clock_nanosleep lchown32 chmod io_setup linkat mq_open wait4 sched_setaffinity futex setpgid setgroups32 epoll_wait_old userfaultfd fgetxattr dup3 fstatat64 connect capget sendfile64 sigreturn lstat oldstat rename getresgid32 epoll_wait truncate mlock move_pages semtimedop getsockname rt_sigreturn fchown32 sched_get_priority_min vmsplice getresuid swapcontext utimensat pipe setfsgid32 rt_sigaction mlock2 getrandom fchown vfork getgroups preadv2 times getsockopt signal semop getdents64 ioctl truncate64 setreuid signalfd4 stat fsync pipe2 poll getuid32 flock fsetxattr renameat2 signalfd setgroups lstat64 link pwritev tkill setresgid timerfd_create fstat process_vm_writev chdir rt_sigpending geteuid32 listen mlockall setns shmat oldfstat getcpu pwritev2 setgid32 madvise utime sysinfo fstatfs sendmmsg unshare bind fadvise64_64 gettimeofday sigaltstack socket sched_setparam membarrier setuid32 mknod set_thread_area accept execveat rt_sigtimedwait pwrite64 getresuid32 fallocate socketpair renameat sched_get_priority_max timer_getoverrun getitimer sched_getscheduler mkdirat getdents sendfile geteuid sched_setattr access select rt_sigqueueinfo personality semctl statfs restart_syscall
SystemCallArchitectures: native
RestrictNamespaces:
SystemCallErrorNumber: EPERM
-> ExecStart:
Command Line: /lib/systemd/systemd-networkd
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-sda1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sda1.device
Invocation ID: 6d775cee72c34e6fb8c2c8d38453b30e
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device
Following Set Member: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d01.device
BoundBy: boot.mount (destination-mountinfo-implicit)
Before: boot.mount (destination-mountinfo-implicit)
ReferencedBy: boot.mount (destination-mountinfo-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
Found: found-udev,found-mount
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS.device
Invocation ID: 23f5c55a7de24ad2a0f7bd045faa8ea4
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: dev-sdb.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
Found: found-udev
-> Unit sys-devices-virtual-net-br0.device:
Description: /sys/devices/virtual/net/br0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-net-br0.device
Invocation ID: 68e98b9377d44d6982f72ce7d545db03
Following Set Member: sys-subsystem-net-devices-br0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/br0
Found: found-udev
-> Unit dev-rfkill.device:
Description: /dev/rfkill
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-rfkill.device
Invocation ID: 9540555f7b454c69997b4400a4807f6e
Following: sys-devices-virtual-misc-rfkill.device
Following Set Member: sys-devices-virtual-misc-rfkill.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/misc/rfkill
Found: found-udev
-> Unit fcoe.service:
Description: fcoe.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: fcoe.service
Before: blk-availability.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
-> Unit systemd-rfkill.service:
Description: Load/Save RF Kill Switch Status
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-rfkill.service
Documentation: man:systemd-rfkill.service(8)
Fragment Path: /lib/systemd/system/systemd-rfkill.service
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
BindsTo: sys-devices-virtual-misc-rfkill.device (origin-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
After: sys-devices-virtual-misc-rfkill.device (origin-file)
After: systemd-remount-fs.service (origin-file)
After: -.mount (origin-file origin-path)
After: systemd-journald.socket (origin-file)
After: systemd-rfkill.socket (destination-implicit)
After: system.slice (origin-file)
TriggeredBy: systemd-rfkill.socket (destination-implicit)
References: sys-devices-virtual-misc-rfkill.device (origin-file)
References: systemd-remount-fs.service (origin-file)
References: -.mount (origin-file origin-path)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-file)
References: system.slice (origin-file)
ReferencedBy: systemd-rfkill.socket (destination-implicit)
RequiresMountsFor: /var/lib/systemd/rfkill (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: no
NotifyAccess: main
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 30s
TimeoutStopSec: 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
StateDirectory: systemd/rfkill
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-rfkill
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit user-0.slice:
Description: User Slice of UID 0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:50 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:50 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:50 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: user.slice
CGroup: /user.slice/user-0.slice
CGroup realized: yes
CGroup realized mask: memory pids
CGroup enabled mask: memory pids
CGroup own mask: memory pids
CGroup members mask: memory pids
Name: user-0.slice
Invocation ID: 4045db7637e3432ca9c5f7c19e547260
Documentation: man:user at .service(5)
DropIn Path: /usr/lib/systemd/system/user-.slice.d/10-defaults.conf
Condition Timestamp: Wed 2020-12-16 19:59:50 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:50 CET
Assert Result: yes
Requires: user.slice (origin-implicit)
RequiredBy: session-4.scope (destination-file)
RequiredBy: user-runtime-dir at 0.service (destination-file)
RequiredBy: user at 0.service (destination-file)
RequiredBy: session-3.scope (destination-file)
Conflicts: shutdown.target (origin-default)
Before: user-runtime-dir at 0.service (destination-file)
Before: user at 0.service (destination-file)
Before: session-4.scope (destination-file)
Before: session-3.scope (destination-file)
Before: shutdown.target (origin-default)
After: systemd-user-sessions.service (origin-file)
After: user.slice (origin-implicit)
References: systemd-user-sessions.service (origin-file)
References: user.slice (origin-implicit)
References: shutdown.target (origin-default)
ReferencedBy: session-4.scope (destination-file)
ReferencedBy: user-runtime-dir at 0.service (destination-file)
ReferencedBy: user at 0.service (destination-file)
ReferencedBy: session-3.scope (destination-file)
StopWhenUnneeded: yes
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Slice State: active
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=10813
DevicePolicy=auto
Delegate=no
-> Unit dev-drbd-by\x2ddisk-md1.device:
Description: /dev/drbd/by-disk/md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:32 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:32 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-drbd-by\x2ddisk-md1.device
Invocation ID: f15f53372ebe429e84c66ab578f0c15a
Following: sys-devices-virtual-block-drbd0.device
Following Set Member: dev-drbd0.device
Following Set Member: sys-devices-virtual-block-drbd0.device
Following Set Member: dev-drbd-by\x2dres-er0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/drbd0
Found: found-udev
-> Unit lvm2-activation.service:
Description: lvm2-activation.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: lvm2-activation.service
Before: blk-availability.service (destination-file)
Before: lvm2-monitor.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
ReferencedBy: lvm2-monitor.service (destination-file)
-> Unit dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device
Invocation ID: 4c90333950614c2896b030da3033c27b
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device
Following Set Member: dev-sdb1.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
Found: found-udev
-> Unit sys-devices-virtual-net-virbr0\x2dnic.device:
Description: /sys/devices/virtual/net/virbr0-nic
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:34 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:34 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:34 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-net-virbr0\x2dnic.device
Invocation ID: 811161a658f447c393c6c005859f53e2
Following Set Member: sys-subsystem-net-devices-virbr0\x2dnic.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/virbr0-nic
Found: found-udev
-> Unit dev-disk-by\x2dpartuuid-4de1036d\x2d03.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpartuuid-4de1036d\x2d03.device
Invocation ID: ec3abe651ed4432ca2a64465f394395a
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart3.device
Following Set Member: dev-sda3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
Found: found-udev
-> Unit dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device
Invocation ID: a0c224e077784d0f978d72f069c9d36c
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
Following Set Member: dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device
Following Set Member: dev-sdb1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
Found: found-udev
-> Unit systemd-fsckd.socket:
Description: fsck to fsckd communication Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:59 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-fsckd.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-fsckd.socket
Invocation ID: 6c00999fb27c41ce88b1b2372845b0eb
Documentation: man:systemd-fsckd.service(8)
Documentation: man:systemd-fsck at .service(8)
Documentation: man:systemd-fsck-root.service(8)
Fragment Path: /lib/systemd/system/systemd-fsckd.socket
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequiredBy: systemd-fsckd.service (destination-file)
WantedBy: systemd-fsck-root.service (destination-file)
WantedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
Before: systemd-fsckd.service (origin-implicit)
Before: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
Before: systemd-fsck-root.service (destination-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-fsckd.service (origin-implicit)
References: systemd-fsckd.service (origin-implicit)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
ReferencedBy: systemd-fsckd.service (destination-file)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
ReferencedBy: systemd-fsck-root.service (destination-file)
RequiresMountsFor: /run/systemd/fsck.progress (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: systemd-fsckd.socket
SELinuxContextFromNet: no
ListenStream: /run/systemd/fsck.progress
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sys-subsystem-net-devices-virbr0\x2dnic.device:
Description: /sys/subsystem/net/devices/virbr0-nic
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:34 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:34 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:34 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-subsystem-net-devices-virbr0\x2dnic.device
Invocation ID: 25163c0077844b04a774459fc8c699b1
Following Set Member: sys-devices-virtual-net-virbr0\x2dnic.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/virbr0-nic
Found: found-udev
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e.device
Invocation ID: a08293f7ba0f4b3cbda91866cdafd5fe
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: dev-sdb.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
Found: found-udev
-> Unit kbd.service:
Description: kbd.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: kbd.service
Before: console-setup.service (destination-file)
ReferencedBy: console-setup.service (destination-file)
-> Unit system-systemd\x2dfsck.slice:
Description: system-systemd\x2dfsck.slice
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/system-systemd\x2dfsck.slice
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup enabled mask: memory pids
CGroup own mask: memory pids
CGroup members mask: memory pids
Name: system-systemd\x2dfsck.slice
Invocation ID: d2b9126fbb1a4f5eab0fc41b60fba8f3
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-implicit)
RequiredBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
After: system.slice (origin-implicit)
References: system.slice (origin-implicit)
References: shutdown.target (origin-default)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Slice State: active
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-md\x2duuid\x2ddad7fdda:6e09b338:4f191946:ff6f2211.device:
Description: /dev/disk/by-id/md-uuid-dad7fdda:6e09b338:4f191946:ff6f2211
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-md\x2duuid\x2ddad7fdda:6e09b338:4f191946:ff6f2211.device
Invocation ID: 3fa39aa2151343c4857205852e6fa3dc
Following: sys-devices-virtual-block-md0.device
Following Set Member: dev-disk-by\x2duuid-d7feb5a7\x2dbf6f\x2d4dd1\x2d9c1a\x2deaf043afbaf4.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:0.device
Following Set Member: sys-devices-virtual-block-md0.device
Following Set Member: dev-md0.device
Following Set Member: dev-md-0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md0
Found: found-udev
-> Unit basic.target:
Description: Basic System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: basic.target
Invocation ID: 25c449f2fc2944e2845503fcce8d348f
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/basic.target
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-file)
Requires: -.mount (origin-file origin-path)
Wants: selinux-autorelabel-mark.service (origin-file)
Wants: sockets.target (origin-file)
Wants: tmp.mount (origin-file)
Wants: paths.target (origin-file)
Wants: timers.target (origin-file)
Wants: slices.target (origin-file)
RequiredBy: heartbeat.service (destination-file)
RequiredBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: systemd-ask-password-wall.service (destination-default)
Before: rsyslog.service (destination-default)
Before: systemd-logind.service (destination-default)
Before: heartbeat.service (destination-file destination-default)
Before: exim4.service (destination-default)
Before: etc-setserial.service (destination-default)
Before: rsync.service (destination-default)
Before: shutdown.target (origin-default)
Before: libvirtd.service (destination-default)
Before: apt-daily.service (destination-default)
Before: systemd-user-sessions.service (destination-default)
Before: bind9.service (destination-default)
Before: xrdp-sesman.service (destination-default)
Before: libvirt-guests.service (destination-default)
Before: multi-user.target (destination-file destination-default)
Before: uuidd.service (destination-default)
Before: virtlockd.service (destination-default)
Before: unattended-upgrades.service (destination-default)
Before: lightdm.service (destination-default)
Before: pacemaker.service (destination-default)
Before: drbd.service (destination-default)
Before: getty-static.service (destination-default)
Before: logd.service (destination-default)
Before: plymouth-quit-wait.service (destination-default)
Before: man-db.service (destination-default)
Before: setserial.service (destination-default)
Before: user-runtime-dir at 0.service (destination-default)
Before: dbus.service (destination-default)
Before: rc-local.service (destination-default)
Before: zabbix-agent2.service (destination-default)
Before: cron.service (destination-default)
Before: corosync.service (destination-default)
Before: virtlogd.service (destination-default)
Before: getty at tty1.service (destination-default)
Before: user at 0.service (destination-default)
Before: isc-dhcp-server.service (destination-default)
Before: serial-getty at ttyS0.service (destination-default)
Before: plymouth-quit.service (destination-default)
Before: logrotate.service (destination-default)
Before: ssh.service (destination-default)
Before: xrdp.service (destination-default)
Before: fail2ban.service (destination-default)
Before: apt-daily-upgrade.service (destination-default)
Before: udisks2.service (destination-default)
After: slices.target (origin-file origin-default)
After: paths.target (origin-file origin-default)
After: tmp.mount (origin-file)
After: -.mount (origin-file origin-path)
After: systemd-ask-password-plymouth.path (destination-file)
After: sysinit.target (origin-file origin-default)
After: sockets.target (origin-file origin-default)
References: -.mount (origin-file origin-path)
References: paths.target (origin-file origin-default)
References: sockets.target (origin-file origin-default)
References: timers.target (origin-file)
References: slices.target (origin-file origin-default)
References: tmp.mount (origin-file)
References: sysinit.target (origin-file origin-default)
References: shutdown.target (origin-default)
References: selinux-autorelabel-mark.service (origin-file)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: user-runtime-dir at 0.service (destination-default)
ReferencedBy: user at 0.service (destination-default)
ReferencedBy: man-db.service (destination-default)
ReferencedBy: virtlockd.service (destination-default)
ReferencedBy: xrdp-sesman.service (destination-default)
ReferencedBy: getty-static.service (destination-default)
ReferencedBy: systemd-logind.service (destination-default)
ReferencedBy: bind9.service (destination-default)
ReferencedBy: systemd-user-sessions.service (destination-default)
ReferencedBy: rsyslog.service (destination-default)
ReferencedBy: uuidd.service (destination-default)
ReferencedBy: exim4.service (destination-default)
ReferencedBy: plymouth-quit.service (destination-default)
ReferencedBy: dbus.service (destination-default)
ReferencedBy: setserial.service (destination-default)
ReferencedBy: logd.service (destination-default)
ReferencedBy: etc-setserial.service (destination-default)
ReferencedBy: serial-getty at ttyS0.service (destination-default)
ReferencedBy: rsync.service (destination-default)
ReferencedBy: xrdp.service (destination-default)
ReferencedBy: udisks2.service (destination-default)
ReferencedBy: ssh.service (destination-default)
ReferencedBy: isc-dhcp-server.service (destination-default)
ReferencedBy: systemd-ask-password-plymouth.path (destination-file)
ReferencedBy: heartbeat.service (destination-file destination-default)
ReferencedBy: unattended-upgrades.service (destination-default)
ReferencedBy: libvirt-guests.service (destination-default)
ReferencedBy: rc-local.service (destination-default)
ReferencedBy: zabbix-agent2.service (destination-default)
ReferencedBy: fail2ban.service (destination-default)
ReferencedBy: logrotate.service (destination-default)
ReferencedBy: libvirtd.service (destination-default)
ReferencedBy: pacemaker.service (destination-default)
ReferencedBy: apt-daily-upgrade.service (destination-default)
ReferencedBy: lightdm.service (destination-default)
ReferencedBy: virtlogd.service (destination-default)
ReferencedBy: getty at tty1.service (destination-default)
ReferencedBy: plymouth-quit-wait.service (destination-default)
ReferencedBy: systemd-ask-password-wall.service (destination-default)
ReferencedBy: corosync.service (destination-default)
ReferencedBy: cron.service (destination-default)
ReferencedBy: drbd.service (destination-default)
ReferencedBy: apt-daily.service (destination-default)
RequiresMountsFor: /var (origin-file)
RequiresMountsFor: /var/tmp (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit iscsi-shutdown.service:
Description: iscsi-shutdown.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: iscsi-shutdown.service
Before: blk-availability.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
-> Unit apt-daily.service:
Description: Daily apt download activities
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: apt-daily.service
Documentation: man:apt(8)
Fragment Path: /lib/systemd/system/apt-daily.service
ConditionACPower: true untested
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Conflicts: shutdown.target (origin-default)
Before: apt-daily-upgrade.service (destination-file)
Before: shutdown.target (origin-default)
After: connman.service (origin-file)
After: network-online.target (origin-file)
After: system.slice (origin-file)
After: network.target (origin-file)
After: apt-daily.timer (destination-implicit)
After: systemd-journald.socket (origin-file)
After: basic.target (origin-default)
After: systemd-networkd.service (origin-file)
After: sysinit.target (origin-default)
After: NetworkManager.service (origin-file)
TriggeredBy: apt-daily.timer (destination-implicit)
References: basic.target (origin-default)
References: systemd-journald.socket (origin-file)
References: sysinit.target (origin-default)
References: NetworkManager.service (origin-file)
References: systemd-networkd.service (origin-file)
References: network-online.target (origin-file)
References: connman.service (origin-file)
References: system.slice (origin-file)
References: shutdown.target (origin-default)
References: network.target (origin-file)
ReferencedBy: apt-daily.timer (destination-implicit)
ReferencedBy: apt-daily-upgrade.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /usr/lib/apt/apt-helper wait-online
-> ExecStart:
Command Line: /usr/lib/apt/apt.systemd.daily update
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-journald-audit.socket:
Description: Journal Audit Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-journald-audit.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-journald-audit.socket
Invocation ID: 878342d6715141f29c427aa9b124d491
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journald-audit.socket
ConditionCapability: CAP_AUDIT_READ untested
ConditionSecurity: audit untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: systemd-journald.service (destination-file)
WantedBy: sockets.target (destination-file)
Before: systemd-journald.service (origin-implicit destination-file)
Before: apparmor.service (destination-file)
Before: sockets.target (origin-file)
After: system.slice (origin-file)
Triggers: systemd-journald.service (origin-implicit destination-file)
References: system.slice (origin-file)
References: sockets.target (origin-file)
References: systemd-journald.service (origin-implicit)
ReferencedBy: sockets.target (destination-file)
ReferencedBy: systemd-journald.service (destination-file)
ReferencedBy: apparmor.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: systemd-journald-audit.socket
SELinuxContextFromNet: no
ReceiveBuffer: 134217728
ListenNetlink: audit 1
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit syslog.socket:
Description: Syslog Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/syslog.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: syslog.socket
Invocation ID: d57acaca6ffb4078bba9f341839e5a63
Documentation: man:systemd.special(7)
Documentation: https://www.freedesktop.org/wiki/Software/systemd/syslog
Fragment Path: /lib/systemd/system/syslog.socket
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequiredBy: rsyslog.service (destination-file)
Conflicts: emergency.service (origin-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
Before: emergency.service (origin-file)
Before: rsyslog.service (origin-implicit)
Before: sockets.target (origin-file)
Before: systemd-journald.service (destination-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: rsyslog.service (origin-implicit)
References: shutdown.target (origin-file)
References: emergency.service (origin-file)
References: -.mount (origin-file origin-path)
References: system.slice (origin-file)
References: rsyslog.service (origin-implicit)
References: sockets.target (origin-file)
ReferencedBy: systemd-journald.service (destination-file)
ReferencedBy: rsyslog.service (destination-file)
RequiresMountsFor: /run/systemd/journal/syslog (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: yes
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: syslog.socket
SELinuxContextFromNet: no
ReceiveBuffer: 8388608
ListenDatagram: /run/systemd/journal/syslog
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit rsyslog.service:
Description: System Logging Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/rsyslog.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: syslog.service
Name: rsyslog.service
Invocation ID: e039df567828497fb9c060d979e769e8
Documentation: man:rsyslogd(8)
Documentation: https://www.rsyslog.com/doc/
Fragment Path: /lib/systemd/system/rsyslog.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Requires: syslog.socket (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: pacemaker.service (destination-file)
Before: shutdown.target (origin-default)
After: basic.target (origin-default)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: syslog.socket (destination-implicit)
TriggeredBy: syslog.socket (destination-implicit)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: system.slice (origin-file)
References: syslog.socket (origin-file)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: pacemaker.service (destination-file)
ReferencedBy: syslog.socket (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: on-failure
NotifyAccess: main
NotifyState: unknown
Main PID: 579
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 16384
LimitNOFILESoft: 16384
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: null
StandardError: inherit
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/rsyslogd -n -iNONE
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit kmod-static-nodes.service:
Description: Create list of required static device nodes for the current kernel
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/kmod-static-nodes.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: kmod-static-nodes.service
Invocation ID: 5b46d40ab5894a6989d21b19f64c85d6
Fragment Path: /lib/systemd/system/kmod-static-nodes.service
ConditionFileNotEmpty: /lib/modules/4.19.0-13-amd64/modules.devname untested
ConditionCapability: CAP_SYS_MODULE untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
Before: systemd-tmpfiles-setup-dev.service (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: systemd-tmpfiles-setup-dev.service (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-sdb2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sdb2.device
Invocation ID: 025fec8b0e1041ba8f9589968d2e7f1b
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d02.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb2
Found: found-udev
-> Unit dev-sdb.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sdb.device
Invocation ID: 011f8fae26294076a2afff083e299c7c
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
Found: found-udev
-> Unit slices.target:
Description: Slices
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: slices.target
Invocation ID: 8e552ddd5af04b31baa2355ea3b3cc94
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/slices.target
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Wants: system.slice (origin-file)
Wants: -.slice (origin-file)
WantedBy: basic.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: basic.target (destination-file destination-default)
Before: shutdown.target (origin-default)
After: system.slice (origin-file)
After: user.slice (destination-file)
After: -.slice (origin-file)
References: shutdown.target (origin-default)
References: -.slice (origin-file)
References: system.slice (origin-file)
ReferencedBy: basic.target (destination-file destination-default)
ReferencedBy: user.slice (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit dev-disk-by\x2dpartuuid-b3257d2e\x2d03.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpartuuid-b3257d2e\x2d03.device
Invocation ID: 1c17be22f601418c8415dd70b11db874
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: dev-sdb3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart3.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb3
Found: found-udev
-> Unit selinux-autorelabel-mark.service:
Description: Mark the need to relabel after reboot
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: selinux-autorelabel-mark.service
Fragment Path: /lib/systemd/system/selinux-autorelabel-mark.service
ConditionPathExists: !/.autorelabel untested
ConditionPathIsDirectory: /etc/selinux untested
ConditionSecurity: !selinux untested
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: no
Requires: local-fs.target (origin-file)
Requires: system.slice (origin-file)
WantedBy: basic.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: local-fs.target (origin-file)
References: local-fs.target (origin-file)
References: shutdown.target (origin-file)
References: sysinit.target (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
ReferencedBy: basic.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/touch /.autorelabel
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit init.scope:
Description: System and Service Manager
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: yes
Perpetual: yes
Garbage Collection Mode: inactive
Slice: -.slice
CGroup: /init.scope
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: init.scope
Documentation: man:systemd(1)
Requires: -.slice (origin-file)
After: -.slice (origin-file)
References: -.slice (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Scope State: running
Result: success
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
-> 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
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: systemd-ask-password-wall.path
Invocation ID: 5538d222dcbe448b8d80341df7019674
Documentation: man:systemd-ask-password-console.service(8)
Fragment Path: /lib/systemd/system/systemd-ask-password-wall.path
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: -.mount (origin-file origin-path)
WantedBy: multi-user.target (destination-file)
Conflicts: emergency.service (origin-file)
Conflicts: shutdown.target (origin-file)
Before: systemd-ask-password-wall.service (origin-implicit)
Before: shutdown.target (origin-file)
Before: paths.target (origin-file)
Before: cryptsetup.target (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-ask-password-wall.service (origin-implicit)
References: systemd-ask-password-wall.service (origin-implicit)
References: shutdown.target (origin-file)
References: -.mount (origin-file origin-path)
References: emergency.service (origin-file)
References: paths.target (origin-file)
References: cryptsetup.target (origin-file)
ReferencedBy: multi-user.target (destination-file)
RequiresMountsFor: /run/systemd/ask-password (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Path State: waiting
Result: success
Unit: systemd-ask-password-wall.service
MakeDirectory: yes
DirectoryMode: 0755
DirectoryNotEmpty: /run/systemd/ask-password
-> Unit virtlockd.service:
Description: Virtual machine lock manager
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: virtlockd.service
Documentation: man:virtlockd(8)
Documentation: https://libvirt.org
Fragment Path: /lib/systemd/system/virtlockd.service
Requires: system.slice (origin-file)
Requires: sysinit.target (origin-default)
Requires: virtlockd-admin.socket (origin-file)
Requires: virtlockd.socket (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: libvirtd.service (origin-file)
After: virtlockd.socket (destination-implicit)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: sysinit.target (origin-default)
After: basic.target (origin-default)
After: virtlockd-admin.socket (destination-implicit)
TriggeredBy: virtlockd.socket (destination-implicit)
TriggeredBy: virtlockd-admin.socket (destination-implicit)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: virtlockd.socket (origin-file)
References: basic.target (origin-default)
References: sysinit.target (origin-default)
References: libvirtd.service (origin-file)
References: virtlockd-admin.socket (origin-file)
ReferencedBy: virtlockd.socket (destination-implicit)
ReferencedBy: virtlockd-admin.socket (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/virtlockd
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
OOMScoreAdjust: -900
LimitNOFILE: 40960
LimitNOFILESoft: 40960
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/virtlockd $VIRTLOCKD_ARGS
-> ExecReload:
Command Line: /bin/kill -USR1 $MAINPID
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit uuidd.socket:
Description: UUID daemon activation socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/uuidd.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: uuidd.socket
Invocation ID: 37334da036b74de2b34408e69493e642
Fragment Path: /lib/systemd/system/uuidd.socket
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequiredBy: uuidd.service (destination-file)
WantedBy: sockets.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: uuidd.service (origin-implicit)
Before: sockets.target (origin-default destination-default)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: uuidd.service (origin-implicit)
References: sockets.target (origin-default)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: uuidd.service (origin-implicit)
References: sysinit.target (origin-default)
References: -.mount (origin-file origin-path)
ReferencedBy: sockets.target (destination-file destination-default)
ReferencedBy: uuidd.service (destination-file)
RequiresMountsFor: /run/uuidd/request (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: uuidd.socket
SELinuxContextFromNet: no
ListenStream: /run/uuidd/request
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-ttyS2.device:
Description: /dev/ttyS2
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-ttyS2.device
Invocation ID: f0875f932b9a4df489295ecc1538e298
Following: sys-devices-platform-serial8250-tty-ttyS2.device
Following Set Member: sys-devices-platform-serial8250-tty-ttyS2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS2
Found: found-udev
-> Unit man-db.service:
Description: Daily man-db regeneration
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: man-db.service
Documentation: man:mandb(8)
Fragment Path: /lib/systemd/system/man-db.service
ConditionACPower: true untested
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: sysinit.target (origin-default)
After: man-db.timer (destination-implicit)
After: basic.target (origin-default)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
TriggeredBy: man-db.timer (destination-implicit)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
References: system.slice (origin-file)
References: shutdown.target (origin-default)
References: systemd-journald.socket (origin-file)
ReferencedBy: man-db.timer (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
Nice: 19
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
IOSchedulingClass: idle
IOPriority: 7
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: man
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/bin/install -d -o man -g man -m 0755 /var/cache/man
Command Line: /usr/bin/find /var/cache/man -type f -name *.gz -atime +6 -delete
Command Line: /usr/bin/mandb --quiet
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit console-screen.service:
Description: console-screen.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: console-screen.service
Before: console-setup.service (destination-file)
ReferencedBy: console-setup.service (destination-file)
-> Unit dev-md0.device:
Description: /dev/md0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-md0.device
Invocation ID: b6c35e7a29314a61ba2673535f068e17
Following: sys-devices-virtual-block-md0.device
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2ddad7fdda:6e09b338:4f191946:ff6f2211.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:0.device
Following Set Member: dev-disk-by\x2duuid-d7feb5a7\x2dbf6f\x2d4dd1\x2d9c1a\x2deaf043afbaf4.device
Following Set Member: sys-devices-virtual-block-md0.device
Following Set Member: dev-md-0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md0
Found: found-udev,found-mount
-> Unit dev-cdrom.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-cdrom.device
Invocation ID: 4c21b4511eae4630ab1e4a28af20ca14
Following: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrw.device
Following Set Member: dev-dvdrw.device
Following Set Member: dev-sr0.device
Following Set Member: dev-dvd.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit dev-disk-by\x2duuid-d7feb5a7\x2dbf6f\x2d4dd1\x2d9c1a\x2deaf043afbaf4.device:
Description: /dev/disk/by-uuid/d7feb5a7-bf6f-4dd1-9c1a-eaf043afbaf4
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2duuid-d7feb5a7\x2dbf6f\x2d4dd1\x2d9c1a\x2deaf043afbaf4.device
Invocation ID: babe0df662054bc6a7b90de656bd2750
Following: sys-devices-virtual-block-md0.device
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2ddad7fdda:6e09b338:4f191946:ff6f2211.device
Following Set Member: sys-devices-virtual-block-md0.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:0.device
Following Set Member: dev-md0.device
Following Set Member: dev-md-0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md0
Found: found-udev
-> Unit systemd-timesyncd.service:
Description: Network Time Synchronization
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-timesyncd.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory devices pids bpf-devices
Name: systemd-timesyncd.service
Invocation ID: c03a108dbc5b42ae91ff5e5e666eda68
Documentation: man:systemd-timesyncd.service(8)
Fragment Path: /lib/systemd/system/systemd-timesyncd.service
DropIn Path: /usr/lib/systemd/system/systemd-timesyncd.service.d/disable-with-time-daemon.conf
ConditionFileIsExecutable: !/usr/sbin/VBoxService untested
ConditionFileIsExecutable: !/usr/sbin/chronyd untested
ConditionFileIsExecutable: !/usr/sbin/openntpd untested
ConditionFileIsExecutable: !/usr/sbin/ntpd untested
ConditionVirtualization: !container untested
ConditionCapability: CAP_SYS_TIME untested
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
Wants: time-sync.target (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: time-sync.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-tmpfiles-setup.service (origin-file)
After: systemd-remount-fs.service (origin-file)
After: systemd-sysusers.service (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
After: systemd-journald.socket (origin-file)
References: sysinit.target (origin-file)
References: systemd-tmpfiles-setup.service (origin-file)
References: shutdown.target (origin-file)
References: -.mount (origin-file origin-path)
References: systemd-journald.socket (origin-file)
References: systemd-remount-fs.service (origin-file)
References: systemd-sysusers.service (origin-file)
References: time-sync.target (origin-file)
References: system.slice (origin-file)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /run/systemd/timesync (origin-file)
RequiresMountsFor: /var/lib/systemd/timesync (origin-file)
RequiresMountsFor: /tmp (origin-file)
RequiresMountsFor: /var/tmp (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: always
NotifyAccess: main
NotifyState: unknown
Main PID: 518
Main PID Known: yes
Main PID Alien: no
RestartSec: 0
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 3min
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: yes
PrivateDevices: yes
ProtectKernelTunables: yes
ProtectKernelModules: yes
ProtectControlGroups: yes
PrivateNetwork: no
PrivateUsers: no
ProtectHome: yes
ProtectSystem: strict
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: yes
RestrictRealtime: yes
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
RuntimeDirectory: systemd/timesync
StateDirectoryMode: 0755
StateDirectory: systemd/timesync
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
CapabilityBoundingSet: cap_sys_time
AmbientCapabilities: cap_sys_time
User: systemd-timesync
DynamicUser: no
LockPersonality: yes
SystemCallFilter: waitid getitimer pipe2 fstatat64 getpeername renameat2 sysinfo mmap getrlimit msgrcv chown sync_file_range2 open removexattr recvfrom signal getcpu ftruncate64 getuid32 mknodat unshare getrusage get_thread_area nice sigsuspend sched_setparam getgid32 mq_timedreceive waitpid restart_syscall setrlimit read sched_getaffinity fadvise64_64 shmctl futex fchmod setsockopt fstatfs64 msgctl ugetrlimit clock_adjtime utime uname recvmmsg accept4 setfsgid arch_prctl getresuid32 pwrite64 set_thread_area oldolduname move_pages sendfile request_key getegid32 lremovexattr clock_gettime setfsuid recv fork fchown sigaltstack getgid exit_group statfs64 lsetxattr linkat setgid select fstat64 truncate setregid32 setresgid32 timerfd_create oldfstat set_tid_address userfaultfd setpriority bind shutdown timer_delete sched_rr_get_interval rt_sigtimedwait lgetxattr kill capset unlinkat pwritev2 time _newselect tkill _llseek epoll_ctl_old stime openat sync fchownat nanosleep copy_file_range getsockname lseek setns setgroups rt_sigpending readlinkat mkdir mq_notify lstat preadv2 setresuid32 io_cancel getpgid fcntl64 fchmodat access accept socketpair rmdir exit sched_getattr getegid flock ioctl getgroups32 timer_getoverrun timer_settime fgetxattr epoll_create oldstat sendmmsg fsync migrate_pages timerfd_gettime splice shmget mq_unlink getrandom set_tls io_getevents statfs write msgget sched_get_priority_max setgid32 getresuid shmdt truncate64 tgkill connect times send rt_sigqueueinfo setxattr munlockall lchown lchown32 oldlstat dup2 sigpending preadv inotify_init pause getresgid sendto stat vfork setuid32 dup3 fstat settimeofday signalfd getxattr setsid epoll_create1 signalfd4 fdatasync clone symlinkat readdir geteuid sync_file_range keyctl pipe eventfd semtimedop prctl setresuid rt_sigsuspend get_robust_list readlink link ioprio_get setresgid mq_timedsend gettid mprotect name_to_handle_at process_vm_readv utimes socketcall sched_get_priority_min ftruncate clock_getres inotify_rm_watch getppid setfsuid32 msgsnd alarm execve fremovexattr fchown32 prlimit64 creat sendfile64 olduname sched_setattr pwritev memfd_create mbind rename renameat getcwd socket fstatfs epoll_wait mq_open tee chdir sched_yield personality sched_getscheduler epoll_pwait flistxattr mmap2 clock_nanosleep rt_sigaction sendmsg capget semctl getsid rt_sigreturn readv sched_setscheduler chmod getresgid32 symlink clock_settime mlock2 setregid llistxattr getgroups mlock ppoll rt_tgsigqueueinfo set_mempolicy mlockall close fcntl futimesat unlink fsetxattr mkdirat syncfs vmsplice mknod inotify_init1 lstat64 sched_getparam sigaction fallocate getsockopt getdents getuid setpgid listxattr setgroups32 getpid setfsgid32 umask getdents64 execveat eventfd2 io_destroy setitimer fadvise64 ipc recvmsg add_key swapcontext timer_gettime timer_create semget mq_getsetattr wait4 setreuid inotify_add_watch stat64 madvise adjtimex munlock listen dup utimensat statx writev set_robust_list pselect6 setreuid32 semop epoll_ctl ioprio_set get_mempolicy getpriority brk membarrier getpgrp sigprocmask shmat mremap poll epoll_wait_old sigreturn munmap sched_setaffinity faccessat kcmp pread64 gettimeofday io_setup newfstatat geteuid32 remap_file_pages io_submit msync timerfd_settime setuid rt_sigprocmask chown32 process_vm_writev fchdir readahead
SystemCallArchitectures: native
RestrictNamespaces:
SystemCallErrorNumber: EPERM
-> ExecStart:
Command Line: /lib/systemd/systemd-timesyncd
Status Text: Synchronized to time server for the first time 46.175.224.7:123 (2.debian.pool.ntp.org).
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=closed
Delegate=no
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device
Invocation ID: c2bb641e2544469d8332a1b6936cf825
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
Following Set Member: dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device
Following Set Member: dev-sdb1.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
Found: found-udev
-> Unit keyboard-setup.service:
Description: Set the console keyboard layout
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/keyboard-setup.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: keyboard-setup.service
Invocation ID: d55437315f1548db8faef3db516dd201
Fragment Path: /lib/systemd/system/keyboard-setup.service
ConditionPathExists: /bin/setupcon untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Wants: local-fs-pre.target (origin-file)
WantedBy: sysinit.target (destination-file)
Before: plymouth-start.service (destination-file)
Before: local-fs-pre.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: local-fs-pre.target (origin-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: plymouth-start.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/console-setup/keyboard-setup.sh
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit iscsi.service:
Description: iscsi.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: iscsi.service
Before: blk-availability.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
-> Unit xrdp.service:
Description: xrdp daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:33 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:33 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/xrdp.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: xrdp.service
Invocation ID: d2f8138ec0794fb7848d1a0d4ea93ced
Documentation: man:xrdp(8)
Documentation: man:xrdp.ini(5)
Fragment Path: /lib/systemd/system/xrdp.service
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: -.mount (origin-file origin-path)
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Requires: xrdp-sesman.service (origin-file)
WantedBy: multi-user.target (destination-file)
BoundBy: xrdp-sesman.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: systemd-journald.socket (origin-file)
After: xrdp-sesman.service (origin-file)
After: system.slice (origin-file)
After: basic.target (origin-default)
After: -.mount (origin-file origin-path)
After: network.target (origin-file)
After: sysinit.target (origin-default)
References: xrdp-sesman.service (origin-file)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
References: network.target (origin-file)
References: systemd-journald.socket (origin-file)
ReferencedBy: xrdp-sesman.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
RequiresMountsFor: /run/xrdp (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: yes
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 720
Main PID Known: yes
Main PID Alien: no
PIDFile: /run/xrdp/xrdp.pid
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/sysconfig/xrdp
EnvironmentFile: -/etc/default/xrdp
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
RuntimeDirectory: xrdp
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: xrdp
Group: xrdp
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /bin/sh /usr/share/xrdp/socksetup
-> ExecStart:
Command Line: /usr/sbin/xrdp $XRDP_OPTIONS
-> ExecStop:
Command Line: /usr/sbin/xrdp $XRDP_OPTIONS --kill
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-journald-dev-log.socket:
Description: Journal Socket (/dev/log)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-journald-dev-log.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-journald-dev-log.socket
Invocation ID: 6de96fa8bbcf4f76b60a30458ac1f79c
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journald-dev-log.socket
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
WantedBy: systemd-journald.service (destination-file)
WantedBy: sockets.target (destination-file)
Before: systemd-journald.service (origin-implicit destination-file)
Before: sockets.target (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-journald.service (origin-implicit destination-file)
References: systemd-journald.service (origin-implicit)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
References: sockets.target (origin-file)
ReferencedBy: systemd-journald.service (destination-file)
ReferencedBy: sockets.target (destination-file)
RequiresMountsFor: /run/systemd/journal/dev-log (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: yes
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: systemd-journald-dev-log.socket
SELinuxContextFromNet: no
ReceiveBuffer: 8388608
SendBuffer: 8388608
ListenDatagram: /run/systemd/journal/dev-log
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
Symlinks: /dev/log
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-logind.service:
Description: Login Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 20:09:25 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-logind.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids bpf-firewall
Name: systemd-logind.service
Invocation ID: 0e73633086944adaa2462d78fa4e2b3b
Documentation: man:systemd-logind.service(8)
Documentation: man:logind.conf(5)
Documentation: https://www.freedesktop.org/wiki/Software/systemd/logind
Documentation: https://www.freedesktop.org/wiki/Software/systemd/multiseat
Fragment Path: /lib/systemd/system/systemd-logind.service
ConditionPathExists: /lib/systemd/system/dbus.service untested
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: dbus.socket (origin-file)
Requires: system.slice (origin-file)
Requires: sysinit.target (origin-default)
Wants: user.slice (origin-file)
Wants: dbus.socket (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: session-4.scope (destination-file)
Before: libvirtd.service (destination-file)
Before: multi-user.target (destination-default)
Before: unattended-upgrades.service (destination-file)
Before: session-3.scope (destination-file)
After: system.slice (origin-file)
After: nss-user-lookup.target (origin-file)
After: basic.target (origin-default)
After: systemd-journald.socket (origin-file)
After: user.slice (origin-file)
After: dbus.socket (origin-file)
After: sysinit.target (origin-default)
References: sysinit.target (origin-default)
References: user.slice (origin-file)
References: basic.target (origin-default)
References: dbus.socket (origin-file)
References: system.slice (origin-file)
References: shutdown.target (origin-default)
References: nss-user-lookup.target (origin-file)
References: systemd-journald.socket (origin-file)
ReferencedBy: session-4.scope (destination-file)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: unattended-upgrades.service (destination-file)
ReferencedBy: session-3.scope (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: dbus
Restart: always
NotifyAccess: main
NotifyState: unknown
Main PID: 575
Main PID Known: yes
Main PID Alien: no
BusName: org.freedesktop.login1
Bus Name Good: yes
RestartSec: 0
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 3min
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: yes
RestrictRealtime: yes
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 524288
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
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_admin cap_sys_tty_config cap_audit_control cap_mac_admin
DynamicUser: no
LockPersonality: yes
SystemCallFilter: timer_settime utime recvfrom setuid32 kcmp preadv access getsockname getgid32 setrlimit gettimeofday select fcntl64 mkdir io_submit sched_setscheduler setresuid32 alarm utimes getuid migrate_pages readlink mknodat timer_create flock sync_file_range2 lseek clock_getres kill mlock epoll_create1 swapcontext fsetxattr times execve renameat2 geteuid32 mq_notify ppoll oldlstat flistxattr open umask sendto shmctl getgid lstat64 getdents64 inotify_add_watch getresuid epoll_create sendmsg sysinfo get_thread_area exit fadvise64_64 epoll_ctl brk getxattr stat munlockall creat msync oldstat lgetxattr getrusage getuid32 mmap2 clone madvise get_mempolicy lchown timer_getoverrun chdir sched_setattr getgroups32 tgkill fgetxattr fchmodat getsid setgid ioprio_set sched_get_priority_max sync_file_range tee pwritev mmap getsockopt sendfile64 capget userfaultfd msgsnd inotify_init setreuid sigaltstack fdatasync waitpid pwritev2 readahead fstatfs64 set_thread_area stat64 connect sendmmsg shmat statfs setfsgid32 mlock2 remap_file_pages poll _llseek setpriority vfork getpriority newfstatat getpgid ugetrlimit oldfstat time setresuid mlockall mq_open add_key io_setup removexattr nice memfd_create rt_sigsuspend rename signal getpid recvmmsg capset ioprio_get fcntl link recv mbind sched_getaffinity keyctl request_key epoll_wait ipc utimensat lremovexattr epoll_wait_old pipe2 eventfd rt_sigqueueinfo uname io_getevents truncate64 shmdt statfs64 restart_syscall bind io_cancel unlinkat clock_nanosleep name_to_handle_at getrlimit lstat arch_prctl process_vm_readv semop getpgrp read getrandom fstat eventfd2 getresgid32 epoll_pwait symlinkat send sched_getparam ftruncate64 sync geteuid sched_yield setuid fork sched_getattr getresuid32 clock_gettime fadvise64 getegid32 dup3 move_pages chown set_robust_list inotify_init1 rt_sigaction close setfsuid32 shutdown exit_group renameat truncate msgctl openat getresgid set_tls getcpu socket rt_tgsigqueueinfo mq_getsetattr sched_rr_get_interval symlink llistxattr pipe setregid32 setitimer sched_get_priority_min fchownat setfsgid setgid32 preadv2 pwrite64 socketcall timerfd_create tkill dup2 setresgid32 munlock setxattr sigsuspend setregid fstatat64 ftruncate sendfile getcwd futex membarrier timerfd_settime wait4 setns sigreturn setfsuid dup faccessat setgroups32 ioctl prctl unlink chown32 timer_delete getpeername set_mempolicy mq_unlink pread64 semget setsockopt fallocate rmdir fstat64 prlimit64 process_vm_writev shmget mq_timedreceive setreuid32 sigpending set_tid_address olduname write futimesat getdents readlinkat io_destroy nanosleep semtimedop oldolduname copy_file_range rt_sigpending sched_getscheduler munmap setpgid msgrcv rt_sigtimedwait fchown writev listxattr mq_timedsend get_robust_list setresgid fchmod getitimer setsid splice pselect6 fremovexattr inotify_rm_watch mknod execveat semctl listen readdir sched_setaffinity _newselect linkat statx setgroups chmod fstatfs getgroups readv getegid recvmsg sigprocmask rt_sigreturn timerfd_gettime fchown32 socketpair rt_sigprocmask mremap accept signalfd lsetxattr mprotect sigaction vmsplice mkdirat unshare personality pause accept4 timer_gettime sched_setparam fchdir syncfs epoll_ctl_old waitid fsync getppid gettid lchown32 signalfd4 msgget
SystemCallArchitectures: native
RestrictNamespaces:
SystemCallErrorNumber: EPERM
-> ExecStart:
Command Line: /lib/systemd/systemd-logind
Status Text: Processing requests...
File Descriptor Store Max: 512
File Descriptor Store Current: 0
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
IPAddressDeny=0.0.0.0/0
IPAddressDeny=::/0
-> Unit sound.target:
Description: Sound Card
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sound.target
Invocation ID: 5f2a3dee2504437888b8df595417990e
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/sound.target
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
WantedBy: sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device (destination-udev)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
References: shutdown.target (origin-default)
ReferencedBy: sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device (destination-udev)
StopWhenUnneeded: yes
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Invocation ID: eac4adcde6df4f56a9f0da8b1aa99077
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart2.device
Following Set Member: dev-sda2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart2.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d02.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
Found: found-udev
-> Unit systemd-udevd.service:
Description: udev Kernel Device Manager
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-udevd.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids bpf-firewall
Name: systemd-udevd.service
Invocation ID: 9876dc4faa2146cfb6f4907bed3444e7
Documentation: man:systemd-udevd.service(8)
Documentation: man:udev(7)
Fragment Path: /lib/systemd/system/systemd-udevd.service
ConditionPathIsReadWrite: /sys untested
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
Requires: system.slice (origin-file)
Wants: systemd-udevd-kernel.socket (origin-file)
Wants: systemd-udevd-control.socket (origin-file)
WantedBy: systemd-udev-trigger.service (destination-file)
WantedBy: ifupdown-pre.service (destination-file)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
Before: plymouth-start.service (destination-file)
Before: systemd-networkd.service (destination-file)
After: systemd-journald.socket (origin-file)
After: systemd-sysusers.service (origin-file)
After: systemd-udevd-kernel.socket (origin-file destination-implicit)
After: systemd-hwdb-update.service (origin-file)
After: system.slice (origin-file)
After: systemd-udevd-control.socket (origin-file destination-implicit)
After: systemd-tmpfiles-setup-dev.service (destination-file)
TriggeredBy: systemd-udevd-kernel.socket (origin-file destination-implicit)
TriggeredBy: systemd-udevd-control.socket (origin-file destination-implicit)
References: systemd-udevd-control.socket (origin-file)
References: systemd-udevd-kernel.socket (origin-file)
References: systemd-journald.socket (origin-file)
References: sysinit.target (origin-file)
References: systemd-hwdb-update.service (origin-file)
References: systemd-sysusers.service (origin-file)
References: system.slice (origin-file)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: systemd-udevd-control.socket (destination-implicit)
ReferencedBy: ifupdown-pre.service (destination-file)
ReferencedBy: systemd-udevd-kernel.socket (destination-implicit)
ReferencedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ReferencedBy: systemd-udev-trigger.service (destination-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: plymouth-start.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: always
NotifyAccess: main
NotifyState: unknown
Main PID: 348
Main PID Known: yes
Main PID Alien: no
RestartSec: 0
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 3min
KillMode: mixed
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: yes
RestrictRealtime: yes
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
OOMScoreAdjust: -1000
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: yes
SystemCallArchitectures: native
-> ExecStart:
Command Line: /lib/systemd/systemd-udevd
Status Text: Processing with 40 children at max
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
IPAddressDeny=0.0.0.0/0
IPAddressDeny=::/0
-> Unit systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service:
Description: File System Check on /dev/disk/by-uuid/340f09ca-7a41-472e-99e2-d72aecd7517f
Instance: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system-systemd\x2dfsck.slice
CGroup: /system.slice/system-systemd\x2dfsck.slice/systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service
CGroup realized: yes
CGroup realized mask: memory pids
CGroup own mask: memory pids
Name: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service
Invocation ID: 1064066a0c574028a74dc488fbd51d7b
Documentation: man:systemd-fsck at .service(8)
Fragment Path: /lib/systemd/system/systemd-fsck at .service
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system-systemd\x2dfsck.slice (origin-file)
Wants: systemd-fsckd.socket (origin-file)
BindsTo: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device (origin-file)
RequiredBy: boot.mount (destination-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
Before: systemd-quotacheck.service (origin-file)
Before: boot.mount (destination-file)
After: system-systemd\x2dfsck.slice (origin-file)
After: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device (origin-file)
After: systemd-fsckd.socket (origin-file)
After: local-fs-pre.target (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-fsck-root.service (origin-file)
References: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device (origin-file)
References: local-fs-pre.target (origin-file)
References: system-systemd\x2dfsck.slice (origin-file)
References: shutdown.target (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-fsck-root.service (origin-file)
References: systemd-quotacheck.service (origin-file)
References: systemd-fsckd.socket (origin-file)
ReferencedBy: boot.mount (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: infinity
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-fsck /dev/disk/by-uuid/340f09ca-7a41-472e-99e2-d72aecd7517f
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-initctl.socket:
Description: initctl Compatibility Named Pipe
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-initctl.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-initctl.socket
Invocation ID: f6381af571934c1badc613eb7a61c793
Documentation: man:systemd-initctl.service(8)
Fragment Path: /lib/systemd/system/systemd-initctl.socket
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
WantedBy: sockets.target (destination-file)
Before: sockets.target (origin-file)
Before: systemd-initctl.service (origin-implicit)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-initctl.service (origin-implicit)
References: -.mount (origin-file origin-path)
References: systemd-initctl.service (origin-implicit)
References: system.slice (origin-file)
References: sockets.target (origin-file)
ReferencedBy: sockets.target (destination-file)
RequiresMountsFor: /run/initctl (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: systemd-initctl.socket
SELinuxContextFromNet: no
ListenFIFO: /run/initctl
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
Symlinks: /dev/initctl
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit network-pre.target:
Description: Network (Pre)
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: network-pre.target
Documentation: man:systemd.special(7)
Documentation: https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
Fragment Path: /lib/systemd/system/network-pre.target
Conflicts: shutdown.target (origin-default)
Before: systemd-networkd.service (destination-file)
Before: network.target (destination-file)
Before: shutdown.target (origin-default)
Before: ifup at enp0s25.service (destination-file)
Before: networking.service (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: network.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb.device
Invocation ID: 4e3f622c5dba4eb79a560dee8a5cac11
Following Set Member: dev-sdb.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb
Found: found-udev
-> Unit lvm2-lvmpolld.socket:
Description: LVM2 poll daemon socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/lvm2-lvmpolld.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: lvm2-lvmpolld.socket
Invocation ID: cfad1085f90f47448ee2cbfaf95fef5f
Documentation: man:lvmpolld(8)
Fragment Path: /lib/systemd/system/lvm2-lvmpolld.socket
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequiredBy: lvm2-lvmpolld.service (destination-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: lvm2-lvmpolld.service (origin-implicit destination-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: lvm2-lvmpolld.service (origin-implicit)
References: lvm2-lvmpolld.service (origin-implicit)
References: shutdown.target (origin-file)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: lvm2-lvmpolld.service (destination-file)
RequiresMountsFor: /run/lvm/lvmpolld.socket (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: yes
Writable: no
FileDescriptorName: lvm2-lvmpolld.socket
SELinuxContextFromNet: no
ListenStream: /run/lvm/lvmpolld.socket
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dm-event.service:
Description: Device-mapper event daemon
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: dm-event.service
Documentation: man:dmeventd(8)
Fragment Path: /lib/systemd/system/dm-event.service
Requires: system.slice (origin-file)
Requires: dm-event.socket (origin-file)
Conflicts: shutdown.target (origin-file)
Before: lvm2-monitor.service (destination-file)
Before: local-fs-pre.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: dm-event.socket (origin-file destination-implicit)
TriggeredBy: dm-event.socket (destination-implicit)
References: local-fs-pre.target (origin-file)
References: shutdown.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: dm-event.socket (origin-file)
ReferencedBy: dm-event.socket (destination-implicit)
ReferencedBy: lvm2-monitor.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
PIDFile: /run/dmeventd.pid
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
Environment: SD_ACTIVATION=1
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
OOMScoreAdjust: -1000
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /sbin/dmeventd -f
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-hwdb-update.service:
Description: Rebuild Hardware Database
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-hwdb-update.service
Documentation: man:hwdb(7)
Documentation: man:systemd-hwdb(8)
Fragment Path: /lib/systemd/system/systemd-hwdb-update.service
ConditionDirectoryNotEmpty: |/etc/udev/hwdb.d untested
ConditionPathExists: |/etc/udev/hwdb.bin untested
ConditionPathExists: |!/lib/udev/hwdb.bin untested
ConditionNeedsUpdate: /etc untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: no
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: systemd-udevd.service (destination-file)
Before: systemd-update-done.service (origin-file)
After: systemd-remount-fs.service (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: systemd-remount-fs.service (origin-file)
References: shutdown.target (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-update-done.service (origin-file)
References: system.slice (origin-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: systemd-udevd.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemd-hwdb update
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-journald.socket:
Description: Journal Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-journald.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-journald.socket
Invocation ID: 1a4925b5c36a45d2820acd7eee6e8b25
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journald.socket
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequiredBy: systemd-journald.service (destination-file)
WantedBy: systemd-journald.service (destination-file)
WantedBy: sockets.target (destination-file)
Before: systemd-sysusers.service (destination-file)
Before: systemd-hwdb-update.service (destination-file)
Before: systemd-journald.service (origin-implicit destination-file)
Before: systemd-machine-id-commit.service (destination-file)
Before: systemd-random-seed.service (destination-file)
Before: etc-setserial.service (destination-file)
Before: blk-availability.service (destination-file)
Before: systemd-tmpfiles-setup.service (destination-file)
Before: auditd.service (destination-file)
Before: sys-kernel-config.mount (destination-file)
Before: lvm2-lvmpolld.service (destination-file)
Before: keyboard-setup.service (destination-file)
Before: sys-kernel-debug.mount (destination-file)
Before: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
Before: proc-sys-fs-binfmt_misc.mount (destination-file)
Before: getty at tty1.service (destination-file)
Before: apt-daily-upgrade.service (destination-file)
Before: bind9.service (destination-file)
Before: setserial.service (destination-file)
Before: mdmonitor.service (destination-file)
Before: apparmor.service (destination-file)
Before: xrdp-sesman.service (destination-file)
Before: getty-static.service (destination-file)
Before: systemd-logind.service (destination-file)
Before: systemd-ask-password-console.service (destination-file)
Before: dbus.service (destination-file)
Before: virtlogd.service (destination-file)
Before: run-user-0.mount (destination-file)
Before: systemd-udevd.service (destination-file)
Before: systemd-timesyncd.service (destination-file)
Before: apt-daily.service (destination-file)
Before: console-setup.service (destination-file)
Before: plymouth-quit-wait.service (destination-file)
Before: systemd-modules-load.service (destination-file)
Before: heartbeat.service (destination-file)
Before: systemd-ask-password-plymouth.service (destination-file)
Before: sys-fs-fuse-connections.mount (destination-file)
Before: libvirt-guests.service (destination-file)
Before: fail2ban.service (destination-file)
Before: systemd-fsckd.service (destination-file)
Before: systemd-tmpfiles-setup-dev.service (destination-file)
Before: logrotate.service (destination-file)
Before: plymouth-read-write.service (destination-file)
Before: boot.mount (destination-file)
Before: logd.service (destination-file)
Before: drbd.service (destination-file)
Before: systemd-update-utmp.service (destination-file)
Before: systemd-rfkill.service (destination-file)
Before: uuidd.service (destination-file)
Before: sockets.target (origin-file)
Before: ifup at enp0s25.service (destination-file)
Before: rsync.service (destination-file)
Before: man-db.service (destination-file)
Before: lvm2-monitor.service (destination-file)
Before: systemd-networkd.service (destination-file)
Before: systemd-journal-flush.service (destination-file)
Before: libvirtd.service (destination-file)
Before: zabbix-agent2.service (destination-file)
Before: exim4.service (destination-file)
Before: xrdp.service (destination-file)
Before: ifupdown-pre.service (destination-file)
Before: cron.service (destination-file)
Before: ssh.service (destination-file)
Before: dev-mqueue.mount (destination-file)
Before: dev-hugepages.mount (destination-file)
Before: serial-getty at ttyS0.service (destination-file)
Before: dm-event.service (destination-file)
Before: corosync.service (destination-file)
Before: virtlockd.service (destination-file)
Before: systemd-initctl.service (destination-file)
Before: isc-dhcp-server.service (destination-file)
Before: pacemaker.service (destination-file)
Before: systemd-ask-password-wall.service (destination-file)
Before: systemd-udev-trigger.service (destination-file)
Before: selinux-autorelabel-mark.service (destination-file)
Before: systemd-fsck-root.service (destination-file)
Before: plymouth-quit.service (destination-file)
Before: rc-local.service (destination-file)
Before: systemd-user-sessions.service (destination-file)
Before: lightdm.service (destination-file)
Before: systemd-quotacheck.service (destination-file)
Before: systemd-remount-fs.service (destination-file)
Before: systemd-update-utmp-runlevel.service (destination-file)
Before: user-runtime-dir at 0.service (destination-file)
Before: systemd-binfmt.service (destination-file)
Before: user at 0.service (destination-file)
Before: udisks2.service (destination-file)
Before: plymouth-start.service (destination-file)
Before: networking.service (destination-file)
Before: systemd-tmpfiles-clean.service (destination-file)
Before: unattended-upgrades.service (destination-file)
Before: kmod-static-nodes.service (destination-file)
Before: systemd-sysctl.service (destination-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-journald.service (origin-implicit destination-file)
References: sockets.target (origin-file)
References: systemd-journald.service (origin-implicit)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
ReferencedBy: auditd.service (destination-file)
ReferencedBy: user-runtime-dir at 0.service (destination-file)
ReferencedBy: virtlogd.service (destination-file)
ReferencedBy: lvm2-lvmpolld.service (destination-file)
ReferencedBy: systemd-tmpfiles-clean.service (destination-file)
ReferencedBy: blk-availability.service (destination-file)
ReferencedBy: systemd-remount-fs.service (destination-file)
ReferencedBy: ifupdown-pre.service (destination-file)
ReferencedBy: apt-daily.service (destination-file)
ReferencedBy: rsync.service (destination-file)
ReferencedBy: unattended-upgrades.service (destination-file)
ReferencedBy: run-user-0.mount (destination-file)
ReferencedBy: libvirt-guests.service (destination-file)
ReferencedBy: systemd-initctl.service (destination-file)
ReferencedBy: systemd-udevd.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-file)
ReferencedBy: exim4.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: apparmor.service (destination-file)
ReferencedBy: corosync.service (destination-file)
ReferencedBy: bind9.service (destination-file)
ReferencedBy: mdmonitor.service (destination-file)
ReferencedBy: setserial.service (destination-file)
ReferencedBy: systemd-hwdb-update.service (destination-file)
ReferencedBy: lightdm.service (destination-file)
ReferencedBy: plymouth-start.service (destination-file)
ReferencedBy: uuidd.service (destination-file)
ReferencedBy: systemd-quotacheck.service (destination-file)
ReferencedBy: systemd-update-utmp.service (destination-file)
ReferencedBy: apt-daily-upgrade.service (destination-file)
ReferencedBy: systemd-modules-load.service (destination-file)
ReferencedBy: man-db.service (destination-file)
ReferencedBy: systemd-journald.service (destination-file)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file)
ReferencedBy: virtlockd.service (destination-file)
ReferencedBy: systemd-sysusers.service (destination-file)
ReferencedBy: getty at tty1.service (destination-file)
ReferencedBy: sockets.target (destination-file)
ReferencedBy: systemd-tmpfiles-setup.service (destination-file)
ReferencedBy: systemd-udev-trigger.service (destination-file)
ReferencedBy: plymouth-read-write.service (destination-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: ssh.service (destination-file)
ReferencedBy: proc-sys-fs-binfmt_misc.mount (destination-file)
ReferencedBy: dev-mqueue.mount (destination-file)
ReferencedBy: systemd-rfkill.service (destination-file)
ReferencedBy: systemd-logind.service (destination-file)
ReferencedBy: etc-setserial.service (destination-file)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: udisks2.service (destination-file)
ReferencedBy: plymouth-quit-wait.service (destination-file)
ReferencedBy: systemd-fsck-root.service (destination-file)
ReferencedBy: cron.service (destination-file)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: systemd-journal-flush.service (destination-file)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
ReferencedBy: systemd-sysctl.service (destination-file)
ReferencedBy: getty-static.service (destination-file)
ReferencedBy: pacemaker.service (destination-file)
ReferencedBy: xrdp.service (destination-file)
ReferencedBy: dev-hugepages.mount (destination-file)
ReferencedBy: dm-event.service (destination-file)
ReferencedBy: systemd-binfmt.service (destination-file)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
ReferencedBy: heartbeat.service (destination-file)
ReferencedBy: xrdp-sesman.service (destination-file)
ReferencedBy: logd.service (destination-file)
ReferencedBy: rc-local.service (destination-file)
ReferencedBy: systemd-machine-id-commit.service (destination-file)
ReferencedBy: zabbix-agent2.service (destination-file)
ReferencedBy: systemd-fsckd.service (destination-file)
ReferencedBy: drbd.service (destination-file)
ReferencedBy: plymouth-quit.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: sys-kernel-config.mount (destination-file)
ReferencedBy: user at 0.service (destination-file)
ReferencedBy: kmod-static-nodes.service (destination-file)
ReferencedBy: sys-fs-fuse-connections.mount (destination-file)
ReferencedBy: systemd-ask-password-wall.service (destination-file)
ReferencedBy: keyboard-setup.service (destination-file)
ReferencedBy: systemd-user-sessions.service (destination-file)
ReferencedBy: systemd-random-seed.service (destination-file)
ReferencedBy: boot.mount (destination-file)
ReferencedBy: lvm2-monitor.service (destination-file)
ReferencedBy: logrotate.service (destination-file)
ReferencedBy: sys-kernel-debug.mount (destination-file)
ReferencedBy: selinux-autorelabel-mark.service (destination-file)
ReferencedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ReferencedBy: dbus.service (destination-file)
ReferencedBy: systemd-ask-password-console.service (destination-file)
ReferencedBy: fail2ban.service (destination-file)
ReferencedBy: console-setup.service (destination-file)
ReferencedBy: systemd-ask-password-plymouth.service (destination-file)
RequiresMountsFor: /run/systemd/journal/stdout (origin-file)
RequiresMountsFor: /run/systemd/journal/socket (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: yes
PassSecurity: yes
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: systemd-journald.socket
SELinuxContextFromNet: no
ReceiveBuffer: 8388608
ListenStream: /run/systemd/journal/stdout
ListenDatagram: /run/systemd/journal/socket
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-machine-id-commit.service:
Description: Commit a transient machine-id on disk
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-machine-id-commit.service
Documentation: man:systemd-machine-id-commit.service(8)
Fragment Path: /lib/systemd/system/systemd-machine-id-commit.service
ConditionPathIsMountPoint: /etc/machine-id untested
ConditionPathIsReadWrite: /etc untested
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: no
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: shutdown.target (origin-file)
After: system.slice (origin-file)
After: local-fs.target (origin-file)
After: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: local-fs.target (origin-file)
References: shutdown.target (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 30s
TimeoutStopSec: 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemd-machine-id-setup --commit
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit system-serial\x2dgetty.slice:
Description: system-serial\x2dgetty.slice
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/system-serial\x2dgetty.slice
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup enabled mask: memory pids
CGroup own mask: memory pids
CGroup members mask: memory pids
Name: system-serial\x2dgetty.slice
Invocation ID: f23889a145ab43d7b1518f4741b0576c
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-implicit)
RequiredBy: serial-getty at ttyS0.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: serial-getty at ttyS0.service (destination-file)
After: system.slice (origin-implicit)
References: system.slice (origin-implicit)
References: shutdown.target (origin-default)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Slice State: active
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
-> Unit serial-getty at ttyS0.service:
Description: Serial Getty on ttyS0
Instance: ttyS0
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 20:03:13 CET
Inactive Exit Timestamp: Wed 2020-12-16 20:03:13 CET
Active Enter Timestamp: Wed 2020-12-16 20:03:13 CET
Active Exit Timestamp: Wed 2020-12-16 20:03:13 CET
Inactive Enter Timestamp: Wed 2020-12-16 20:03:13 CET
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system-serial\x2dgetty.slice
CGroup: /system.slice/system-serial\x2dgetty.slice/serial-getty at ttyS0.service
CGroup realized: yes
CGroup realized mask: memory pids
CGroup own mask: memory pids
Name: serial-getty at ttyS0.service
Invocation ID: 859d975fdcb94caf9a68fd43d25a8411
Documentation: man:agetty(8)
Documentation: man:systemd-getty-generator(8)
Documentation: http://0pointer.de/blog/projects/serial-console.html
Fragment Path: /lib/systemd/system/serial-getty at .service
DropIn Path: /etc/systemd/system/serial-getty at ttyS0.service.d/override.conf
Condition Timestamp: Wed 2020-12-16 20:03:13 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 20:03:13 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system-serial\x2dgetty.slice (origin-file)
BindsTo: dev-ttyS0.device (origin-file)
WantedBy: getty.target (destination-file)
Conflicts: shutdown.target (origin-default)
Conflicts: rescue.service (origin-file)
Before: getty.target (origin-file destination-default)
Before: shutdown.target (origin-default)
Before: rescue.service (origin-file)
After: systemd-journald.socket (origin-file)
After: system-serial\x2dgetty.slice (origin-file)
After: basic.target (origin-default)
After: getty-pre.target (origin-file)
After: dev-ttyS0.device (origin-file)
After: sysinit.target (origin-default)
After: systemd-user-sessions.service (origin-file)
After: rc-local.service (origin-file)
After: plymouth-quit-wait.service (origin-file)
References: plymouth-quit-wait.service (origin-file)
References: getty-pre.target (origin-file)
References: shutdown.target (origin-default)
References: rescue.service (origin-file)
References: systemd-journald.socket (origin-file)
References: basic.target (origin-default)
References: rc-local.service (origin-file)
References: sysinit.target (origin-default)
References: dev-ttyS0.device (origin-file)
References: system-serial\x2dgetty.slice (origin-file)
References: getty.target (origin-file)
References: systemd-user-sessions.service (origin-file)
ReferencedBy: getty.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: idle
Restart: always
NotifyAccess: none
NotifyState: unknown
Main PID: 1490
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: yes
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
TTYPath: /dev/ttyS0
TTYReset: yes
TTYVHangup: yes
TTYVTDisallocate: no
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
UtmpIdentifier: ttyS0
LockPersonality: no
-> ExecStart:
Command Line: /sbin/agetty --autologin root -8 --keep-baud ttyS0 115200 xterm-256color
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-journald.service:
Description: Journal Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-journald.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids bpf-firewall
Name: systemd-journald.service
Invocation ID: 1a14dbce4174479d82669bebca182420
Documentation: man:systemd-journald.service(8)
Documentation: man:journald.conf(5)
Fragment Path: /lib/systemd/system/systemd-journald.service
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: systemd-journald.socket (origin-file)
Requires: system.slice (origin-file)
Wants: systemd-journald.socket (origin-file)
Wants: systemd-journald-dev-log.socket (origin-file)
Wants: systemd-journald-audit.socket (origin-file)
RequiredBy: systemd-journal-flush.service (destination-file)
WantedBy: sysinit.target (destination-file)
Before: systemd-tmpfiles-setup.service (destination-file)
Before: sysinit.target (origin-file)
Before: systemd-journal-flush.service (destination-file)
After: systemd-journald-audit.socket (origin-file destination-implicit)
After: systemd-journald.socket (origin-file destination-implicit)
After: system.slice (origin-file)
After: systemd-journald-dev-log.socket (origin-file destination-implicit)
After: syslog.socket (origin-file)
TriggeredBy: systemd-journald.socket (origin-file destination-implicit)
TriggeredBy: systemd-journald-dev-log.socket (origin-file destination-implicit)
TriggeredBy: systemd-journald-audit.socket (origin-file destination-implicit)
References: systemd-journald-audit.socket (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: systemd-journald-dev-log.socket (origin-file)
References: syslog.socket (origin-file)
ReferencedBy: systemd-journald.socket (destination-implicit)
ReferencedBy: systemd-tmpfiles-setup.service (destination-file)
ReferencedBy: systemd-journal-flush.service (destination-file)
ReferencedBy: systemd-journald-dev-log.socket (destination-implicit)
ReferencedBy: systemd-journald-audit.socket (destination-implicit)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: always
NotifyAccess: main
NotifyState: unknown
Main PID: 328
Main PID Known: yes
Main PID Alien: no
RestartSec: 0
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 3min
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: yes
RestrictRealtime: yes
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 524288
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
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_mac_override cap_syslog
DynamicUser: no
LockPersonality: yes
SystemCallFilter: inotify_add_watch io_destroy getcpu flock set_robust_list msgctl mmap set_tls waitid preadv set_thread_area semtimedop pwrite64 epoll_ctl_old getdents swapcontext setreuid32 sched_get_priority_min alarm getitimer epoll_wait_old timer_delete clock_gettime get_thread_area munlockall timerfd_gettime sendfile64 epoll_pwait fallocate rt_sigtimedwait mq_notify exit_group setns sched_getparam setpriority close getrandom process_vm_writev getrusage getegid request_key setuid dup3 pipe oldlstat getuid32 pwritev ipc msgrcv clock_nanosleep getsockname inotify_init1 sigprocmask set_mempolicy listen faccessat mq_open keyctl sched_getattr utimensat set_tid_address socket fcntl sched_getscheduler setgid copy_file_range sched_setattr nice setresgid32 symlinkat pwritev2 munmap accept fadvise64_64 setsid socketpair select getpgid fchownat getegid32 getuid chdir writev fchdir readv timerfd_create truncate setregid futex geteuid socketcall lstat64 uname shutdown sched_setscheduler lseek mlock shmctl bind sigaltstack timer_settime creat ioctl nanosleep ioprio_get symlink umask getgroups fadvise64 ftruncate getrlimit fchmod sendmmsg timer_getoverrun sched_setaffinity getcwd munlock vfork setfsgid32 dup2 vmsplice sched_rr_get_interval setuid32 utime getresuid32 epoll_ctl getgid lchown mlockall newfstatat execve setgroups32 getxattr setfsgid fsetxattr tee setresgid sigaction epoll_create1 preadv2 time futimesat getgroups32 unshare sysinfo get_mempolicy utimes ugetrlimit mkdir semget setreuid listxattr mremap rt_tgsigqueueinfo lchown32 link recv madvise shmdt fchown32 gettid personality rt_sigsuspend setitimer fcntl64 setgid32 read renameat setfsuid32 chmod clock_getres getgid32 sendfile oldfstat sync fchmodat exit setregid32 clone statfs64 ioprio_set truncate64 sched_get_priority_max sendto process_vm_readv setresuid32 connect mq_timedreceive move_pages readlinkat getresgid rt_sigpending eventfd poll sched_yield eventfd2 fork removexattr epoll_create membarrier name_to_handle_at unlinkat sched_getaffinity io_submit pselect6 wait4 kill tgkill rt_sigaction remap_file_pages memfd_create sigsuspend geteuid32 fremovexattr access mq_getsetattr getsockopt inotify_rm_watch ftruncate64 setsockopt chown32 add_key prctl fdatasync shmget getpriority prlimit64 timer_create open msync lremovexattr rt_sigprocmask openat waitpid accept4 oldstat stat64 gettimeofday flistxattr unlink mbind oldolduname linkat send mprotect chown timer_gettime pipe2 recvfrom execveat setgroups userfaultfd mmap2 rmdir getpid semop signalfd4 fstatat64 capget mq_unlink mknod renameat2 _newselect llistxattr setresuid msgsnd statfs restart_syscall sendmsg io_setup stat migrate_pages pause signalfd sigpending setrlimit signal mknodat readlink dup io_getevents msgget sync_file_range splice epoll_wait ppoll fgetxattr io_cancel setfsuid olduname fsync mq_timedsend getresgid32 readahead getpgrp shmat capset getresuid write timerfd_settime tkill readdir sync_file_range2 fstat syncfs getdents64 sigreturn fchown arch_prctl lstat lgetxattr fstatfs64 getsid pread64 setxattr rt_sigreturn fstat64 semctl fstatfs mkdirat inotify_init lsetxattr times rename sched_setparam recvmsg setpgid mlock2 kcmp recvmmsg rt_sigqueueinfo brk getpeername _llseek statx getppid get_robust_list
SystemCallArchitectures: native
RestrictNamespaces:
SystemCallErrorNumber: EPERM
-> ExecStart:
Command Line: /lib/systemd/systemd-journald
Status Text: Processing requests...
File Descriptor Store Max: 4224
File Descriptor Store Current: 12
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
IPAddressDeny=0.0.0.0/0
IPAddressDeny=::/0
-> Unit graphical.target:
Description: Graphical Interface
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: graphical.target
Name: runlevel5.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/graphical.target
Requires: multi-user.target (origin-file)
Wants: isc-dhcp-server.service (origin-file)
Wants: drbd.service (origin-file)
Wants: exim4.service (origin-file)
Wants: systemd-update-utmp-runlevel.service (origin-file)
Wants: lightdm.service (origin-file)
Wants: udisks2.service (origin-file)
Conflicts: shutdown.target (origin-default)
Conflicts: rescue.target (origin-file)
Conflicts: rescue.service (origin-file)
Before: shutdown.target (origin-default)
Before: systemd-update-utmp-runlevel.service (destination-file)
After: rescue.service (origin-file)
After: drbd.service (origin-default destination-file)
After: isc-dhcp-server.service (origin-default destination-file)
After: rescue.target (origin-file)
After: exim4.service (origin-default destination-file)
After: udisks2.service (origin-default)
After: lightdm.service (origin-file origin-default)
After: multi-user.target (origin-file origin-default)
References: isc-dhcp-server.service (origin-file origin-default)
References: rescue.service (origin-file)
References: rescue.target (origin-file)
References: multi-user.target (origin-file origin-default)
References: systemd-update-utmp-runlevel.service (origin-file)
References: drbd.service (origin-file origin-default)
References: udisks2.service (origin-file origin-default)
References: exim4.service (origin-file origin-default)
References: shutdown.target (origin-default)
References: lightdm.service (origin-file origin-default)
ReferencedBy: isc-dhcp-server.service (destination-file)
ReferencedBy: drbd.service (destination-file)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file)
ReferencedBy: exim4.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> 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
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-platform-serial8250-tty-ttyS3.device
Invocation ID: 2a28888301c2446f9aa40548b501d059
Following Set Member: dev-ttyS3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS3
Found: found-udev
-> Unit multi-user.target:
Description: Multi-User System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:53 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:53 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:53 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: runlevel4.target
Name: runlevel3.target
Name: multi-user.target
Name: runlevel2.target
Invocation ID: b166f6fc83f543b8bfe3f02d4db54146
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/multi-user.target
Condition Timestamp: Wed 2020-12-16 19:59:53 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:53 CET
Assert Result: yes
Requires: basic.target (origin-file)
Wants: plymouth-quit.service (origin-file)
Wants: cron.service (origin-file)
Wants: xrdp-sesman.service (origin-file)
Wants: auditd.service (origin-file)
Wants: rc-local.service (origin-file)
Wants: logd.service (origin-file)
Wants: zabbix-agent2.service (origin-file)
Wants: bind9.service (origin-file)
Wants: networking.service (origin-file)
Wants: systemd-logind.service (origin-file)
Wants: etc-setserial.service (origin-file)
Wants: libvirt-guests.service (origin-file)
Wants: xrdp.service (origin-file)
Wants: getty.target (origin-file)
Wants: dbus.service (origin-file)
Wants: heartbeat.service (origin-file)
Wants: systemd-user-sessions.service (origin-file)
Wants: systemd-ask-password-wall.path (origin-file)
Wants: fail2ban.service (origin-file)
Wants: setserial.service (origin-file)
Wants: ssh.service (origin-file)
Wants: remote-fs.target (origin-file)
Wants: isc-dhcp-server.service (origin-file)
Wants: rsyslog.service (origin-file)
Wants: console-setup.service (origin-file)
Wants: systemd-update-utmp-runlevel.service (origin-file)
Wants: exim4.service (origin-file)
Wants: unattended-upgrades.service (origin-file)
Wants: plymouth-quit-wait.service (origin-file)
Wants: rsync.service (origin-file)
Wants: drbd.service (origin-file)
RequiredBy: graphical.target (destination-file)
Conflicts: rescue.target (origin-file)
Conflicts: rescue.service (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: graphical.target (destination-file destination-default)
Before: systemd-update-utmp-runlevel.service (destination-file)
After: fail2ban.service (origin-default)
After: xrdp.service (origin-default)
After: ssh.service (origin-default)
After: bind9.service (origin-default)
After: setserial.service (origin-default)
After: zabbix-agent2.service (origin-default)
After: rescue.target (origin-file)
After: dbus.service (origin-default)
After: logd.service (origin-default)
After: plymouth-quit.service (origin-default)
After: systemd-logind.service (origin-default)
After: rc-local.service (origin-default)
After: plymouth-quit-wait.service (origin-default)
After: drbd.service (origin-default destination-file)
After: unattended-upgrades.service (origin-default)
After: heartbeat.service (origin-default)
After: systemd-user-sessions.service (origin-default)
After: isc-dhcp-server.service (origin-default destination-file)
After: rsyslog.service (origin-default)
After: etc-setserial.service (origin-default)
After: basic.target (origin-file origin-default)
After: rsync.service (origin-default)
After: xrdp-sesman.service (origin-default)
After: getty.target (origin-default)
After: cron.service (origin-default)
After: rescue.service (origin-file)
After: exim4.service (origin-default destination-file)
After: systemd-networkd.service (destination-file)
After: libvirt-guests.service (origin-default)
References: exim4.service (origin-file origin-default)
References: setserial.service (origin-file origin-default)
References: shutdown.target (origin-default)
References: zabbix-agent2.service (origin-file origin-default)
References: rsync.service (origin-file origin-default)
References: isc-dhcp-server.service (origin-file origin-default)
References: cron.service (origin-file origin-default)
References: rsyslog.service (origin-file origin-default)
References: bind9.service (origin-file origin-default)
References: etc-setserial.service (origin-file origin-default)
References: xrdp.service (origin-file origin-default)
References: systemd-ask-password-wall.path (origin-file)
References: networking.service (origin-file)
References: unattended-upgrades.service (origin-file origin-default)
References: heartbeat.service (origin-file origin-default)
References: console-setup.service (origin-file)
References: remote-fs.target (origin-file)
References: rescue.target (origin-file)
References: plymouth-quit-wait.service (origin-file origin-default)
References: systemd-logind.service (origin-file origin-default)
References: auditd.service (origin-file)
References: dbus.service (origin-file origin-default)
References: getty.target (origin-file origin-default)
References: drbd.service (origin-file origin-default)
References: plymouth-quit.service (origin-file origin-default)
References: rescue.service (origin-file)
References: rc-local.service (origin-file origin-default)
References: systemd-update-utmp-runlevel.service (origin-file)
References: fail2ban.service (origin-file origin-default)
References: logd.service (origin-file origin-default)
References: ssh.service (origin-file origin-default)
References: xrdp-sesman.service (origin-file origin-default)
References: systemd-user-sessions.service (origin-file origin-default)
References: libvirt-guests.service (origin-file origin-default)
References: basic.target (origin-file origin-default)
ReferencedBy: graphical.target (destination-file destination-default)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: exim4.service (destination-file)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-file)
ReferencedBy: drbd.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart2.device
Invocation ID: c79327b39be04765b9562d8deaf9c7ed
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart2.device
Following Set Member: dev-sda2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d02.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
Found: found-udev
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190.device:
Description: TOSHIBA_HDWD120
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190.device
Invocation ID: 6496042a9c414f3caf48a1cc0b0dd4c9
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS.device
Following Set Member: dev-sda.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda
Found: found-udev
-> Unit systemd-sysusers.service:
Description: Create System Users
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-sysusers.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-sysusers.service
Invocation ID: 558da5860da741abb643b1eb01cd29c5
Documentation: man:sysusers.d(5)
Documentation: man:systemd-sysusers.service(8)
Fragment Path: /lib/systemd/system/systemd-sysusers.service
ConditionNeedsUpdate: /etc untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: systemd-timesyncd.service (destination-file)
Before: systemd-update-done.service (origin-file)
Before: systemd-networkd.service (destination-file)
Before: sysinit.target (origin-file)
Before: systemd-tmpfiles-setup.service (destination-file)
Before: shutdown.target (origin-file)
Before: systemd-udevd.service (destination-file)
Before: systemd-tmpfiles-setup-dev.service (destination-file)
After: systemd-journald.socket (origin-file)
After: systemd-remount-fs.service (origin-file)
After: system.slice (origin-file)
References: shutdown.target (origin-file)
References: systemd-remount-fs.service (origin-file)
References: systemd-update-done.service (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: sysinit.target (origin-file)
ReferencedBy: systemd-tmpfiles-setup.service (destination-file)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: systemd-udevd.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/systemd-sysusers
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit heartbeat.service:
Description: Heartbeat High Availability Cluster Communication and Membership
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:45 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:45 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:45 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/heartbeat.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: heartbeat.service
Invocation ID: bf12a2bc3e4d45e3983e4fd11129646d
Documentation: man:heartbeat(8)
Documentation: http://www.linux-ha.org/wiki/Documentation
Fragment Path: /lib/systemd/system/heartbeat.service
Condition Timestamp: Wed 2020-12-16 19:59:45 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:45 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: basic.target (origin-file)
Requires: network.target (origin-file)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: system.slice (origin-file)
After: sysinit.target (origin-default)
After: basic.target (origin-file origin-default)
After: drbd.service (origin-file destination-file)
After: network.target (origin-file)
After: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: shutdown.target (origin-default)
References: network.target (origin-file)
References: basic.target (origin-file origin-default)
References: drbd.service (origin-file)
References: sysinit.target (origin-default)
References: systemd-journald.socket (origin-file)
ReferencedBy: drbd.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: main
NotifyState: unknown
Main PID: 1131
Main PID Known: yes
Main PID Alien: no
PIDFile: /run/heartbeat.pid
RestartSec: 100ms
TimeoutStartSec: 1min
TimeoutStopSec: 30min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: no
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/sysconfig/heartbeat
EnvironmentFile: -/etc/sysconfig/pacemaker
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
User: root
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/lib/heartbeat/heartbeat -f
-> ExecStop:
Command Line: /usr/lib/heartbeat/heartbeat -k
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit system-getty.slice:
Description: system-getty.slice
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/system-getty.slice
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup enabled mask: memory pids
CGroup own mask: memory pids
CGroup members mask: memory pids
Name: system-getty.slice
Invocation ID: dc15cb33918a4c25b0a3086b696d4251
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: system.slice (origin-implicit)
RequiredBy: getty at tty1.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: getty at tty1.service (destination-file)
Before: shutdown.target (origin-default)
After: setserial.service (destination-file)
After: system.slice (origin-implicit)
After: etc-setserial.service (destination-file)
References: system.slice (origin-implicit)
References: shutdown.target (origin-default)
ReferencedBy: getty at tty1.service (destination-file)
ReferencedBy: setserial.service (destination-file)
ReferencedBy: etc-setserial.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Slice State: active
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
-> Unit iptables.service:
Description: iptables.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: iptables.service
Before: fail2ban.service (destination-file)
ReferencedBy: fail2ban.service (destination-file)
-> Unit sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.1-net-enp1s0f1.device:
Description: 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) (PRO/1000 PT Dual Port Server Adapter)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.1-net-enp1s0f1.device
Invocation ID: 73b93b84e83f4fae81dd4d6e8f51cb62
Following Set Member: sys-subsystem-net-devices-enp1s0f1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.1/net/enp1s0f1
Found: found-udev
-> Unit dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
Invocation ID: bc5abaf68ff7463782d1dddb9d7b984a
Following: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrw.device
Following Set Member: dev-dvdrw.device
Following Set Member: dev-sr0.device
Following Set Member: dev-dvd.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrom.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit dev-ttyS1.device:
Description: 7 Series/C210 Series Chipset Family KT Controller
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-ttyS1.device
Invocation ID: ce0f33aa11e7474db343863e26c18447
Following: sys-devices-pci0000:00-0000:00:16.3-tty-ttyS1.device
Following Set Member: sys-devices-pci0000:00-0000:00:16.3-tty-ttyS1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:16.3/tty/ttyS1
Found: found-udev
-> Unit network-online.target:
Description: Network is Online
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:31 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:31 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: network-online.target
Invocation ID: 3be5150939184cbc82e7004384e1744b
Documentation: man:systemd.special(7)
Documentation: https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
Fragment Path: /lib/systemd/system/network-online.target
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Wants: networking.service (origin-file)
RequiredBy: corosync.service (destination-file)
WantedBy: exim4.service (destination-file)
WantedBy: drbd.service (destination-file)
WantedBy: isc-dhcp-server.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: apt-daily-upgrade.service (destination-file)
Before: isc-dhcp-server.service (destination-file)
Before: apt-daily.service (destination-file)
Before: shutdown.target (origin-default)
Before: exim4.service (destination-file)
Before: rc-local.service (destination-file)
Before: corosync.service (destination-file)
Before: drbd.service (destination-file)
After: networking.service (destination-file)
After: ifup at enp0s25.service (destination-file)
After: network.target (origin-file)
References: networking.service (origin-file)
References: shutdown.target (origin-default)
References: network.target (origin-file)
ReferencedBy: corosync.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: apt-daily.service (destination-file)
ReferencedBy: isc-dhcp-server.service (destination-file)
ReferencedBy: rc-local.service (destination-file)
ReferencedBy: drbd.service (destination-file)
ReferencedBy: exim4.service (destination-file)
ReferencedBy: apt-daily-upgrade.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device:
Description: 7 Series/C216 Chipset Family High Definition Audio Controller
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device
Invocation ID: 491d7a64e16c4be182a279eef7c258e9
Wants: sound.target (origin-udev)
References: sound.target (origin-udev)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1b.0/sound/card0
Found: found-udev
udev SYSTEMD_WANTS: sound.target
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Invocation ID: a280a93a172444928ed6b1c676b782e3
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d03.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart3.device
Following Set Member: dev-sda3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
Found: found-udev
-> Unit console-setup.service:
Description: Set console font and keymap
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/console-setup.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: console-setup.service
Invocation ID: a884326088334b17a76c73f78bb8e8ba
Fragment Path: /lib/systemd/system/console-setup.service
ConditionPathExists: /bin/setupcon untested
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
WantedBy: multi-user.target (destination-file)
After: -.mount (origin-file origin-path)
After: console-screen.service (origin-file)
After: systemd-journald.socket (origin-file)
After: local-fs.target (origin-file)
After: system.slice (origin-file)
After: kbd.service (origin-file)
References: -.mount (origin-file origin-path)
References: console-screen.service (origin-file)
References: systemd-journald.socket (origin-file)
References: local-fs.target (origin-file)
References: system.slice (origin-file)
References: kbd.service (origin-file)
ReferencedBy: multi-user.target (destination-file)
RequiresMountsFor: /usr (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/console-setup/console-setup.sh
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit rescue.service:
Description: Rescue Shell
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: rescue.service
Documentation: man:sulogin(8)
Fragment Path: /lib/systemd/system/rescue.service
Requires: system.slice (origin-file)
RequiredBy: rescue.target (destination-file)
Conflicts: shutdown.target (origin-file)
ConflictedBy: multi-user.target (destination-file)
ConflictedBy: getty at tty1.service (destination-file)
ConflictedBy: serial-getty at ttyS0.service (destination-file)
ConflictedBy: graphical.target (destination-file)
ConflictedBy: emergency.service (destination-file)
Before: shutdown.target (origin-file)
Before: graphical.target (destination-file)
Before: rescue.target (destination-file)
Before: multi-user.target (destination-file)
After: sysinit.target (origin-file)
After: serial-getty at ttyS0.service (destination-file)
After: emergency.service (destination-file)
After: system.slice (origin-file)
After: plymouth-start.service (origin-file)
After: getty at tty1.service (destination-file)
References: shutdown.target (origin-file)
References: plymouth-start.service (origin-file)
References: sysinit.target (origin-file)
References: system.slice (origin-file)
ReferencedBy: emergency.service (destination-file)
ReferencedBy: getty at tty1.service (destination-file)
ReferencedBy: graphical.target (destination-file)
ReferencedBy: rescue.target (destination-file)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
ReferencedBy: multi-user.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: idle
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: yes
UMask: 0022
WorkingDirectory: /root
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
Environment: HOME=/root
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: tty-force
StandardOutput: inherit
StandardError: inherit
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /bin/plymouth --wait quit
-> ExecStart:
Command Line: /lib/systemd/systemd-sulogin-shell rescue
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart3.device
Invocation ID: 2ea17506a28349d8a760b177635c5914
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart3.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d03.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-sda3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
Found: found-udev
-> Unit dbus.socket:
Description: D-Bus System Message Bus Socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/dbus.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: dbus.socket
Invocation ID: 2c11a571329449d7aee0cc3c5a7e4db8
Fragment Path: /lib/systemd/system/dbus.socket
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
Requires: sysinit.target (origin-default)
RequiredBy: dbus.service (destination-file)
RequiredBy: udisks2.service (destination-file)
RequiredBy: systemd-logind.service (destination-file)
RequiredBy: lightdm.service (destination-file)
WantedBy: systemd-logind.service (destination-file)
WantedBy: sockets.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: systemd-logind.service (destination-file)
Before: lightdm.service (destination-file)
Before: sockets.target (origin-default destination-default)
Before: udisks2.service (destination-file)
Before: shutdown.target (origin-default)
Before: dbus.service (origin-implicit)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
After: sysinit.target (origin-default)
Triggers: dbus.service (origin-implicit)
References: system.slice (origin-file)
References: -.mount (origin-file origin-path)
References: sockets.target (origin-default)
References: sysinit.target (origin-default)
References: shutdown.target (origin-default)
References: dbus.service (origin-implicit)
ReferencedBy: lightdm.service (destination-file)
ReferencedBy: systemd-logind.service (destination-file)
ReferencedBy: dbus.service (destination-file)
ReferencedBy: sockets.target (destination-file destination-default)
ReferencedBy: udisks2.service (destination-file)
RequiresMountsFor: /var/run/dbus/system_bus_socket (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: running
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: dbus.socket
SELinuxContextFromNet: no
ListenStream: /var/run/dbus/system_bus_socket
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit ifupdown-pre.service:
Description: Helper to synchronize boot up for ifupdown
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/ifupdown-pre.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: ifupdown-pre.service
Invocation ID: 8ba6910fee4745f6ad85faa28508b6ca
Fragment Path: /lib/systemd/system/ifupdown-pre.service
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Wants: systemd-udevd.service (origin-file)
RequiredBy: networking.service (destination-file)
Before: networking.service (destination-file)
Before: network.target (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-udev-trigger.service (origin-file)
After: system.slice (origin-file)
References: systemd-udevd.service (origin-file)
References: network.target (origin-file)
References: system.slice (origin-file)
References: systemd-udev-trigger.service (origin-file)
References: systemd-journald.socket (origin-file)
ReferencedBy: networking.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 3min
TimeoutStopSec: 3min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/networking
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/sh -c 'if [ "$CONFIGURE_INTERFACES" != "no" ] && [ -n "$(ifquery --read-environment --list --exclude=lo)" ] && [ -x /bin/udevadm ]; then udevadm settle; fi'
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit spamassassin.service:
Description: spamassassin.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: spamassassin.service
Before: exim4.service (destination-file)
ReferencedBy: exim4.service (destination-file)
-> Unit systemd-binfmt.service:
Description: Set Up Additional Binary Formats
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-binfmt.service
Documentation: man:systemd-binfmt.service(8)
Documentation: man:binfmt.d(5)
Documentation: https://www.kernel.org/doc/html/latest/admin-guide/binfmt-misc.html
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/systemd-binfmt.service
ConditionDirectoryNotEmpty: |/run/binfmt.d untested
ConditionDirectoryNotEmpty: |/etc/binfmt.d untested
ConditionDirectoryNotEmpty: |/usr/local/lib/binfmt.d untested
ConditionDirectoryNotEmpty: |/usr/lib/binfmt.d untested
ConditionDirectoryNotEmpty: |/lib/binfmt.d untested
ConditionPathIsReadWrite: /proc/sys untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: no
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: shutdown.target (origin-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: proc-sys-fs-binfmt_misc.automount (origin-file)
References: system.slice (origin-file)
References: shutdown.target (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: proc-sys-fs-binfmt_misc.automount (origin-file)
ReferencedBy: sysinit.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-binfmt
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart1.device
Invocation ID: a3e3af6ba8d04867b2ea27a4fa4071e5
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart1.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device
Following Set Member: dev-sda1.device
Following Set Member: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d01.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda1
Found: found-udev
-> Unit connman.service:
Description: connman.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: connman.service
Before: apt-daily-upgrade.service (destination-file)
Before: apt-daily.service (destination-file)
ReferencedBy: apt-daily-upgrade.service (destination-file)
ReferencedBy: apt-daily.service (destination-file)
-> Unit mysql.service:
Description: mysql.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: mysql.service
Before: exim4.service (destination-file)
ReferencedBy: exim4.service (destination-file)
-> Unit etc-setserial.service:
Description: controls configuration of serial ports
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/etc-setserial.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: etc-setserial.service
Invocation ID: 1db5688e816c49acb3a3e67de46ce671
Documentation: man:setserial(8)
Fragment Path: /lib/systemd/system/etc-setserial.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: system-getty.slice (origin-file)
Before: multi-user.target (destination-default)
After: basic.target (origin-default)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: sysinit.target (origin-default)
References: system-getty.slice (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /etc/init.d/etc-setserial start
-> ExecStop:
Command Line: /etc/init.d/etc-setserial stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Invocation ID: c359fdb2c1f74467bd1e0137239099af
Following: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrw.device
Following Set Member: dev-dvdrw.device
Following Set Member: dev-sr0.device
Following Set Member: dev-dvd.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Following Set Member: dev-cdrom.device
Following Set Member: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit bind9.service:
Description: BIND Domain Name Server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:32 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:32 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/bind9.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: bind9.service
Invocation ID: a5077041ef3a4c93b8cc310f3fcb4b2c
Documentation: man:named(8)
Fragment Path: /lib/systemd/system/bind9.service
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Wants: nss-lookup.target (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: nss-lookup.target (origin-file)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
After: network.target (origin-file)
After: systemd-journald.socket (origin-file)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: basic.target (origin-default)
References: basic.target (origin-default)
References: nss-lookup.target (origin-file)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-default)
References: network.target (origin-file)
References: sysinit.target (origin-default)
References: system.slice (origin-file)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 689
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/bind9
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/named $OPTIONS
-> ExecReload:
Command Line: /usr/sbin/rndc reload
-> ExecStop:
Command Line: /usr/sbin/rndc stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-update-utmp.service:
Description: Update UTMP about System Boot/Shutdown
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-update-utmp.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-update-utmp.service
Invocation ID: 71ff256e62884516930acf381f2944c8
Documentation: man:systemd-update-utmp.service(8)
Documentation: man:utmp(5)
Fragment Path: /lib/systemd/system/systemd-update-utmp.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequisiteOf: systemd-update-utmp-runlevel.service (destination-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: systemd-update-utmp-runlevel.service (destination-file)
After: systemd-remount-fs.service (origin-file)
After: system.slice (origin-file)
After: auditd.service (origin-file)
After: systemd-tmpfiles-setup.service (origin-file)
After: systemd-journald.socket (origin-file)
After: -.mount (origin-file origin-path)
References: systemd-remount-fs.service (origin-file)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: -.mount (origin-file origin-path)
References: auditd.service (origin-file)
References: shutdown.target (origin-file)
References: system.slice (origin-file)
References: systemd-tmpfiles-setup.service (origin-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file)
RequiresMountsFor: /var/log/wtmp (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-update-utmp reboot
-> ExecStop:
Command Line: /lib/systemd/systemd-update-utmp shutdown
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-sda2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-sda2.device
Invocation ID: 4f31799331cc4e5caace0b654de293b6
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart2.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d02.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
Found: found-udev
-> Unit networking.service:
Description: Raise network interfaces
Instance: n/a
Unit Load State: loaded
Unit Active State: failed
State Change Timestamp: Wed 2020-12-16 19:59:31 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2020-12-16 19:59:31 CET
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: networking.service
Invocation ID: 3b67e3b61fa3481ba24722626e2c1c9e
Documentation: man:interfaces(5)
Fragment Path: /lib/systemd/system/networking.service
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: ifupdown-pre.service (origin-file)
Wants: network.target (origin-file)
WantedBy: network-online.target (destination-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: network.target (origin-file)
Before: shutdown.target (origin-file)
Before: network-online.target (origin-file)
After: system.slice (origin-file)
After: systemd-modules-load.service (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-sysctl.service (origin-file)
After: network-pre.target (origin-file)
After: local-fs.target (origin-file)
After: apparmor.service (origin-file)
After: ifupdown-pre.service (origin-file)
References: system.slice (origin-file)
References: apparmor.service (origin-file)
References: systemd-journald.socket (origin-file)
References: network-online.target (origin-file)
References: systemd-modules-load.service (origin-file)
References: network.target (origin-file)
References: shutdown.target (origin-file)
References: network-pre.target (origin-file)
References: local-fs.target (origin-file)
References: systemd-sysctl.service (origin-file)
References: ifupdown-pre.service (origin-file)
ReferencedBy: network-online.target (destination-file)
ReferencedBy: multi-user.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: failed
Result: exit-code
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 5min
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/networking
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /sbin/ifup -a --read-environment
-> ExecStop:
Command Line: /sbin/ifdown -a --read-environment --exclude=lo
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> 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
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-platform-serial8250-tty-ttyS2.device
Invocation ID: af608c6a5df0451f90e7c0c40d049e1a
Following Set Member: dev-ttyS2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS2
Found: found-udev
-> Unit libvirt-guests.service:
Description: Suspend/Resume Running libvirt Guests
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:33 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:33 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:33 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/libvirt-guests.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: libvirt-guests.service
Invocation ID: 21f60319f6244553b69592d4c025bb15
Documentation: man:libvirtd(8)
Documentation: https://libvirt.org
Fragment Path: /lib/systemd/system/libvirt-guests.service
Condition Timestamp: Wed 2020-12-16 19:59:33 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:33 CET
Assert Result: yes
Requires: virt-guest-shutdown.target (origin-file)
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Wants: libvirtd.service (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: network.target (origin-file)
After: virt-guest-shutdown.target (origin-file)
After: basic.target (origin-default)
After: time-sync.target (origin-file)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: libvirtd.service (origin-file destination-file)
After: systemd-journald.socket (origin-file)
References: sysinit.target (origin-default)
References: network.target (origin-file)
References: time-sync.target (origin-file)
References: basic.target (origin-default)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: libvirtd.service (origin-file)
References: virt-guest-shutdown.target (origin-file)
References: shutdown.target (origin-default)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: infinity
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/libvirt-guests
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal+console
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/lib/libvirt/libvirt-guests.sh start
-> ExecStop:
Command Line: /usr/lib/libvirt/libvirt-guests.sh stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sysinit.target:
Description: System Initialization
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sysinit.target
Invocation ID: a7fa2dcec21d4dc58136c10d097fac14
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/sysinit.target
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Wants: dev-hugepages.mount (origin-file)
Wants: plymouth-start.service (origin-file)
Wants: dev-mqueue.mount (origin-file)
Wants: systemd-udevd.service (origin-file)
Wants: systemd-binfmt.service (origin-file)
Wants: sys-fs-fuse-connections.mount (origin-file)
Wants: blk-availability.service (origin-file)
Wants: cryptsetup.target (origin-file)
Wants: apparmor.service (origin-file)
Wants: keyboard-setup.service (origin-file)
Wants: sys-kernel-debug.mount (origin-file)
Wants: systemd-tmpfiles-setup.service (origin-file)
Wants: sys-kernel-config.mount (origin-file)
Wants: systemd-update-utmp.service (origin-file)
Wants: kmod-static-nodes.service (origin-file)
Wants: systemd-modules-load.service (origin-file)
Wants: systemd-udev-trigger.service (origin-file)
Wants: proc-sys-fs-binfmt_misc.automount (origin-file)
Wants: systemd-random-seed.service (origin-file)
Wants: systemd-sysusers.service (origin-file)
Wants: systemd-timesyncd.service (origin-file)
Wants: systemd-journald.service (origin-file)
Wants: swap.target (origin-file)
Wants: lvm2-monitor.service (origin-file)
Wants: plymouth-read-write.service (origin-file)
Wants: systemd-tmpfiles-setup-dev.service (origin-file)
Wants: local-fs.target (origin-file)
Wants: systemd-machine-id-commit.service (origin-file)
Wants: systemd-hwdb-update.service (origin-file)
Wants: lvm2-lvmpolld.socket (origin-file)
Wants: systemd-journal-flush.service (origin-file)
Wants: systemd-ask-password-console.path (origin-file)
Wants: systemd-sysctl.service (origin-file)
RequiredBy: cron.service (destination-default)
RequiredBy: virtlockd-admin.socket (destination-default)
RequiredBy: getty at tty1.service (destination-default)
RequiredBy: logrotate.timer (destination-default)
RequiredBy: systemd-ask-password-wall.service (destination-default)
RequiredBy: systemd-tmpfiles-clean.timer (destination-default)
RequiredBy: virtlockd.socket (destination-default)
RequiredBy: lightdm.service (destination-default)
RequiredBy: xrdp-sesman.service (destination-default)
RequiredBy: apt-daily.timer (destination-default)
RequiredBy: uuidd.service (destination-default)
RequiredBy: fail2ban.service (destination-default)
RequiredBy: rsync.service (destination-default)
RequiredBy: ssh.service (destination-default)
RequiredBy: corosync.service (destination-default)
RequiredBy: serial-getty at ttyS0.service (destination-default)
RequiredBy: apt-daily-upgrade.timer (destination-default)
RequiredBy: man-db.timer (destination-default)
RequiredBy: drbd.service (destination-default)
RequiredBy: libvirt-guests.service (destination-default)
RequiredBy: systemd-logind.service (destination-default)
RequiredBy: rc-local.service (destination-default)
RequiredBy: virtlogd.socket (destination-default)
RequiredBy: exim4.service (destination-default)
RequiredBy: rescue.target (destination-file)
RequiredBy: apt-daily.service (destination-default)
RequiredBy: logrotate.service (destination-default)
RequiredBy: systemd-user-sessions.service (destination-default)
RequiredBy: virtlockd.service (destination-default)
RequiredBy: isc-dhcp-server.service (destination-default)
RequiredBy: setserial.service (destination-default)
RequiredBy: xrdp.service (destination-default)
RequiredBy: libvirtd.service (destination-default)
RequiredBy: basic.target (destination-file)
RequiredBy: zabbix-agent2.service (destination-default)
RequiredBy: pacemaker.service (destination-default)
RequiredBy: getty-static.service (destination-default)
RequiredBy: heartbeat.service (destination-default)
RequiredBy: uuidd.socket (destination-default)
RequiredBy: dbus.service (destination-default)
RequiredBy: virtlogd.service (destination-default)
RequiredBy: etc-setserial.service (destination-default)
RequiredBy: virtlogd-admin.socket (destination-default)
RequiredBy: rsyslog.service (destination-default)
RequiredBy: apt-daily-upgrade.service (destination-default)
RequiredBy: dbus.socket (destination-default)
RequiredBy: bind9.service (destination-default)
RequiredBy: plymouth-quit-wait.service (destination-default)
RequiredBy: unattended-upgrades.service (destination-default)
RequiredBy: plymouth-quit.service (destination-default)
RequiredBy: logd.service (destination-default)
RequiredBy: user at 0.service (destination-default)
RequiredBy: udisks2.service (destination-default)
RequiredBy: user-runtime-dir at 0.service (destination-default)
RequiredBy: man-db.service (destination-default)
Conflicts: shutdown.target (origin-default)
Conflicts: emergency.service (origin-file)
Conflicts: emergency.target (origin-file)
Before: plymouth-quit.service (destination-default)
Before: man-db.service (destination-default)
Before: virtlockd.service (destination-default)
Before: unattended-upgrades.service (destination-default)
Before: virtlockd-admin.socket (destination-default)
Before: systemd-tmpfiles-clean.timer (destination-default)
Before: logrotate.timer (destination-default)
Before: isc-dhcp-server.service (destination-default)
Before: setserial.service (destination-default)
Before: zabbix-agent2.service (destination-default)
Before: systemd-user-sessions.service (destination-default)
Before: udisks2.service (destination-default)
Before: logd.service (destination-default)
Before: pacemaker.service (destination-default)
Before: shutdown.target (origin-default)
Before: user at 0.service (destination-default)
Before: man-db.timer (destination-default)
Before: libvirt-guests.service (destination-default)
Before: virtlogd.service (destination-default)
Before: apt-daily.service (destination-default)
Before: getty-static.service (destination-default)
Before: dbus.service (destination-default)
Before: cron.service (destination-default)
Before: uuidd.service (destination-default)
Before: getty at tty1.service (destination-default)
Before: plymouth-quit-wait.service (destination-default)
Before: systemd-ask-password-wall.service (destination-default)
Before: drbd.service (destination-default)
Before: ssh.service (destination-default)
Before: dbus.socket (destination-default)
Before: virtlogd-admin.socket (destination-default)
Before: virtlogd.socket (destination-default)
Before: apt-daily-upgrade.timer (destination-default)
Before: bind9.service (destination-default)
Before: rsync.service (destination-default)
Before: lightdm.service (destination-default)
Before: xrdp.service (destination-default)
Before: rescue.target (destination-file destination-default)
Before: apt-daily-upgrade.service (destination-default)
Before: rsyslog.service (destination-default)
Before: serial-getty at ttyS0.service (destination-default)
Before: xrdp-sesman.service (destination-default)
Before: libvirtd.service (destination-default)
Before: heartbeat.service (destination-default)
Before: uuidd.socket (destination-default)
Before: fail2ban.service (destination-default)
Before: user-runtime-dir at 0.service (destination-default)
Before: virtlockd.socket (destination-default)
Before: rc-local.service (destination-default)
Before: systemd-logind.service (destination-default)
Before: apt-daily.timer (destination-default)
Before: exim4.service (destination-default)
Before: rescue.service (destination-file)
Before: etc-setserial.service (destination-default)
Before: basic.target (destination-file destination-default)
Before: corosync.service (destination-default)
Before: logrotate.service (destination-default)
After: systemd-timesyncd.service (destination-file)
After: systemd-update-utmp.service (destination-file)
After: apparmor.service (destination-file)
After: systemd-random-seed.service (destination-file)
After: systemd-journald.service (destination-file)
After: sys-kernel-debug.mount (destination-file)
After: kmod-static-nodes.service (destination-file)
After: emergency.target (origin-file)
After: selinux-autorelabel-mark.service (destination-file)
After: systemd-udevd.service (destination-file)
After: systemd-hwdb-update.service (destination-file)
After: swap.target (origin-file origin-default)
After: plymouth-read-write.service (destination-file)
After: dev-hugepages.mount (destination-file)
After: sys-fs-fuse-connections.mount (destination-file)
After: proc-sys-fs-binfmt_misc.automount (destination-file)
After: systemd-udev-trigger.service (destination-file)
After: systemd-machine-id-commit.service (destination-file)
After: emergency.service (origin-file)
After: systemd-sysusers.service (destination-file)
After: cryptsetup.target (origin-default)
After: local-fs.target (origin-file)
After: systemd-tmpfiles-setup.service (destination-file)
After: systemd-modules-load.service (destination-file)
After: systemd-sysctl.service (destination-file)
After: systemd-binfmt.service (destination-file)
After: sys-kernel-config.mount (destination-file)
After: dev-mqueue.mount (destination-file)
After: systemd-tmpfiles-setup-dev.service (destination-file)
After: auditd.service (destination-file)
References: systemd-sysusers.service (origin-file)
References: proc-sys-fs-binfmt_misc.automount (origin-file)
References: systemd-binfmt.service (origin-file)
References: systemd-ask-password-console.path (origin-file)
References: systemd-udevd.service (origin-file)
References: plymouth-read-write.service (origin-file)
References: systemd-random-seed.service (origin-file)
References: shutdown.target (origin-default)
References: apparmor.service (origin-file)
References: cryptsetup.target (origin-file origin-default)
References: systemd-journald.service (origin-file)
References: lvm2-monitor.service (origin-file)
References: systemd-sysctl.service (origin-file)
References: systemd-tmpfiles-setup-dev.service (origin-file)
References: systemd-hwdb-update.service (origin-file)
References: systemd-journal-flush.service (origin-file)
References: systemd-timesyncd.service (origin-file)
References: plymouth-start.service (origin-file)
References: kmod-static-nodes.service (origin-file)
References: blk-availability.service (origin-file)
References: sys-fs-fuse-connections.mount (origin-file)
References: swap.target (origin-file origin-default)
References: systemd-machine-id-commit.service (origin-file)
References: local-fs.target (origin-file)
References: emergency.service (origin-file)
References: systemd-update-utmp.service (origin-file)
References: keyboard-setup.service (origin-file)
References: sys-kernel-config.mount (origin-file)
References: systemd-tmpfiles-setup.service (origin-file)
References: dev-hugepages.mount (origin-file)
References: emergency.target (origin-file)
References: lvm2-lvmpolld.socket (origin-file)
References: dev-mqueue.mount (origin-file)
References: systemd-udev-trigger.service (origin-file)
References: systemd-modules-load.service (origin-file)
References: sys-kernel-debug.mount (origin-file)
ReferencedBy: sys-fs-fuse-connections.mount (destination-file)
ReferencedBy: logrotate.timer (destination-default)
ReferencedBy: plymouth-quit-wait.service (destination-default)
ReferencedBy: systemd-ask-password-wall.service (destination-default)
ReferencedBy: lightdm.service (destination-default)
ReferencedBy: corosync.service (destination-default)
ReferencedBy: systemd-tmpfiles-setup-dev.service (destination-file)
ReferencedBy: user-runtime-dir at 0.service (destination-default)
ReferencedBy: dbus.service (destination-default)
ReferencedBy: uuidd.service (destination-default)
ReferencedBy: man-db.service (destination-default)
ReferencedBy: getty at tty1.service (destination-default)
ReferencedBy: systemd-hwdb-update.service (destination-file)
ReferencedBy: apt-daily.service (destination-default)
ReferencedBy: systemd-journald.service (destination-file)
ReferencedBy: selinux-autorelabel-mark.service (destination-file)
ReferencedBy: drbd.service (destination-default)
ReferencedBy: dev-hugepages.mount (destination-file)
ReferencedBy: plymouth-read-write.service (destination-file)
ReferencedBy: virtlogd-admin.socket (destination-default)
ReferencedBy: exim4.service (destination-default)
ReferencedBy: proc-sys-fs-binfmt_misc.automount (destination-file)
ReferencedBy: serial-getty at ttyS0.service (destination-default)
ReferencedBy: xrdp-sesman.service (destination-default)
ReferencedBy: dbus.socket (destination-default)
ReferencedBy: sys-kernel-debug.mount (destination-file)
ReferencedBy: user at 0.service (destination-default)
ReferencedBy: zabbix-agent2.service (destination-default)
ReferencedBy: systemd-update-utmp.service (destination-file)
ReferencedBy: getty-static.service (destination-default)
ReferencedBy: dev-mqueue.mount (destination-file)
ReferencedBy: systemd-sysusers.service (destination-file)
ReferencedBy: virtlogd.service (destination-default)
ReferencedBy: isc-dhcp-server.service (destination-default)
ReferencedBy: apt-daily.timer (destination-default)
ReferencedBy: systemd-sysctl.service (destination-file)
ReferencedBy: plymouth-quit.service (destination-default)
ReferencedBy: udisks2.service (destination-default)
ReferencedBy: libvirt-guests.service (destination-default)
ReferencedBy: apparmor.service (destination-file)
ReferencedBy: rescue.target (destination-file destination-default)
ReferencedBy: logrotate.service (destination-default)
ReferencedBy: systemd-udev-trigger.service (destination-file)
ReferencedBy: xrdp.service (destination-default)
ReferencedBy: virtlogd.socket (destination-default)
ReferencedBy: systemd-logind.service (destination-default)
ReferencedBy: virtlockd.socket (destination-default)
ReferencedBy: ssh.service (destination-default)
ReferencedBy: apt-daily-upgrade.service (destination-default)
ReferencedBy: apt-daily-upgrade.timer (destination-default)
ReferencedBy: systemd-modules-load.service (destination-file)
ReferencedBy: systemd-binfmt.service (destination-file)
ReferencedBy: systemd-user-sessions.service (destination-default)
ReferencedBy: setserial.service (destination-default)
ReferencedBy: uuidd.socket (destination-default)
ReferencedBy: fail2ban.service (destination-default)
ReferencedBy: rc-local.service (destination-default)
ReferencedBy: systemd-tmpfiles-clean.timer (destination-default)
ReferencedBy: systemd-tmpfiles-setup.service (destination-file)
ReferencedBy: rescue.service (destination-file)
ReferencedBy: kmod-static-nodes.service (destination-file)
ReferencedBy: cron.service (destination-default)
ReferencedBy: bind9.service (destination-default)
ReferencedBy: pacemaker.service (destination-default)
ReferencedBy: etc-setserial.service (destination-default)
ReferencedBy: basic.target (destination-file destination-default)
ReferencedBy: systemd-machine-id-commit.service (destination-file)
ReferencedBy: unattended-upgrades.service (destination-default)
ReferencedBy: virtlockd.service (destination-default)
ReferencedBy: sys-kernel-config.mount (destination-file)
ReferencedBy: rsyslog.service (destination-default)
ReferencedBy: man-db.timer (destination-default)
ReferencedBy: rsync.service (destination-default)
ReferencedBy: systemd-timesyncd.service (destination-file)
ReferencedBy: auditd.service (destination-file)
ReferencedBy: systemd-udevd.service (destination-file)
ReferencedBy: systemd-random-seed.service (destination-file)
ReferencedBy: heartbeat.service (destination-default)
ReferencedBy: virtlockd-admin.socket (destination-default)
ReferencedBy: logd.service (destination-default)
ReferencedBy: libvirtd.service (destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device:
Description: TOSHIBA_HDWD120 1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart1.device
Invocation ID: e455a33c5b7f4c108215474e65dca5c1
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
Following Set Member: dev-disk-by\x2duuid-908ef0db\x2dd7cf\x2d4ac0\x2d90f4\x2da309f6814f0e.device
Following Set Member: dev-sdb1.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d01.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart1.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart1.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb1
Found: found-udev
-> Unit sys-devices-virtual-block-md1.device:
Description: /sys/devices/virtual/block/md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-block-md1.device
Invocation ID: b3653afcc1ec4330931b83d9a2f7abf3
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2da3345aa3:3cdb29e4:80818cb1:b2a5d670.device
Following Set Member: dev-md1.device
Following Set Member: dev-md-e1:1.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:md1.device
Wants: mdmonitor.service (origin-udev)
References: mdmonitor.service (origin-udev)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md1
Found: found-udev
udev SYSTEMD_WANTS: mdmonitor.service
-> Unit isc-dhcp-server.service:
Description: LSB: DHCP server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:35 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:35 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/isc-dhcp-server.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: isc-dhcp-server.service
Invocation ID: a4ddbd152d304fbfaf4968f450dec81f
Documentation: man:systemd-sysv-generator(8)
Fragment Path: /run/systemd/generator.late/isc-dhcp-server.service
Source Path: /etc/init.d/isc-dhcp-server
Condition Timestamp: Wed 2020-12-16 19:59:32 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:32 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Wants: network-online.target (origin-file)
WantedBy: graphical.target (destination-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (origin-file destination-default)
Before: shutdown.target (origin-default)
Before: graphical.target (origin-file destination-default)
After: basic.target (origin-default)
After: network-online.target (origin-file)
After: nss-lookup.target (origin-file)
After: slapd.service (origin-file)
After: system.slice (origin-file)
After: remote-fs.target (origin-file)
After: sysinit.target (origin-default)
After: systemd-journald.socket (origin-file)
References: slapd.service (origin-file)
References: shutdown.target (origin-default)
References: remote-fs.target (origin-file)
References: nss-lookup.target (origin-file)
References: multi-user.target (origin-file)
References: basic.target (origin-default)
References: sysinit.target (origin-default)
References: graphical.target (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: network-online.target (origin-file)
ReferencedBy: graphical.target (destination-file destination-default)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 5min
TimeoutStopSec: 5min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /etc/init.d/isc-dhcp-server start
-> ExecStop:
Command Line: /etc/init.d/isc-dhcp-server stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart2.device
Invocation ID: 803bde51d79945b4810e54654757041a
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d02.device
Following Set Member: dev-sdb2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb2
Found: found-udev
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart2.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d2\x2dpart2.device
Invocation ID: 706f35101b95474fa0fb2cdc99ea984d
Following: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
Following Set Member: dev-disk-by\x2dpartuuid-b3257d2e\x2d02.device
Following Set Member: dev-sdb2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030DBWAS\x2dpart2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc5d7e\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sdb-sdb2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata2/host1/target1:0:0/1:0:0:0/block/sdb/sdb2
Found: found-udev
-> Unit ssh.service:
Description: OpenBSD Secure Shell server
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:32 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:32 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/ssh.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: sshd.service
Name: ssh.service
Invocation ID: a6da032c65e44b3ba1b007738cd3be95
Documentation: man:sshd(8)
Documentation: man:sshd_config(5)
Fragment Path: /lib/systemd/system/ssh.service
ConditionPathExists: !/etc/ssh/sshd_not_to_be_run untested
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
Requires: sysinit.target (origin-default)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: drbd.service (destination-file)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
After: auditd.service (origin-file)
After: basic.target (origin-default)
After: network.target (origin-file)
After: system.slice (origin-file)
After: sysinit.target (origin-default)
After: systemd-journald.socket (origin-file)
After: -.mount (origin-file origin-path)
References: shutdown.target (origin-default)
References: basic.target (origin-default)
References: network.target (origin-file)
References: sysinit.target (origin-default)
References: -.mount (origin-file origin-path)
References: auditd.service (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
ReferencedBy: drbd.service (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
RequiresMountsFor: /run/sshd (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: notify
Restart: on-failure
NotifyAccess: main
NotifyState: unknown
Main PID: 706
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/ssh
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
RuntimeDirectory: sshd
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /usr/sbin/sshd -t
-> ExecStart:
Command Line: /usr/sbin/sshd -D $SSHD_OPTS
-> ExecReload:
Command Line: /usr/sbin/sshd -t
Command Line: /bin/kill -HUP $MAINPID
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-quotacheck.service:
Description: File System Quota Check
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: systemd-quotacheck.service
Documentation: man:systemd-quotacheck.service(8)
Fragment Path: /lib/systemd/system/systemd-quotacheck.service
ConditionPathExists: /sbin/quotacheck untested
Requires: system.slice (origin-file)
Before: remote-fs.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: systemd-remount-fs.service (origin-file)
References: remote-fs.target (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: shutdown.target (origin-file)
References: systemd-remount-fs.service (origin-file)
ReferencedBy: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: infinity
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-quotacheck
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sys-subsystem-net-devices-virbr0.device:
Description: /sys/subsystem/net/devices/virbr0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:34 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:34 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:34 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-subsystem-net-devices-virbr0.device
Invocation ID: daaae29e75da4cdebd5d115a49a22ad0
Following Set Member: sys-devices-virtual-net-virbr0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/virbr0
Found: found-udev
-> Unit sys-devices-pnp0-00:08-tty-ttyS0.device:
Description: /sys/devices/pnp0/00:08/tty/ttyS0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pnp0-00:08-tty-ttyS0.device
Invocation ID: b839e2bff67140859fc0c0966036c167
Following Set Member: dev-ttyS0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pnp0/00:08/tty/ttyS0
Found: found-udev
-> Unit sys-subsystem-net-devices-enp1s0f1.device:
Description: 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) (PRO/1000 PT Dual Port Server Adapter)
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-subsystem-net-devices-enp1s0f1.device
Invocation ID: 5dc14feb827f478692d9ef0882bff9b9
Following Set Member: sys-devices-pci0000:00-0000:00:1c.0-0000:01:00.1-net-enp1s0f1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1c.0/0000:01:00.1/net/enp1s0f1
Found: found-udev
-> Unit cryptsetup.target:
Description: Local Encrypted Volumes
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: cryptsetup.target
Invocation ID: 39b4c399142946f1a0a53f2d6f848d1c
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/cryptsetup.target
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: sysinit.target (destination-default)
Before: shutdown.target (origin-default)
After: systemd-ask-password-console.path (destination-file)
After: systemd-ask-password-wall.path (destination-file)
References: shutdown.target (origin-default)
ReferencedBy: sysinit.target (destination-file destination-default)
ReferencedBy: systemd-ask-password-console.path (destination-file)
ReferencedBy: systemd-ask-password-wall.path (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit systemd-rfkill.socket:
Description: Load/Save RF Kill Switch Status /dev/rfkill Watch
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-rfkill.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-rfkill.socket
Invocation ID: a73453d28ec54f4e89aa00d861bda27c
Documentation: man:systemd-rfkill.socket(8)
Fragment Path: /lib/systemd/system/systemd-rfkill.socket
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:28 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
BindsTo: sys-devices-virtual-misc-rfkill.device (origin-file)
WantedBy: sys-devices-virtual-misc-rfkill.device (destination-udev)
Conflicts: shutdown.target (origin-file)
Before: systemd-rfkill.service (origin-implicit)
Before: shutdown.target (origin-file)
After: systemd-remount-fs.service (origin-file)
After: sys-devices-virtual-misc-rfkill.device (origin-file)
After: -.mount (origin-file origin-path)
After: system.slice (origin-file)
Triggers: systemd-rfkill.service (origin-implicit)
References: systemd-remount-fs.service (origin-file)
References: sys-devices-virtual-misc-rfkill.device (origin-file)
References: systemd-rfkill.service (origin-implicit)
References: -.mount (origin-file origin-path)
References: shutdown.target (origin-file)
References: system.slice (origin-file)
ReferencedBy: sys-devices-virtual-misc-rfkill.device (destination-udev)
RequiresMountsFor: /var/lib/systemd/rfkill (origin-file)
RequiresMountsFor: /dev/rfkill (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0666
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: yes
FileDescriptorName: systemd-rfkill.socket
SELinuxContextFromNet: no
ListenSpecial: /dev/rfkill
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit drbd.service:
Description: LSB: Control DRBD resources.
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:45 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:45 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/drbd.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: drbd.service
Invocation ID: 12ca266bb73b40a4987248f991198ee1
Documentation: man:systemd-sysv-generator(8)
Fragment Path: /run/systemd/generator.late/drbd.service
Source Path: /etc/init.d/drbd
Condition Timestamp: Wed 2020-12-16 19:59:32 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:32 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Wants: network-online.target (origin-file)
WantedBy: graphical.target (destination-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: corosync.service (origin-file)
Before: heartbeat.service (origin-file destination-file)
Before: multi-user.target (origin-file destination-default)
Before: shutdown.target (origin-default)
Before: graphical.target (origin-file destination-default)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: network-online.target (origin-file)
After: multipathd.service (origin-file)
After: sysinit.target (origin-default)
After: ssh.service (origin-file)
After: basic.target (origin-default)
References: basic.target (origin-default)
References: sysinit.target (origin-default)
References: graphical.target (origin-file)
References: corosync.service (origin-file)
References: multi-user.target (origin-file)
References: systemd-journald.socket (origin-file)
References: heartbeat.service (origin-file)
References: network-online.target (origin-file)
References: ssh.service (origin-file)
References: multipathd.service (origin-file)
References: system.slice (origin-file)
References: shutdown.target (origin-default)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: heartbeat.service (destination-file)
ReferencedBy: graphical.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: no
Type: forking
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 5min
TimeoutStopSec: 5min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: no
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /etc/init.d/drbd start
-> ExecReload:
Command Line: /etc/init.d/drbd reload
-> ExecStop:
Command Line: /etc/init.d/drbd stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit unattended-upgrades.service:
Description: Unattended Upgrades Shutdown
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:31 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:31 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/unattended-upgrades.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: unattended-upgrades.service
Invocation ID: 2ac7a7e953954f39ab164e29d54b5efa
Documentation: man:unattended-upgrade(8)
Fragment Path: /lib/systemd/system/unattended-upgrades.service
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: boot.mount (origin-file origin-path)
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: network.target (origin-file)
After: system.slice (origin-file)
After: sysinit.target (origin-default)
After: local-fs.target (origin-file)
After: systemd-journald.socket (origin-file)
After: boot.mount (origin-file origin-path)
After: systemd-logind.service (origin-file)
After: basic.target (origin-default)
After: -.mount (origin-file origin-path)
References: shutdown.target (origin-default)
References: system.slice (origin-file)
References: network.target (origin-file)
References: local-fs.target (origin-file)
References: -.mount (origin-file origin-path)
References: sysinit.target (origin-default)
References: basic.target (origin-default)
References: systemd-journald.socket (origin-file)
References: boot.mount (origin-file origin-path)
References: systemd-logind.service (origin-file)
ReferencedBy: multi-user.target (destination-file destination-default)
RequiresMountsFor: /boot (origin-file)
RequiresMountsFor: /var/log (origin-file)
RequiresMountsFor: /var/lib (origin-file)
RequiresMountsFor: /var/run (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
Main PID: 682
Main PID Known: yes
Main PID Alien: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 30min
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: process
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/share/unattended-upgrades/unattended-upgrade-shutdown --wait-for-signal
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit apt-daily-upgrade.timer:
Description: Daily apt upgrade and clean activities
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:59 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: apt-daily-upgrade.timer
Invocation ID: 326cac4b39334c55911d29144a276412
Fragment Path: /lib/systemd/system/apt-daily-upgrade.timer
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
WantedBy: timers.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: apt-daily-upgrade.service (origin-implicit)
Before: timers.target (origin-default)
Before: shutdown.target (origin-default)
After: sysinit.target (origin-default)
After: -.mount (origin-file origin-path)
After: apt-daily.timer (origin-file)
After: time-sync.target (origin-default)
Triggers: apt-daily-upgrade.service (origin-implicit)
References: sysinit.target (origin-default)
References: apt-daily-upgrade.service (origin-implicit)
References: shutdown.target (origin-default)
References: time-sync.target (origin-default)
References: timers.target (origin-default)
References: apt-daily.timer (origin-file)
References: -.mount (origin-file origin-path)
ReferencedBy: timers.target (destination-file)
RequiresMountsFor: /var/lib/systemd/timers (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Timer State: waiting
Result: success
Unit: apt-daily-upgrade.service
Persistent: yes
WakeSystem: no
Accuracy: 1min
RemainAfterElapse: yes
OnCalendar: *-*-* 06:00:00
-> Unit virtlogd.socket:
Description: Virtual machine log manager socket
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:30 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/virtlogd.socket
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: virtlogd.socket
Invocation ID: b5dc7fe349af460288cd3338ecacc216
Fragment Path: /lib/systemd/system/virtlogd.socket
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
RequiredBy: virtlogd.service (destination-file)
RequiredBy: libvirtd.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: virtlogd.service (origin-implicit)
Before: sockets.target (origin-default)
Before: libvirtd.service (origin-file)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: -.mount (origin-file origin-path)
Triggers: virtlogd.service (origin-implicit)
References: libvirtd.service (origin-file)
References: system.slice (origin-file)
References: sockets.target (origin-default)
References: shutdown.target (origin-default)
References: -.mount (origin-file origin-path)
References: virtlogd.service (origin-implicit)
References: sysinit.target (origin-default)
ReferencedBy: virtlogd.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
RequiresMountsFor: /var/run/libvirt/virtlogd-sock (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Socket State: listening
Result: success
BindIPv6Only: default
Backlog: 128
SocketMode: 0600
DirectoryMode: 0755
KeepAlive: no
NoDelay: no
FreeBind: no
Transparent: no
Broadcast: no
PassCredentials: no
PassSecurity: no
TCPCongestion: n/a
RemoveOnStop: no
Writable: no
FileDescriptorName: virtlogd.socket
SELinuxContextFromNet: no
ListenStream: /var/run/libvirt/virtlogd-sock
TriggerLimitIntervalSec: 2s
TriggerLimitBurst: 20
SocketProtocol: ip
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> 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
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: 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 untested
Condition Timestamp: Wed 2020-12-16 19:59:28 CET
Condition Result: no
Requires: -.mount (origin-file origin-path)
WantedBy: sysinit.target (destination-file)
Conflicts: emergency.service (origin-file)
Conflicts: shutdown.target (origin-file)
Before: paths.target (origin-file)
Before: cryptsetup.target (origin-file)
Before: shutdown.target (origin-file)
Before: systemd-ask-password-console.service (origin-implicit)
After: plymouth-start.service (origin-file)
After: -.mount (origin-file origin-path)
Triggers: systemd-ask-password-console.service (origin-implicit)
References: -.mount (origin-file origin-path)
References: paths.target (origin-file)
References: cryptsetup.target (origin-file)
References: shutdown.target (origin-file)
References: emergency.service (origin-file)
References: systemd-ask-password-console.service (origin-implicit)
References: plymouth-start.service (origin-file)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /run/systemd/ask-password (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Path State: dead
Result: success
Unit: systemd-ask-password-console.service
MakeDirectory: yes
DirectoryMode: 0755
DirectoryNotEmpty: /run/systemd/ask-password
-> Unit dev-ttyS3.device:
Description: /dev/ttyS3
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:28 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:28 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:28 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-ttyS3.device
Invocation ID: f7752c2cb898400fbe78b05d2958e308
Following: sys-devices-platform-serial8250-tty-ttyS3.device
Following Set Member: sys-devices-platform-serial8250-tty-ttyS3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/platform/serial8250/tty/ttyS3
Found: found-udev
-> Unit network.target:
Description: Network
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:31 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:31 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: network.target
Invocation ID: 65fa3b2e62d34c62b3adc7d35b6fd96f
Documentation: man:systemd.special(7)
Documentation: https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget
Fragment Path: /lib/systemd/system/network.target
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
RequiredBy: heartbeat.service (destination-file)
WantedBy: networking.service (destination-file)
WantedBy: systemd-networkd.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: bind9.service (destination-file)
Before: ssh.service (destination-file)
Before: systemd-user-sessions.service (destination-file)
Before: libvirt-guests.service (destination-file)
Before: xrdp.service (destination-file)
Before: network-online.target (destination-file)
Before: shutdown.target (origin-default)
Before: rsync.service (destination-file)
Before: apt-daily-upgrade.service (destination-file)
Before: pacemaker.service (destination-file)
Before: heartbeat.service (destination-file)
Before: fail2ban.service (destination-file)
Before: xrdp-sesman.service (destination-file)
Before: libvirtd.service (destination-file)
Before: apt-daily.service (destination-file)
Before: zabbix-agent2.service (destination-file)
Before: unattended-upgrades.service (destination-file)
After: systemd-networkd.service (destination-file)
After: ifup at enp0s25.service (destination-file)
After: ifupdown-pre.service (destination-file)
After: network-pre.target (origin-file)
After: networking.service (destination-file)
References: shutdown.target (origin-default)
References: network-pre.target (origin-file)
ReferencedBy: bind9.service (destination-file)
ReferencedBy: ssh.service (destination-file)
ReferencedBy: network-online.target (destination-file)
ReferencedBy: systemd-user-sessions.service (destination-file)
ReferencedBy: systemd-networkd.service (destination-file)
ReferencedBy: libvirt-guests.service (destination-file)
ReferencedBy: apt-daily-upgrade.service (destination-file)
ReferencedBy: xrdp.service (destination-file)
ReferencedBy: rsync.service (destination-file)
ReferencedBy: xrdp-sesman.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: pacemaker.service (destination-file)
ReferencedBy: apt-daily.service (destination-file)
ReferencedBy: unattended-upgrades.service (destination-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: heartbeat.service (destination-file)
ReferencedBy: fail2ban.service (destination-file)
ReferencedBy: zabbix-agent2.service (destination-file)
ReferencedBy: ifupdown-pre.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit sys-devices-virtual-net-virbr0.device:
Description: /sys/devices/virtual/net/virbr0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:34 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:34 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:34 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-net-virbr0.device
Invocation ID: 0f6b361b3ce44bd2ac0939974670405d
Following Set Member: sys-subsystem-net-devices-virbr0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/net/virbr0
Found: found-udev
-> Unit systemd-modules-load.service:
Description: Load Kernel Modules
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-modules-load.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-modules-load.service
Invocation ID: 3bedf33091ee48b9ba491a4089a1f574
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 untested
ConditionKernelCommandLine: |modules-load untested
ConditionDirectoryNotEmpty: |/run/modules-load.d untested
ConditionDirectoryNotEmpty: |/etc/modules-load.d untested
ConditionDirectoryNotEmpty: |/usr/local/lib/modules-load.d untested
ConditionDirectoryNotEmpty: |/usr/lib/modules-load.d untested
ConditionDirectoryNotEmpty: |/lib/modules-load.d untested
ConditionCapability: CAP_SYS_MODULE untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sys-fs-fuse-connections.mount (destination-file)
Before: sys-kernel-config.mount (destination-file)
Before: systemd-sysctl.service (destination-file)
Before: networking.service (destination-file)
Before: sysinit.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: sysinit.target (origin-file)
References: shutdown.target (origin-file)
ReferencedBy: sys-kernel-config.mount (destination-file)
ReferencedBy: sysinit.target (destination-file)
ReferencedBy: sys-fs-fuse-connections.mount (destination-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: systemd-sysctl.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-modules-load
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit user.slice:
Description: User and Session Slice
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: -.slice
CGroup: /user.slice
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup enabled mask: memory pids
CGroup own mask: memory pids
CGroup members mask: memory pids
Name: user.slice
Invocation ID: 7b8729e920934159b32f849fd41a217d
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/user.slice
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: -.slice (origin-implicit)
RequiredBy: user-0.slice (destination-implicit)
WantedBy: systemd-logind.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: slices.target (origin-file)
Before: shutdown.target (origin-default)
Before: user-0.slice (destination-implicit)
Before: systemd-logind.service (destination-file)
After: -.slice (origin-implicit)
References: slices.target (origin-file)
References: shutdown.target (origin-default)
References: -.slice (origin-implicit)
ReferencedBy: systemd-logind.service (destination-file)
ReferencedBy: user-0.slice (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Slice State: active
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
-> Unit systemd-machined.service:
Description: systemd-machined.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: systemd-machined.service
WantedBy: libvirtd.service (destination-file)
Before: libvirtd.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
-> Unit lightdm.service:
Description: Light Display Manager
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: lightdm.service
Name: display-manager.service
Documentation: man:lightdm(1)
Fragment Path: /lib/systemd/system/lightdm.service
Requires: system.slice (origin-file)
Requires: sysinit.target (origin-default)
Requires: dbus.socket (origin-file)
WantedBy: graphical.target (destination-file)
Conflicts: shutdown.target (origin-default)
Conflicts: plymouth-quit.service (origin-file)
Before: shutdown.target (origin-default)
Before: graphical.target (destination-file destination-default)
After: sysinit.target (origin-default)
After: systemd-journald.socket (origin-file)
After: basic.target (origin-default)
After: systemd-user-sessions.service (origin-file)
After: dbus.socket (origin-file)
After: system.slice (origin-file)
After: plymouth-quit.service (origin-file)
OnFailure: plymouth-quit.service (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: sysinit.target (origin-default)
References: shutdown.target (origin-default)
References: plymouth-quit.service (origin-file)
References: systemd-user-sessions.service (origin-file)
References: basic.target (origin-default)
References: dbus.socket (origin-file)
ReferencedBy: graphical.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: dbus
Restart: always
NotifyAccess: none
NotifyState: unknown
BusName: org.freedesktop.DisplayManager
Bus Name Good: no
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /bin/sh -c '[ "$(cat /etc/X11/default-display-manager 2>/dev/null)" = "/usr/sbin/lightdm" ]'
-> ExecStart:
Command Line: /usr/sbin/lightdm
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit dev-md-e1:1.device:
Description: /dev/md/e1:1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-md-e1:1.device
Invocation ID: 4f58df5850fd4978bd9cf0362da9491b
Following: sys-devices-virtual-block-md1.device
Following Set Member: dev-disk-by\x2did-md\x2duuid\x2da3345aa3:3cdb29e4:80818cb1:b2a5d670.device
Following Set Member: dev-md1.device
Following Set Member: sys-devices-virtual-block-md1.device
Following Set Member: dev-disk-by\x2did-md\x2dname\x2de1:md1.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/md1
Found: found-udev
-> Unit rescue.target:
Description: Rescue Mode
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: runlevel1.target
Name: rescue.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/rescue.target
Requires: sysinit.target (origin-file)
Requires: rescue.service (origin-file)
Wants: systemd-update-utmp-runlevel.service (origin-file)
Conflicts: shutdown.target (origin-default)
ConflictedBy: graphical.target (destination-file)
ConflictedBy: multi-user.target (destination-file)
Before: shutdown.target (origin-default)
Before: graphical.target (destination-file)
Before: systemd-update-utmp-runlevel.service (destination-file)
Before: multi-user.target (destination-file)
After: sysinit.target (origin-file origin-default)
After: rescue.service (origin-file)
References: systemd-update-utmp-runlevel.service (origin-file)
References: rescue.service (origin-file)
References: sysinit.target (origin-file origin-default)
References: shutdown.target (origin-default)
ReferencedBy: graphical.target (destination-file)
ReferencedBy: systemd-update-utmp-runlevel.service (destination-file)
ReferencedBy: multi-user.target (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit sys-devices-virtual-block-drbd0.device:
Description: /sys/devices/virtual/block/drbd0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:32 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:32 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:32 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-virtual-block-drbd0.device
Invocation ID: 89ee4aa9038744e3965749d0282acab2
Following Set Member: dev-drbd-by\x2ddisk-md1.device
Following Set Member: dev-drbd0.device
Following Set Member: dev-drbd-by\x2dres-er0.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/virtual/block/drbd0
Found: found-udev
-> Unit virt-guest-shutdown.target:
Description: Libvirt guests shutdown
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: virt-guest-shutdown.target
Invocation ID: ac4d938dce76451f874b2daec5e9dae3
Documentation: https://libvirt.org
Fragment Path: /lib/systemd/system/virt-guest-shutdown.target
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
RequiredBy: libvirt-guests.service (destination-file)
Conflicts: shutdown.target (origin-default)
Before: libvirt-guests.service (destination-file)
Before: shutdown.target (origin-default)
References: shutdown.target (origin-default)
ReferencedBy: libvirt-guests.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: active
-> Unit dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart3.device:
Description: TOSHIBA_HDWD120 e1:md1
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart3.device
Invocation ID: 4da896a541804b639d0a7ff3b53a861f
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2dpartuuid-4de1036d\x2d03.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart3.device
Following Set Member: dev-sda3.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart3.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda3
Found: found-udev
-> Unit session-3.scope:
Description: Session 3 of user root
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 20:02:25 CET
Inactive Exit Timestamp: Wed 2020-12-16 20:02:25 CET
Active Enter Timestamp: Wed 2020-12-16 20:02:25 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: yes
Perpetual: no
Garbage Collection Mode: inactive
Slice: user-0.slice
CGroup: /user.slice/user-0.slice/session-3.scope
CGroup realized: yes
CGroup realized mask: memory pids
CGroup own mask: memory pids
Name: session-3.scope
Invocation ID: 18e0ffbbbcd74080819e9991b2b57a96
Fragment Path: /run/systemd/transient/session-3.scope
Condition Timestamp: Wed 2020-12-16 20:02:25 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 20:02:25 CET
Assert Result: yes
Requires: user-0.slice (origin-file)
Requires: -.mount (origin-file)
Wants: user at 0.service (origin-file)
Wants: user-runtime-dir at 0.service (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
After: user-runtime-dir at 0.service (origin-file)
After: user at 0.service (origin-file)
After: user-0.slice (origin-file)
After: -.mount (origin-file)
After: systemd-logind.service (origin-file)
After: systemd-user-sessions.service (origin-file)
References: user at 0.service (origin-file)
References: user-0.slice (origin-file)
References: -.mount (origin-file)
References: systemd-user-sessions.service (origin-file)
References: systemd-logind.service (origin-file)
References: user-runtime-dir at 0.service (origin-file)
References: shutdown.target (origin-default)
RequiresMountsFor: /root (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Scope State: running
Result: success
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=18446744073709551615
DevicePolicy=auto
Delegate=no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: yes
-> Unit plymouth-quit-wait.service:
Description: Hold until boot process finishes up
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 19:59:45 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:45 CET
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: Wed 2020-12-16 19:59:45 CET
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: plymouth-quit-wait.service
Invocation ID: aecaa466290c42dcaa08dd332b4cde86
Fragment Path: /lib/systemd/system/plymouth-quit-wait.service
Condition Timestamp: Wed 2020-12-16 19:59:45 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:45 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: serial-getty at ttyS0.service (destination-file)
Before: getty at tty1.service (destination-file)
After: rc-local.service (origin-file)
After: systemd-user-sessions.service (origin-file)
After: system.slice (origin-file)
After: sysinit.target (origin-default)
After: systemd-journald.socket (origin-file)
After: basic.target (origin-default)
After: plymouth-start.service (origin-file)
References: system.slice (origin-file)
References: systemd-journald.socket (origin-file)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
References: systemd-user-sessions.service (origin-file)
References: plymouth-start.service (origin-file)
References: rc-local.service (origin-file)
References: sysinit.target (origin-default)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
ReferencedBy: getty at tty1.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: infinity
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /bin/plymouth --wait
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-user-sessions.service:
Description: Permit User Sessions
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:31 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:31 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-user-sessions.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-user-sessions.service
Invocation ID: 45b3e77af1d549828e8e2f560e80234d
Documentation: man:systemd-user-sessions.service(8)
Fragment Path: /lib/systemd/system/systemd-user-sessions.service
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: user at 0.service (destination-file)
Before: session-4.scope (destination-file)
Before: shutdown.target (origin-default)
Before: user-runtime-dir at 0.service (destination-file)
Before: serial-getty at ttyS0.service (destination-file)
Before: session-3.scope (destination-file)
Before: plymouth-quit.service (destination-file)
Before: systemd-ask-password-wall.service (destination-file)
Before: multi-user.target (destination-default)
Before: lightdm.service (destination-file)
Before: getty at tty1.service (destination-file)
Before: plymouth-quit-wait.service (destination-file)
Before: user-0.slice (destination-file)
After: nss-user-lookup.target (origin-file)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: network.target (origin-file)
After: systemd-journald.socket (origin-file)
After: remote-fs.target (origin-file)
After: basic.target (origin-default)
References: sysinit.target (origin-default)
References: network.target (origin-file)
References: system.slice (origin-file)
References: basic.target (origin-default)
References: systemd-journald.socket (origin-file)
References: remote-fs.target (origin-file)
References: nss-user-lookup.target (origin-file)
References: shutdown.target (origin-default)
ReferencedBy: getty at tty1.service (destination-file)
ReferencedBy: systemd-ask-password-wall.service (destination-file)
ReferencedBy: session-4.scope (destination-file)
ReferencedBy: user-runtime-dir at 0.service (destination-file)
ReferencedBy: plymouth-quit-wait.service (destination-file)
ReferencedBy: plymouth-quit.service (destination-file)
ReferencedBy: session-3.scope (destination-file)
ReferencedBy: serial-getty at ttyS0.service (destination-file)
ReferencedBy: user-0.slice (destination-file)
ReferencedBy: multi-user.target (destination-file destination-default)
ReferencedBy: user at 0.service (destination-file)
ReferencedBy: lightdm.service (destination-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-user-sessions start
-> ExecStop:
Command Line: /lib/systemd/systemd-user-sessions stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit postgresql.service:
Description: postgresql.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: postgresql.service
Before: exim4.service (destination-file)
ReferencedBy: exim4.service (destination-file)
-> Unit clamav-daemon.service:
Description: clamav-daemon.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: clamav-daemon.service
Before: exim4.service (destination-file)
ReferencedBy: exim4.service (destination-file)
-> Unit umount.target:
Description: Unmount All Filesystems
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: umount.target
Documentation: man:systemd.special(7)
Fragment Path: /lib/systemd/system/umount.target
ConflictedBy: boot.mount (destination-file)
ConflictedBy: run-user-0.mount (destination-mountinfo-default)
After: boot.mount (destination-file)
After: run-user-0.mount (destination-mountinfo-default)
ReferencedBy: boot.mount (destination-file)
ReferencedBy: run-user-0.mount (destination-mountinfo-default)
StopWhenUnneeded: no
RefuseManualStart: yes
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Target State: dead
-> Unit virtlogd.service:
Description: Virtual machine log manager
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: virtlogd.service
Documentation: man:virtlogd(8)
Documentation: https://libvirt.org
Fragment Path: /lib/systemd/system/virtlogd.service
Requires: virtlogd.socket (origin-file)
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
Requires: virtlogd-admin.socket (origin-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: libvirtd.service (origin-file)
After: virtlogd.socket (destination-implicit)
After: systemd-journald.socket (origin-file)
After: sysinit.target (origin-default)
After: system.slice (origin-file)
After: basic.target (origin-default)
After: virtlogd-admin.socket (destination-implicit)
TriggeredBy: virtlogd.socket (destination-implicit)
TriggeredBy: virtlogd-admin.socket (destination-implicit)
References: sysinit.target (origin-default)
References: virtlogd-admin.socket (origin-file)
References: systemd-journald.socket (origin-file)
References: virtlogd.socket (origin-file)
References: shutdown.target (origin-default)
References: basic.target (origin-default)
References: libvirtd.service (origin-file)
References: system.slice (origin-file)
ReferencedBy: virtlogd.socket (destination-implicit)
ReferencedBy: virtlogd-admin.socket (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
EnvironmentFile: -/etc/default/virtlogd
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
OOMScoreAdjust: -900
LimitNOFILE: 16384
LimitNOFILESoft: 16384
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /usr/sbin/virtlogd $VIRTLOGD_ARGS
-> ExecReload:
Command Line: /bin/kill -USR1 $MAINPID
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit apt-daily.timer:
Description: Daily apt download activities
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:59 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:30 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:30 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: apt-daily.timer
Invocation ID: d93e48f8cca54fd9bd364dda755369a7
Fragment Path: /lib/systemd/system/apt-daily.timer
Condition Timestamp: Wed 2020-12-16 19:59:30 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:30 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: -.mount (origin-file origin-path)
WantedBy: timers.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: shutdown.target (origin-default)
Before: apt-daily-upgrade.timer (destination-file)
Before: timers.target (origin-default)
Before: apt-daily.service (origin-implicit)
After: sysinit.target (origin-default)
After: time-sync.target (origin-default)
After: -.mount (origin-file origin-path)
Triggers: apt-daily.service (origin-implicit)
References: time-sync.target (origin-default)
References: sysinit.target (origin-default)
References: -.mount (origin-file origin-path)
References: shutdown.target (origin-default)
References: apt-daily.service (origin-implicit)
References: timers.target (origin-default)
ReferencedBy: timers.target (destination-file)
ReferencedBy: apt-daily-upgrade.timer (destination-file)
RequiresMountsFor: /var/lib/systemd/timers (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Timer State: waiting
Result: success
Unit: apt-daily.service
Persistent: yes
WakeSystem: no
Accuracy: 1min
RemainAfterElapse: yes
OnCalendar: *-*-* 06,18:00:00
-> Unit systemd-ask-password-console.service:
Description: Dispatch Password Requests to Console
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
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 untested
Requires: system.slice (origin-file)
Conflicts: emergency.service (origin-file)
Conflicts: shutdown.target (origin-file)
Before: shutdown.target (origin-file)
After: system.slice (origin-file)
After: systemd-vconsole-setup.service (origin-file)
After: systemd-ask-password-console.path (destination-implicit)
After: plymouth-start.service (origin-file)
After: systemd-journald.socket (origin-file)
TriggeredBy: systemd-ask-password-console.path (destination-implicit)
References: system.slice (origin-file)
References: systemd-vconsole-setup.service (origin-file)
References: emergency.service (origin-file)
References: shutdown.target (origin-file)
References: plymouth-start.service (origin-file)
References: systemd-journald.socket (origin-file)
ReferencedBy: systemd-ask-password-console.path (destination-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: dead
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
SystemCallArchitectures: native
-> ExecStart:
Command Line: /bin/systemd-tty-ask-password-agent --watch --console
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device:
Description: hp_DVD-RAM_GH82N
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: sys-devices-pci0000:00-0000:00:1f.2-ata3-host2-target2:0:0-2:0:0:0-block-sr0.device
Invocation ID: 91ea85ed53e84e99a6aa281773d35a76
Following Set Member: dev-cdrw.device
Following Set Member: dev-dvdrw.device
Following Set Member: dev-sr0.device
Following Set Member: dev-dvd.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d3.device
Following Set Member: dev-cdrom.device
Following Set Member: dev-disk-by\x2did-ata\x2dhp_DVD\x2dRAM_GH82N_303CD043357.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sr0
Found: found-udev
-> Unit dev-disk-by\x2dpartuuid-4de1036d\x2d02.device:
Description: TOSHIBA_HDWD120 e1:0
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: dev-disk-by\x2dpartuuid-4de1036d\x2d02.device
Invocation ID: 379c5637fcc143af9d1522cce02bfb61
Following: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
Following Set Member: dev-disk-by\x2did-wwn\x2d0x5000039fdbdc6190\x2dpart2.device
Following Set Member: dev-disk-by\x2dpath-pci\x2d0000:00:1f.2\x2data\x2d1\x2dpart2.device
Following Set Member: dev-sda2.device
Following Set Member: dev-disk-by\x2did-ata\x2dTOSHIBA_HDWD120_6030EGHAS\x2dpart2.device
Following Set Member: sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Device State: plugged
Sysfs Path: /sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda/sda2
Found: found-udev
-> Unit proc-sys-fs-binfmt_misc.mount:
Description: Arbitrary Executable File Formats File System
Instance: n/a
Unit Load State: loaded
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: n/a
CGroup realized: no
CGroup own mask: memory pids
Name: proc-sys-fs-binfmt_misc.mount
Documentation: https://www.kernel.org/doc/html/latest/admin-guide/binfmt-misc.html
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/proc-sys-fs-binfmt_misc.mount
Requires: system.slice (origin-file)
Requires: -.mount (origin-implicit origin-path)
After: -.mount (origin-implicit origin-path)
After: systemd-journald.socket (origin-file)
After: proc-sys-fs-binfmt_misc.automount (destination-implicit)
After: system.slice (origin-file)
TriggeredBy: proc-sys-fs-binfmt_misc.automount (destination-implicit)
References: -.mount (origin-implicit origin-path)
References: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
ReferencedBy: proc-sys-fs-binfmt_misc.automount (destination-implicit)
RequiresMountsFor: /proc/sys/fs (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Mount State: dead
Result: success
Where: /proc/sys/fs/binfmt_misc
What: binfmt_misc
File System Type: binfmt_misc
Options: n/a
From /proc/self/mountinfo: no
From fragment: yes
Extrinsic: yes
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit apparmor.service:
Description: Load AppArmor profiles
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/apparmor.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: apparmor.service
Invocation ID: 1fc1a1da34914a8f9dd9720760e96611
Documentation: man:apparmor(7)
Documentation: https://gitlab.com/apparmor/apparmor/wikis/home/
Fragment Path: /lib/systemd/system/apparmor.service
ConditionPathExists: !/run/live/overlay/work untested
ConditionPathExists: !/rofs/etc/apparmor.d untested
ConditionSecurity: apparmor untested
AssertPathIsReadWrite: /sys/kernel/security/apparmor/.load untested
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
Before: ifup at enp0s25.service (destination-file)
Before: networking.service (destination-file)
Before: libvirtd.service (destination-file)
After: system.slice (origin-file)
After: local-fs.target (origin-file)
After: systemd-journald-audit.socket (origin-file)
After: systemd-journald.socket (origin-file)
After: -.mount (origin-file origin-path)
References: -.mount (origin-file origin-path)
References: sysinit.target (origin-file)
References: system.slice (origin-file)
References: local-fs.target (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-journald-audit.socket (origin-file)
ReferencedBy: networking.service (destination-file)
ReferencedBy: libvirtd.service (destination-file)
ReferencedBy: ifup at enp0s25.service (destination-file)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /var/cache/apparmor (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: infinity
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/apparmor/apparmor.systemd reload
-> ExecReload:
Command Line: /lib/apparmor/apparmor.systemd reload
-> ExecStop:
Command Line: /bin/true
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-random-seed.service:
Description: Load/Save Random Seed
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/systemd-random-seed.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: systemd-random-seed.service
Invocation ID: 3e988a2256584331836c83c5dbf711a0
Documentation: man:systemd-random-seed.service(8)
Documentation: man:random(4)
Fragment Path: /lib/systemd/system/systemd-random-seed.service
ConditionVirtualization: !container untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-path)
WantedBy: sysinit.target (destination-file)
Conflicts: shutdown.target (origin-file)
Before: sysinit.target (origin-file)
Before: shutdown.target (origin-file)
After: systemd-journald.socket (origin-file)
After: -.mount (origin-file origin-path)
After: system.slice (origin-file)
After: systemd-remount-fs.service (origin-file)
References: shutdown.target (origin-file)
References: -.mount (origin-file origin-path)
References: sysinit.target (origin-file)
References: systemd-journald.socket (origin-file)
References: systemd-remount-fs.service (origin-file)
References: system.slice (origin-file)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /var/lib/systemd/random-seed (origin-file)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: exited
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: yes
GuessMainPID: yes
Type: oneshot
Restart: no
NotifyAccess: none
NotifyState: unknown
RestartSec: 100ms
TimeoutStartSec: 30s
TimeoutStopSec: 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStart:
Command Line: /lib/systemd/systemd-random-seed load
-> ExecStop:
Command Line: /lib/systemd/systemd-random-seed save
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit fail2ban.service:
Description: Fail2Ban Service
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:31 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:31 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:31 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/fail2ban.service
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: fail2ban.service
Invocation ID: e23dfa5f8bcd4a528638db0aecaf1f8e
Documentation: man:fail2ban(1)
Fragment Path: /lib/systemd/system/fail2ban.service
Condition Timestamp: Wed 2020-12-16 19:59:31 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:31 CET
Assert Result: yes
Requires: sysinit.target (origin-default)
Requires: system.slice (origin-file)
PartOf: firewalld.service (origin-file)
WantedBy: multi-user.target (destination-file)
Conflicts: shutdown.target (origin-default)
Before: multi-user.target (destination-default)
Before: shutdown.target (origin-default)
After: basic.target (origin-default)
After: system.slice (origin-file)
After: systemd-journald.socket (origin-file)
After: network.target (origin-file)
After: sysinit.target (origin-default)
After: iptables.service (origin-file)
After: firewalld.service (origin-file)
After: ip6tables.service (origin-file)
After: ipset.service (origin-file)
References: systemd-journald.socket (origin-file)
References: firewalld.service (origin-file)
References: iptables.service (origin-file)
References: sysinit.target (origin-default)
References: network.target (origin-file)
References: ipset.service (origin-file)
References: system.slice (origin-file)
References: ip6tables.service (origin-file)
References: basic.target (origin-default)
References: shutdown.target (origin-default)
ReferencedBy: multi-user.target (destination-file destination-default)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: no
Service State: running
Result: success
Reload Result: success
PermissionsStartOnly: no
RootDirectoryStartOnly: no
RemainAfterExit: no
GuessMainPID: yes
Type: simple
Restart: on-failure
NotifyAccess: none
NotifyState: unknown
Main PID: 688
Main PID Known: yes
Main PID Alien: no
PIDFile: /run/fail2ban/fail2ban.pid
RestartSec: 100ms
TimeoutStartSec: 1min 30s
TimeoutStopSec: 1min 30s
RuntimeMaxSec: infinity
WatchdogSec: 0
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: private
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
-> ExecStartPre:
Command Line: /bin/mkdir -p /var/run/fail2ban
-> ExecStart:
Command Line: /usr/bin/fail2ban-server -xf start
-> ExecReload:
Command Line: /usr/bin/fail2ban-client reload
-> ExecStop:
Command Line: /usr/bin/fail2ban-client stop
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit sys-kernel-debug.mount:
Description: Kernel Debug File System
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:27 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:27 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:27 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/sys-kernel-debug.mount
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: sys-kernel-debug.mount
Invocation ID: 2a6d88b90d9e4760adf60b2b689fd8a4
Documentation: https://www.kernel.org/doc/Documentation/filesystems/debugfs.txt
Documentation: https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
Fragment Path: /lib/systemd/system/sys-kernel-debug.mount
ConditionCapability: CAP_SYS_RAWIO untested
ConditionPathExists: /sys/kernel/debug untested
Condition Timestamp: Wed 2020-12-16 19:59:27 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:27 CET
Assert Result: yes
Requires: system.slice (origin-file)
Requires: -.mount (origin-implicit origin-path)
WantedBy: sysinit.target (destination-file)
Before: sysinit.target (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-implicit origin-path)
After: systemd-journald.socket (origin-file)
References: system.slice (origin-file)
References: sysinit.target (origin-file)
References: -.mount (origin-implicit origin-path)
References: systemd-journald.socket (origin-file)
ReferencedBy: sysinit.target (destination-file)
RequiresMountsFor: /sys/kernel (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: no
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Mount State: mounted
Result: success
Where: /sys/kernel/debug
What: debugfs
File System Type: debugfs
Options: rw,relatime
From /proc/self/mountinfo: yes
From fragment: yes
Extrinsic: yes
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit systemd-update-done.service:
Description: systemd-update-done.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: systemd-update-done.service
After: systemd-hwdb-update.service (destination-file)
After: systemd-sysusers.service (destination-file)
ReferencedBy: systemd-hwdb-update.service (destination-file)
ReferencedBy: systemd-sysusers.service (destination-file)
-> Unit boot.mount:
Description: /boot
Instance: n/a
Unit Load State: loaded
Unit Active State: active
State Change Timestamp: Wed 2020-12-16 19:59:29 CET
Inactive Exit Timestamp: Wed 2020-12-16 19:59:29 CET
Active Enter Timestamp: Wed 2020-12-16 19:59:29 CET
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: no
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: system.slice
CGroup: /system.slice/boot.mount
CGroup realized: yes
CGroup realized mask: memory devices pids bpf-firewall bpf-devices
CGroup own mask: memory pids
Name: boot.mount
Invocation ID: be4eec69509542958f0b797d7212f491
Documentation: man:fstab(5)
Documentation: man:systemd-fstab-generator(8)
Fragment Path: /run/systemd/generator/boot.mount
Source Path: /etc/fstab
Condition Timestamp: Wed 2020-12-16 19:59:29 CET
Condition Result: yes
Assert Timestamp: Wed 2020-12-16 19:59:29 CET
Assert Result: yes
Requires: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (origin-file)
Requires: system.slice (origin-file)
Requires: -.mount (origin-file origin-implicit origin-path)
BindsTo: dev-sda1.device (origin-mountinfo-implicit)
BindsTo: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device (origin-file)
RequiredBy: local-fs.target (destination-file)
RequiredBy: unattended-upgrades.service (destination-file destination-path)
Conflicts: umount.target (origin-file)
Before: umount.target (origin-file)
Before: local-fs.target (origin-file)
Before: unattended-upgrades.service (destination-file destination-path)
After: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (origin-file)
After: local-fs-pre.target (origin-file)
After: dev-sda1.device (origin-mountinfo-implicit)
After: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device (origin-file)
After: systemd-journald.socket (origin-file)
After: system.slice (origin-file)
After: -.mount (origin-file origin-implicit origin-path)
References: umount.target (origin-file)
References: -.mount (origin-file origin-implicit origin-path)
References: local-fs-pre.target (origin-file)
References: system.slice (origin-file)
References: dev-sda1.device (origin-mountinfo-implicit)
References: local-fs.target (origin-file)
References: systemd-journald.socket (origin-file)
References: dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.device (origin-file)
References: systemd-fsck at dev-disk-by\x2duuid-340f09ca\x2d7a41\x2d472e\x2d99e2\x2dd72aecd7517f.service (origin-file)
ReferencedBy: local-fs.target (destination-file)
ReferencedBy: unattended-upgrades.service (destination-file destination-path)
RequiresMountsFor: /dev/disk/by-uuid/340f09ca-7a41-472e-99e2-d72aecd7517f (origin-file)
RequiresMountsFor: / (origin-implicit)
StopWhenUnneeded: no
RefuseManualStart: no
RefuseManualStop: no
DefaultDependencies: yes
OnFailureJobMode: replace
IgnoreOnIsolate: yes
Mount State: mounted
Result: success
Where: /boot
What: /dev/sda1
File System Type: ext4
Options: rw,relatime,stripe=4
From /proc/self/mountinfo: yes
From fragment: yes
Extrinsic: no
DirectoryMode: 0755
SloppyOptions: no
LazyUnmount: no
ForceUnmount: no
TimeoutSec: 1min 30s
UMask: 0022
WorkingDirectory: /
RootDirectory: /
NonBlocking: no
PrivateTmp: no
PrivateDevices: no
ProtectKernelTunables: no
ProtectKernelModules: no
ProtectControlGroups: no
PrivateNetwork: no
PrivateUsers: no
ProtectHome: no
ProtectSystem: no
MountAPIVFS: no
IgnoreSIGPIPE: yes
MemoryDenyWriteExecute: no
RestrictRealtime: no
KeyringMode: shared
RuntimeDirectoryPreserve: no
RuntimeDirectoryMode: 0755
StateDirectoryMode: 0755
CacheDirectoryMode: 0755
LogsDirectoryMode: 0755
ConfigurationDirectoryMode: 0755
LimitNOFILE: 524288
LimitNOFILESoft: 1024
LimitMEMLOCK: 65536
LimitMEMLOCKSoft: 65536
StandardInput: null
StandardOutput: journal
StandardError: inherit
SyslogFacility: daemon
SyslogLevel: info
DynamicUser: no
LockPersonality: no
KillMode: control-group
KillSignal: SIGTERM
FinalKillSignal: SIGKILL
SendSIGKILL: yes
SendSIGHUP: no
CPUAccounting=no
IOAccounting=no
BlockIOAccounting=no
MemoryAccounting=yes
TasksAccounting=yes
IPAccounting=no
CPUWeight=18446744073709551615
StartupCPUWeight=18446744073709551615
CPUShares=18446744073709551615
StartupCPUShares=18446744073709551615
CPUQuotaPerSecSec=infinity
IOWeight=18446744073709551615
StartupIOWeight=18446744073709551615
BlockIOWeight=18446744073709551615
StartupBlockIOWeight=18446744073709551615
MemoryMin=0
MemoryLow=0
MemoryHigh=18446744073709551615
MemoryMax=18446744073709551615
MemorySwapMax=18446744073709551615
MemoryLimit=18446744073709551615
TasksMax=4915
DevicePolicy=auto
Delegate=no
-> Unit multipathd.service:
Description: multipathd.service
Instance: n/a
Unit Load State: not-found
Unit Active State: inactive
State Change Timestamp: Wed 2020-12-16 20:03:07 CET
Inactive Exit Timestamp: n/a
Active Enter Timestamp: n/a
Active Exit Timestamp: n/a
Inactive Enter Timestamp: n/a
May GC: yes
Need Daemon Reload: no
Transient: no
Perpetual: no
Garbage Collection Mode: inactive
Slice: n/a
CGroup: n/a
CGroup realized: no
Name: multipathd.service
Before: drbd.service (destination-file)
ReferencedBy: drbd.service (destination-file)
-------------- next part --------------
==> /var/lib/systemd/deb-systemd-helper-enabled/apt-daily.timer.dsh-also <==
/etc/systemd/system/timers.target.wants/apt-daily.timer
==> /var/lib/systemd/deb-systemd-helper-enabled/uuidd.service.dsh-also <==
/etc/systemd/system/sockets.target.wants/uuidd.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/virtlogd.socket <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/virtlockd-admin.socket <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/uuidd.socket <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/virtlockd.socket <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/dm-event.socket <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sockets.target.wants/virtlogd-admin.socket <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sshd.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/fail2ban.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/fail2ban.service
==> /var/lib/systemd/deb-systemd-helper-enabled/ssh.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/ssh.service
/etc/systemd/system/sshd.service
==> /var/lib/systemd/deb-systemd-helper-enabled/virtlogd.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/virtlogd.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/pacemaker.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/pacemaker.service
==> /var/lib/systemd/deb-systemd-helper-enabled/dm-event.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/dm-event.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/syslog.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/bind9-resolvconf.service.dsh-also <==
/etc/systemd/system/bind9.service.wants/bind9-resolvconf.service
==> /var/lib/systemd/deb-systemd-helper-enabled/xrdp.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/xrdp.service
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/etc-setserial.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/xrdp.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/corosync.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/libvirt-guests.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/heartbeat.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/setserial.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/xrdp-sesman.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/libvirtd.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/ssh.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/networking.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/zabbix-agent2.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/fail2ban.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/bind9.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/console-setup.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/auditd.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/cron.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/pacemaker.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/logd.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/rsyslog.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/rsync.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/multi-user.target.wants/unattended-upgrades.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/fio.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/fio.service
==> /var/lib/systemd/deb-systemd-helper-enabled/virtlockd-admin.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/virtlockd-admin.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/ssh.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/ssh.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/apparmor.service.dsh-also <==
/etc/systemd/system/sysinit.target.wants/apparmor.service
==> /var/lib/systemd/deb-systemd-helper-enabled/man-db.timer.dsh-also <==
/etc/systemd/system/timers.target.wants/man-db.timer
==> /var/lib/systemd/deb-systemd-helper-enabled/virtlockd.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/virtlockd.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/upower.service.dsh-also <==
/etc/systemd/system/graphical.target.wants/upower.service
==> /var/lib/systemd/deb-systemd-helper-enabled/corosync.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/corosync.service
==> /var/lib/systemd/deb-systemd-helper-enabled/fstrim.timer.dsh-also <==
/etc/systemd/system/timers.target.wants/fstrim.timer
==> /var/lib/systemd/deb-systemd-helper-enabled/auditd.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/auditd.service
==> /var/lib/systemd/deb-systemd-helper-enabled/virtlogd-admin.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/virtlogd-admin.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/setserial.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/setserial.service
==> /var/lib/systemd/deb-systemd-helper-enabled/logrotate.timer.dsh-also <==
/etc/systemd/system/timers.target.wants/logrotate.timer
==> /var/lib/systemd/deb-systemd-helper-enabled/libvirtd.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/libvirtd.service
/etc/systemd/system/sockets.target.wants/virtlockd.socket
/etc/systemd/system/sockets.target.wants/virtlogd.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/uuidd.socket.dsh-also <==
/etc/systemd/system/sockets.target.wants/uuidd.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/xrdp-sesman.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/xrdp-sesman.service
==> /var/lib/systemd/deb-systemd-helper-enabled/virtlockd.service.dsh-also <==
/etc/systemd/system/sockets.target.wants/virtlockd.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/networking.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/networking.service
/etc/systemd/system/network-online.target.wants/networking.service
==> /var/lib/systemd/deb-systemd-helper-enabled/logd.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/logd.service
==> /var/lib/systemd/deb-systemd-helper-enabled/graphical.target.wants/udisks2.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/etc-setserial.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/etc-setserial.service
==> /var/lib/systemd/deb-systemd-helper-enabled/blk-availability.service.dsh-also <==
/etc/systemd/system/sysinit.target.wants/blk-availability.service
==> /var/lib/systemd/deb-systemd-helper-enabled/heartbeat.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/heartbeat.service
==> /var/lib/systemd/deb-systemd-helper-enabled/rtkit-daemon.service.dsh-also <==
/etc/systemd/system/graphical.target.wants/rtkit-daemon.service
==> /var/lib/systemd/deb-systemd-helper-enabled/lvm2-lvmpolld.socket.dsh-also <==
/etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket
==> /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/sysinit.target.wants/blk-availability.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sysinit.target.wants/lvm2-monitor.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sysinit.target.wants/lvm2-lvmpolld.socket <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sysinit.target.wants/apparmor.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/sysinit.target.wants/keyboard-setup.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/console-setup.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/console-setup.service
==> /var/lib/systemd/deb-systemd-helper-enabled/ifupdown-wait-online.service.dsh-also <==
/etc/systemd/system/network-online.target.wants/ifupdown-wait-online.service
==> /var/lib/systemd/deb-systemd-helper-enabled/bind9-pkcs11.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/bind9-pkcs11.service
==> /var/lib/systemd/deb-systemd-helper-enabled/lvm2-monitor.service.dsh-also <==
/etc/systemd/system/sysinit.target.wants/lvm2-monitor.service
==> /var/lib/systemd/deb-systemd-helper-enabled/unattended-upgrades.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/unattended-upgrades.service
==> /var/lib/systemd/deb-systemd-helper-enabled/virtlogd.service.dsh-also <==
/etc/systemd/system/sockets.target.wants/virtlogd.socket
==> /var/lib/systemd/deb-systemd-helper-enabled/rsync.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/rsync.service
==> /var/lib/systemd/deb-systemd-helper-enabled/timers.target.wants/apt-daily-upgrade.timer <==
==> /var/lib/systemd/deb-systemd-helper-enabled/timers.target.wants/man-db.timer <==
==> /var/lib/systemd/deb-systemd-helper-enabled/timers.target.wants/logrotate.timer <==
==> /var/lib/systemd/deb-systemd-helper-enabled/timers.target.wants/apt-daily.timer <==
==> /var/lib/systemd/deb-systemd-helper-enabled/apt-daily-upgrade.timer.dsh-also <==
/etc/systemd/system/timers.target.wants/apt-daily-upgrade.timer
==> /var/lib/systemd/deb-systemd-helper-enabled/network-online.target.wants/networking.service <==
==> /var/lib/systemd/deb-systemd-helper-enabled/cron.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/cron.service
==> /var/lib/systemd/deb-systemd-helper-enabled/udisks2.service.dsh-also <==
/etc/systemd/system/graphical.target.wants/udisks2.service
==> /var/lib/systemd/deb-systemd-helper-enabled/keyboard-setup.service.dsh-also <==
/etc/systemd/system/sysinit.target.wants/keyboard-setup.service
==> /var/lib/systemd/deb-systemd-helper-enabled/bind9.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/bind9.service
==> /var/lib/systemd/deb-systemd-helper-enabled/zabbix-agent2.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/zabbix-agent2.service
==> /var/lib/systemd/deb-systemd-helper-enabled/libvirt-guests.service.dsh-also <==
/etc/systemd/system/multi-user.target.wants/libvirt-guests.service
-------------- next part --------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/md0 during installation
UUID=d7feb5a7-bf6f-4dd1-9c1a-eaf043afbaf4 / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=340f09ca-7a41-472e-99e2-d72aecd7517f /boot ext4 defaults 0 2
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0
More information about the Pkg-systemd-maintainers
mailing list