You are not logged in.

#1 2022-08-15 09:14:17

Dieter
Member
From: Germany
Registered: 2005-10-13
Posts: 140

Run systemd service at shutdown

Hello,
I'm running actual Arch with KDE. To keep my system up to date, I tried to configure a systemd service to run at shutdown or reboot to start a pacman script. I tried several alternatives with ExecStart, ExecStop, with and without After, Before, DefaultDependencies etc. as the examples I found in the internet look different. But up to now, I haven't found a working solution. According to journald, the service is not called at shutdown or reboot. I might be related to KDE - I tried with a LXQT DE and there it works.

Here is my last try - you can see the commented lines with some of the alternatives I tried without success:

# /etc/systemd/system/arch_update.service

[Unit]
Description=Update arch system with pacman

# at shutdown only
Requires=network.target network-online.target
#DefaultDependencies=no
After=network.target network-online.target
Before=shutdown.target reboot.target halt.target

[Service]
Type=oneshot
TimeoutStartSec=0

# at boot
#ExecStart=/root/arch_update

# at shutdown
RemainAfterExit=true
ExecStop=/root/arch_update
#ExecStart=/root/arch_update
ExecStart=/bin/true

#at shutdown
#WantedBy=shutdown.target halt.target reboot.target
WantedBy=multi-user.target

Do you have a working solution for a systemd service called at shutdown / reboot for KDE?

Offline

#2 2022-08-15 10:23:35

schard
Forum Moderator
From: Hannover
Registered: 2016-05-06
Posts: 1,988
Website

Re: Run systemd service at shutdown

What is the issue you are facing?
Please provide the respective journal of the service.
While I am pretty sure that your problem is the inversed start approach and thus a missing dependency on an active internet connection, I do not recommend running pacman upgrades blindly on shutdown.


macro_rules! yolo { { $($tokens:tt)* } => { unsafe { $($tokens)* } }; }

Online

#3 2022-08-15 12:43:18

Dieter
Member
From: Germany
Registered: 2005-10-13
Posts: 140

Re: Run systemd service at shutdown

Yes, I wouldn't recommend a "blind upgrade" during shutdown as well - but most of the times it works and is convenient.
"please provide the journal ..." - that's my problem. There is no output at all in the journal containing "arch_update". I managed to start the service during boot with some modifications, but a kernel update during boot - which often happens with Arch - has some issues, so I'd like to do the update during shutdown.

Offline

#4 2022-08-15 14:23:44

schard
Forum Moderator
From: Hannover
Registered: 2016-05-06
Posts: 1,988
Website

Re: Run systemd service at shutdown

We need:

# journalctl -au arch_update.service --no-pager
# cat /root/arch_update

See also: https://www.golinuxcloud.com/run-script … own-linux/
Note that you'll probably require network-online.target in order for pacman to download packages.

Last edited by schard (2022-08-15 14:24:51)


macro_rules! yolo { { $($tokens:tt)* } => { unsafe { $($tokens)* } }; }

Online

#5 2022-08-15 14:27:55

Dieter
Member
From: Germany
Registered: 2005-10-13
Posts: 140

Re: Run systemd service at shutdown

I did some reboots and shutdowns today, but:

[root@arch64-2017-03 dieter]# journalctl --since=today -au arch_update.service --no-pager
-- No entries --

[root@arch64-2017-03 dieter]# cat /root/arch_update

#! /bin/bash

LOG="/root/arch_update.log"
/usr/bin/date > $LOG
echo "--------------------" >> $LOG

if ! /usr/bin/pgrep pacman
then
  echo "pacman not active"
  if [ -e  /var/lib/pacman/db.lck ]
  then
    echo "remove /var/lib/pacman/db.lck"
    rm /var/lib/pacman/db.lck
  fi
fi

/usr/bin/pacman -Syu --noconfirm >> $LOG

/usr/bin/cat $LOG | /usr/bin/mailx -s "Arch Update Install" dieter@localhost

#/usr/bin/systemctl daemon-reload

# lines not needed if executed at shutdown
#/usr/bin/grep 'dovecot' $LOG
#if [ $? == 0 ]
#then
#  /usr/bin/systemctl restart dovecot
#fi

Offline

#6 2022-08-15 14:29:20

Dieter
Member
From: Germany
Registered: 2005-10-13
Posts: 140

Re: Run systemd service at shutdown

[root@arch64-2017-03 dieter]# systemctl status arch_update
○ arch_update.service - Update arch system with pacman - install
     Loaded: loaded (/etc/systemd/system/arch_update.service; enabled; preset: disabled)
     Active: inactive (dead)
[root@arch64-2017-03 dieter]#

Offline

#7 2022-08-15 14:30:58

schard
Forum Moderator
From: Hannover
Registered: 2016-05-06
Posts: 1,988
Website

Re: Run systemd service at shutdown

Well, did you enable the service after all?
Doesn't look that way.
Also you'll want to install it to shutdown.target as per the linked article and run the script on ExecStart=.

PS: Why would the service be enabled but dead if you're beyond multi-user.target and have RemainAfterExit enabled?!?!

Last edited by schard (2022-08-15 14:32:16)


macro_rules! yolo { { $($tokens:tt)* } => { unsafe { $($tokens)* } }; }

Online

#8 2022-08-15 15:30:55

Dieter
Member
From: Germany
Registered: 2005-10-13
Posts: 140

Re: Run systemd service at shutdown

Ok, let's start with LXQT where the systemd service works:

a) the service on LXQT:

# /etc/systemd/system/arch_update.service

[Unit]
Description=Update arch system with pacman - install

# at shutdown only
#Requires=network.target network-online.target
After=network.target network-online.target remote-fs.target
Before=shutdown.target

[Service]
Type=oneshot

# at boot
#ExecStart=/root/arch_update

# at shutdown
RemainAfterExit=true
ExecStop=/root/arch_update

[Install]
# at boot
#WantedBy=multi-user.target

#at shutdown
WantedBy=shutdown.target

Journal during boot, here we have the line "Aug 15 17:06:57 lucifer systemd[1]: Finished Update arch system with pacman - install."

Aug 15 17:06:57 lucifer systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 15 17:06:57 lucifer systemd[1]: Listening on PC/SC Smart Card Daemon Activation Socket.
Aug 15 17:06:57 lucifer systemd[1]: Reached target Socket Units.
Aug 15 17:06:57 lucifer systemd[1]: Reached target Basic System.
Aug 15 17:06:57 lucifer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=arch_update comm="systemd" exe="/usr/lib/systemd>
Aug 15 17:06:57 lucifer systemd[1]: Starting Save/Restore Sound Card State...
Aug 15 17:06:57 lucifer systemd[1]: Manage Sound Card State (restore and store) was skipped because of a failed condition check (ConditionPathExists=>
Aug 15 17:06:57 lucifer systemd[1]: Finished Update arch system with pacman - install.
Aug 15 17:06:57 lucifer systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Aug 15 17:06:57 lucifer systemd[1]: Starting Apply cpupower configuration...
Aug 15 17:06:57 lucifer systemd[1]: Starting CUPS Scheduler...
Aug 15 17:06:57 lucifer systemd[1]: Starting D-Bus System Message Bus...
Aug 15 17:06:57 lucifer audit: BPF prog-id=15 op=LOAD
Aug 15 17:06:57 lucifer systemd[1]: Starting Dovecot IMAP/POP3 email server...
Aug 15 17:06:57 lucifer audit: BPF prog-id=16 op=LOAD
Aug 15 17:06:57 lucifer systemd[1]: Starting Postfix Mail Transport Agent...

[root@lucifer dieter]# journalctl --since=today -au arch_update.service --no-pager
Aug 15 17:06:57 lucifer systemd[1]: Finished Update arch system with pacman - install.
Aug 15 17:11:02 lucifer systemd[1]: Stopping Update arch system with pacman - install...
Aug 15 17:11:02 lucifer arch_update[1236]: pacman not active
Aug 15 17:11:51 lucifer systemd[1]: arch_update.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Update arch system with pacman - install.
Aug 15 17:11:51 lucifer systemd[1]: arch_update.service: Consumed 23.355s CPU time.
-- Boot 5318c2fa985248feb071131201e735f9 --
Aug 15 17:12:12 lucifer systemd[1]: Finished Update arch system with pacman - install.


Here the service is shown as "active" while the system is running.

[root@lucifer dieter]# systemctl status arch_update
● arch_update.service - Update arch system with pacman - install
     Loaded: loaded (/etc/systemd/system/arch_update.service; enabled; preset: disabled)
     Active: active (exited) since Mon 2022-08-15 17:12:12 CEST; 16min ago

Aug 15 17:12:12 lucifer systemd[1]: Finished Update arch system with pacman - install.


Complete Journal during reboot:

Aug 15 17:11:02 lucifer systemd-logind[348]: System is rebooting.
Aug 15 17:11:02 lucifer sddm[370]: Authentication error: "Process crashed"
Aug 15 17:11:02 lucifer sddm[370]: Auth: sddm-helper crashed (exit code 15)
Aug 15 17:11:02 lucifer sddm[370]: Authentication error: "Process crashed"
Aug 15 17:11:02 lucifer sddm[370]: Auth: sddm-helper exited with 15
Aug 15 17:11:02 lucifer sddm[370]: Socket server stopping...
Aug 15 17:11:02 lucifer sddm[370]: Socket server stopped.
Aug 15 17:11:02 lucifer sddm[370]: Display server stopping...
Aug 15 17:11:02 lucifer kernel: audit: type=1106 audit(1660576262.371:88): pid=790 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_un>
Aug 15 17:11:02 lucifer kernel: audit: type=1104 audit(1660576262.371:89): pid=790 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_unix acc>
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.374:90): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cpupower comm="system>
Aug 15 17:11:02 lucifer audit[790]: USER_END pid=790 uid=1000 auid=1000 ses=2 msg='op=PAM:session_close grantors=pam_unix acct="root" exe="/usr/bin/s>
Aug 15 17:11:02 lucifer audit[790]: CRED_DISP pid=790 uid=1000 auid=1000 ses=2 msg='op=PAM:setcred grantors=pam_unix acct="root" exe="/usr/bin/su" ho>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cpupower comm="systemd" exe="/usr/lib/systemd/sys>
Aug 15 17:11:02 lucifer su[790]: pam_unix(su:session): session closed for user root
Aug 15 17:11:02 lucifer systemd[1]: Stopping Session 2 of User dieter...
Aug 15 17:11:02 lucifer avahi-daemon[342]: Got SIGTERM, quitting.
Aug 15 17:11:02 lucifer at-spi-bus-launcher[739]: X connection to :0 broken (explicit kill or server shutdown).
Aug 15 17:11:02 lucifer systemd[1]: Removed slice Slice /system/getty.
Aug 15 17:11:02 lucifer avahi-daemon[342]: Leaving mDNS multicast group on interface enp2s0.IPv6 with address 2001:9e8:3528:1800:aaa1:59ff:fe1e:9b69.
Aug 15 17:11:02 lucifer systemd[1]: Removed slice Slice /system/modprobe.
Aug 15 17:11:02 lucifer avahi-daemon[342]: Leaving mDNS multicast group on interface enp2s0.IPv4 with address 192.168.178.23.
Aug 15 17:11:02 lucifer systemd[1]: Stopped target Graphical Interface.
Aug 15 17:11:02 lucifer avahi-daemon[342]: Leaving mDNS multicast group on interface lo.IPv6 with address ::1.
Aug 15 17:11:02 lucifer systemd[1]: Stopped target Multi-User System.
Aug 15 17:11:02 lucifer avahi-daemon[342]: Leaving mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Aug 15 17:11:02 lucifer systemd[1]: Stopped target Login Prompts.
Aug 15 17:11:02 lucifer avahi-daemon[342]: avahi-daemon 0.8 exiting.
Aug 15 17:11:02 lucifer systemd[1]: Stopped target Host and Network Name Lookups.
Aug 15 17:11:02 lucifer systemd[1]: Stopped target Sound Card.
Aug 15 17:11:02 lucifer systemd[1]: Stopped target Timer Units.
Aug 15 17:11:02 lucifer systemd[1]: fstrim.timer: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Discard unused blocks once a week.
Aug 15 17:11:02 lucifer systemd[1]: man-db.timer: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Daily man-db regeneration.
Aug 15 17:11:02 lucifer systemd[1]: shadow.timer: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Daily verification of password and group files.
Aug 15 17:11:02 lucifer systemd[1]: systemd-tmpfiles-clean.timer: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Daily Cleanup of Temporary Directories.
Aug 15 17:11:02 lucifer systemd[1]: Stopped target System Time Set.
Aug 15 17:11:02 lucifer systemd[1]: lvm2-lvmpolld.socket: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Closed LVM2 poll daemon socket.
Aug 15 17:11:02 lucifer systemd[1]: systemd-coredump.socket: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Closed Process Core Dump Socket.
Aug 15 17:11:02 lucifer systemd[1]: systemd-rfkill.socket: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
Aug 15 17:11:02 lucifer systemd[1]: Stopping Save/Restore Sound Card State...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Update arch system with pacman - install...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Avahi mDNS/DNS-SD Stack...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Manage, Install and Generate Color Profiles...
Aug 15 17:11:02 lucifer systemd[1]: cpupower.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Apply cpupower configuration.
Aug 15 17:11:02 lucifer systemd[1]: Stopping CUPS Scheduler...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Dovecot IMAP/POP3 email server...
Aug 15 17:11:02 lucifer systemd[1]: Starting Generate shutdown-ramfs...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Authorization Manager...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Postfix Mail Transport Agent...
Aug 15 17:11:02 lucifer systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Simple Desktop Display Manager...
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=colord comm="systemd" exe="/usr/lib/systemd/syste>
Aug 15 17:11:02 lucifer pulseaudio[627]: X11 I/O error handler called
Aug 15 17:11:02 lucifer pulseaudio[627]: X11 I/O error exit handler called, preparing to tear down X11 modules
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.394:91): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=colord comm="systemd">
Aug 15 17:11:02 lucifer systemd[1]: Stopping Load/Save Random Seed...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Disk Manager...
Aug 15 17:11:02 lucifer systemd[1]: Stopping Daemon for power management...
Aug 15 17:11:02 lucifer systemd[1]: mnt-NAS.mount: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Unmounted NAS mount.
Aug 15 17:11:02 lucifer systemd[1]: colord.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Manage, Install and Generate Color Profiles.
Aug 15 17:11:02 lucifer udisksd[673]: udisks daemon version 2.9.4 exiting
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cups comm="systemd" exe="/usr/lib/systemd/systemd>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/syste>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd>
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.404:92): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=avahi-daemon comm="sy>
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.404:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=cups comm="systemd" e>
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.404:94): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd">
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.404:95): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="sy>
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.407:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=alsa-restore comm="sy>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=alsa-restore comm="systemd" exe="/usr/lib/systemd>
Aug 15 17:11:02 lucifer systemd[1]: avahi-daemon.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Avahi mDNS/DNS-SD Stack.
Aug 15 17:11:02 lucifer systemd[1]: cups.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped CUPS Scheduler.
Aug 15 17:11:02 lucifer systemd[1]: polkit.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Authorization Manager.
Aug 15 17:11:02 lucifer systemd[1]: rtkit-daemon.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
Aug 15 17:11:02 lucifer systemd[1]: alsa-restore.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Save/Restore Sound Card State.
Aug 15 17:11:02 lucifer arch_update[1236]: pacman not active
Aug 15 17:11:02 lucifer systemd[1]: udisks2.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Disk Manager.
Aug 15 17:11:02 lucifer systemd[1]: upower.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Daemon for power management.
Aug 15 17:11:02 lucifer systemd[1]: systemd-random-seed.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Load/Save Random Seed.
Aug 15 17:11:02 lucifer kernel: audit: type=1131 audit(1660576262.431:97): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=udisks2 comm="systemd" exe="/usr/lib/systemd/syst>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=upower comm="systemd" exe="/usr/lib/systemd/syste>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/>
Aug 15 17:11:02 lucifer dovecot[346]: master: Warning: Killed with signal 15 (by pid=1237 uid=0 code=kill)
Aug 15 17:11:02 lucifer systemd-logind[348]: Session 2 logged out. Waiting for processes to exit.
Aug 15 17:11:02 lucifer postfix[1240]: Postfix is using backwards-compatible default settings
Aug 15 17:11:02 lucifer postfix[1240]: See http://www.postfix.org/COMPATIBILITY_README.html for details
Aug 15 17:11:02 lucifer postfix[1240]: To disable backwards compatibility use "postconf compatibility_level=3.6" and "postfix reload"
Aug 15 17:11:02 lucifer lxqt-panel[613]: closing
Aug 15 17:11:02 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:02 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:02 lucifer mkinitcpio[1238]: ==> Starting build: none
Aug 15 17:11:02 lucifer mkinitcpio[1238]:   -> Running build hook: [sd-shutdown]
Aug 15 17:11:02 lucifer postfix/postfix-script[1278]: stopping the Postfix mail system
Aug 15 17:11:02 lucifer postfix/master[477]: terminating on signal 15
Aug 15 17:11:02 lucifer systemd[1]: postfix.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Postfix Mail Transport Agent.
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=postfix comm="systemd" exe="/usr/lib/systemd/syst>
Aug 15 17:11:02 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:02 lucifer systemd[1]: session-2.scope: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped Session 2 of User dieter.
Aug 15 17:11:02 lucifer systemd[1]: session-2.scope: Consumed 44.877s CPU time.
Aug 15 17:11:02 lucifer systemd[1]: Stopping User Manager for UID 1000...
Aug 15 17:11:02 lucifer systemd-logind[348]: Removed session 2.
Aug 15 17:11:02 lucifer systemd[555]: Activating special unit Exit the Session...
Aug 15 17:11:02 lucifer systemd[555]: Stopped target Main User Target.
Aug 15 17:11:02 lucifer systemd[555]: Stopping Accessibility services bus...
Aug 15 17:11:02 lucifer systemd[555]: Stopping D-Bus User Message Bus...
Aug 15 17:11:02 lucifer systemd[555]: Stopping Virtual filesystem service...
Aug 15 17:11:02 lucifer systemd[555]: Stopping Virtual filesystem service - Media Transfer Protocol monitor...
Aug 15 17:11:02 lucifer systemd[555]: Stopping Virtual filesystem service - disk device monitor...
Aug 15 17:11:02 lucifer systemd[555]: Stopping Bluetooth OBEX service...
Aug 15 17:11:02 lucifer obexd[740]: Terminating
Aug 15 17:11:02 lucifer systemd[555]: Stopped Virtual filesystem service - Media Transfer Protocol monitor.
Aug 15 17:11:02 lucifer systemd[555]: Stopped Bluetooth OBEX service.
Aug 15 17:11:02 lucifer systemd[1]: run-user-1000-gvfs.mount: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Unmounted /run/user/1000/gvfs.
Aug 15 17:11:02 lucifer systemd[555]: Stopped D-Bus User Message Bus.
Aug 15 17:11:02 lucifer systemd[555]: Stopped Virtual filesystem service - disk device monitor.
Aug 15 17:11:02 lucifer systemd[555]: Stopped Virtual filesystem service.
Aug 15 17:11:02 lucifer systemd[555]: Removed slice User Core Session Slice.
Aug 15 17:11:02 lucifer mkinitcpio[1238]: ==> Build complete.
Aug 15 17:11:02 lucifer systemd[1]: mkinitcpio-generate-shutdown-ramfs.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Finished Generate shutdown-ramfs.
Aug 15 17:11:02 lucifer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=mkinitcpio-generate-shutdown-ramfs comm="systemd>
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=mkinitcpio-generate-shutdown-ramfs comm="systemd">
Aug 15 17:11:02 lucifer systemd[555]: Stopped Accessibility services bus.
Aug 15 17:11:02 lucifer systemd[555]: Stopped target Basic System.
Aug 15 17:11:02 lucifer systemd[555]: Stopped target Paths.
Aug 15 17:11:02 lucifer systemd[555]: Stopped target Sockets.
Aug 15 17:11:02 lucifer systemd[555]: Stopped target Timers.
Aug 15 17:11:02 lucifer systemd[555]: Closed D-Bus User Message Bus Socket.
Aug 15 17:11:02 lucifer systemd[555]: Closed GnuPG network certificate management daemon.
Aug 15 17:11:02 lucifer systemd[555]: Closed GCR ssh-agent wrapper.
Aug 15 17:11:02 lucifer systemd[555]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Aug 15 17:11:02 lucifer systemd[555]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Aug 15 17:11:02 lucifer systemd[555]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Aug 15 17:11:02 lucifer systemd[555]: Closed GnuPG cryptographic agent and passphrase cache.
Aug 15 17:11:02 lucifer systemd[555]: Closed p11-kit server.
Aug 15 17:11:02 lucifer systemd[555]: Closed Sound System.
Aug 15 17:11:02 lucifer systemd[555]: Removed slice User Application Slice.
Aug 15 17:11:02 lucifer systemd[555]: Reached target Shutdown.
Aug 15 17:11:02 lucifer systemd[555]: Finished Exit the Session.
Aug 15 17:11:02 lucifer systemd[555]: Reached target Exit the Session.
Aug 15 17:11:02 lucifer systemd[556]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8004 service=[systemd-user] terminal=[] user=>
Aug 15 17:11:02 lucifer systemd[1]: user@1000.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped User Manager for UID 1000.
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@1000 comm="systemd" exe="/usr/lib/systemd/sy>
Aug 15 17:11:02 lucifer systemd[1]: Stopping User Runtime Directory /run/user/1000...
Aug 15 17:11:02 lucifer systemd[1]: run-user-1000.mount: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Unmounted /run/user/1000.
Aug 15 17:11:02 lucifer systemd[1]: user-runtime-dir@1000.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped User Runtime Directory /run/user/1000.
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/li>
Aug 15 17:11:02 lucifer systemd[1]: Removed slice User Slice of UID 1000.
Aug 15 17:11:02 lucifer systemd[1]: user-1000.slice: Consumed 45.499s CPU time.
Aug 15 17:11:02 lucifer systemd[1]: Stopping D-Bus System Message Bus...
Aug 15 17:11:02 lucifer systemd[1]: dbus.service: Deactivated successfully.
Aug 15 17:11:02 lucifer systemd[1]: Stopped D-Bus System Message Bus.
Aug 15 17:11:02 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dbus comm="systemd" exe="/usr/lib/systemd/systemd>
Aug 15 17:11:02 lucifer sddm[370]: Display server stopped.
Aug 15 17:11:02 lucifer sddm[370]: Running display stop script  "/usr/share/sddm/scripts/Xstop"
Aug 15 17:11:02 lucifer sddm[370]: Removing display ":0" ...
Aug 15 17:11:02 lucifer sddm[370]: Adding new display on vt 1 ...
Aug 15 17:11:02 lucifer sddm[370]: Loading theme configuration from ""
Aug 15 17:11:02 lucifer sddm[370]: Display server starting...
Aug 15 17:11:02 lucifer sddm[370]: Adding cookie to "/var/run/sddm/{1a3210db-532f-4e6f-882f-c1240521ccb6}"
Aug 15 17:11:02 lucifer sddm[370]: Running: /usr/bin/X -nolisten tcp -background none -seat seat0 vt1 -auth /var/run/sddm/{1a3210db-532f-4e6f-882f-c1>
Aug 15 17:11:03 lucifer systemd[1]: dovecot.service: Deactivated successfully.
Aug 15 17:11:03 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=dovecot comm="systemd" exe="/usr/lib/systemd/syst>
Aug 15 17:11:03 lucifer systemd[1]: Stopped Dovecot IMAP/POP3 email server.
Aug 15 17:11:03 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:03 lucifer sddm[370]: Setting default cursor
Aug 15 17:11:03 lucifer sddm[370]: Could not setup default cursor
Aug 15 17:11:03 lucifer sddm[370]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Aug 15 17:11:03 lucifer sddm[370]: Display server started.
Aug 15 17:11:03 lucifer sddm[370]: Socket server starting...
Aug 15 17:11:03 lucifer sddm[370]: Socket server started.
Aug 15 17:11:03 lucifer sddm[370]: Loading theme configuration from ""
Aug 15 17:11:03 lucifer sddm[370]: Greeter starting...
Aug 15 17:11:03 lucifer sddm[370]: Signal received: SIGTERM
Aug 15 17:11:03 lucifer sddm[370]: Socket server stopping...
Aug 15 17:11:03 lucifer sddm[370]: Socket server stopped.
Aug 15 17:11:03 lucifer sddm[370]: Display server stopping...
Aug 15 17:11:03 lucifer sddm-helper[1371]: [PAM] Starting...
Aug 15 17:11:03 lucifer audit[1371]: USER_AUTH pid=1371 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sdd>
Aug 15 17:11:03 lucifer audit[1371]: USER_ACCT pid=1371 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" e>
Aug 15 17:11:03 lucifer sddm-helper[1371]: [PAM] Authenticating...
Aug 15 17:11:03 lucifer sddm-helper[1371]: [PAM] returning.
Aug 15 17:11:04 lucifer sddm[370]: Display server stopped.
Aug 15 17:11:04 lucifer sddm[370]: Running display stop script  "/usr/share/sddm/scripts/Xstop"
Aug 15 17:11:04 lucifer sddm[370]: QProcess: Destroyed while process ("/usr/lib/sddm/sddm-helper") is still running.
Aug 15 17:11:04 lucifer systemd[1]: sddm.service: Deactivated successfully.
Aug 15 17:11:04 lucifer systemd[1]: Stopped Simple Desktop Display Manager.
Aug 15 17:11:04 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=sddm comm="systemd" exe="/usr/lib/systemd/systemd>
Aug 15 17:11:04 lucifer systemd[1]: sddm.service: Consumed 4.750s CPU time.
Aug 15 17:11:04 lucifer systemd[1]: Stopping User Login Management...
Aug 15 17:11:04 lucifer systemd[1]: Stopping Permit User Sessions...
Aug 15 17:11:04 lucifer systemd[1]: systemd-user-sessions.service: Deactivated successfully.
Aug 15 17:11:04 lucifer systemd[1]: Stopped Permit User Sessions.
Aug 15 17:11:04 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/li>
Aug 15 17:11:04 lucifer systemd[1]: systemd-logind.service: Deactivated successfully.
Aug 15 17:11:04 lucifer systemd[1]: Stopped User Login Management.
Aug 15 17:11:04 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-logind comm="systemd" exe="/usr/lib/syste>
Aug 15 17:11:04 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer systemd[1]: Reloading.
Aug 15 17:11:43 lucifer audit: BPF prog-id=22 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=23 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=24 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=25 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=26 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer kernel: kauditd_printk_skb: 19 callbacks suppressed
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:117): prog-id=22 op=LOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:118): prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:119): prog-id=23 op=LOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:120): prog-id=24 op=LOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:121): prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:122): prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:123): prog-id=25 op=LOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:124): prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:125): prog-id=26 op=LOAD
Aug 15 17:11:43 lucifer kernel: audit: type=1334 audit(1660576303.412:126): prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=27 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=28 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=29 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=30 op=LOAD
Aug 15 17:11:43 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer systemd[1]: arch_update.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Update arch system with pacman - install.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=arch_update comm="systemd" exe="/usr/lib/systemd/>
Aug 15 17:11:51 lucifer systemd[1]: arch_update.service: Consumed 23.355s CPU time.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Basic System.
Aug 15 17:11:51 lucifer kernel: kauditd_printk_skb: 8 callbacks suppressed
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.662:135): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=arch_update comm="sy>
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Network.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Path Units.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Remote File Systems.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Slice Units.
Aug 15 17:11:51 lucifer systemd[1]: Removed slice User and Session Slice.
Aug 15 17:11:51 lucifer systemd[1]: user.slice: Consumed 46.028s CPU time.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Socket Units.
Aug 15 17:11:51 lucifer systemd[1]: avahi-daemon.socket: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Closed Avahi mDNS/DNS-SD Stack Activation Socket.
Aug 15 17:11:51 lucifer systemd[1]: cups.socket: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Closed CUPS Scheduler.
Aug 15 17:11:51 lucifer systemd[1]: dbus.socket: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Closed D-Bus System Message Bus Socket.
Aug 15 17:11:51 lucifer systemd[1]: pcscd.socket: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Closed PC/SC Smart Card Daemon Activation Socket.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target System Initialization.
Aug 15 17:11:51 lucifer systemd[1]: proc-sys-fs-binfmt_misc.automount: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Unset automount Arbitrary Executable File Formats File System Automount Point.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Local Encrypted Volumes.
Aug 15 17:11:51 lucifer systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Aug 15 17:11:51 lucifer systemd[1]: systemd-ask-password-wall.path: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Local Integrity Protected Volumes.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Local Verity Protected Volumes.
Aug 15 17:11:51 lucifer systemd[1]: Stopping Load/Save Screen Backlight Brightness of backlight:acpi_video0...
Aug 15 17:11:51 lucifer systemd[1]: Stopping Load/Save Screen Backlight Brightness of backlight:acpi_video1...
Aug 15 17:11:51 lucifer systemd[1]: Stopping Network Configuration...
Aug 15 17:11:51 lucifer systemd-networkd[244]: enp2s0: DHCP lease lost
Aug 15 17:11:51 lucifer systemd[1]: Stopping Network Name Resolution...
Aug 15 17:11:51 lucifer systemd[1]: Stopping Network Time Synchronization...
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-done comm="systemd" exe="/usr/lib/>
Aug 15 17:11:51 lucifer systemd[1]: systemd-update-done.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Update is Completed.
Aug 15 17:11:51 lucifer systemd[1]: ldconfig.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Rebuild Dynamic Linker Cache.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="systemd" exe="/usr/lib/systemd/sys>
Aug 15 17:11:51 lucifer systemd[1]: systemd-boot-update.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Automatic Boot Loader Update.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-boot-update comm="systemd" exe="/usr/lib/>
Aug 15 17:11:51 lucifer systemd[1]: systemd-journal-catalog-update.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Rebuild Journal Catalog.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-catalog-update comm="systemd" exe>
Aug 15 17:11:51 lucifer systemd[1]: Stopping Record System Boot/Shutdown in UTMP...
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.702:136): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-done >
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.702:137): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=ldconfig comm="syste>
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.702:138): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-boot-update >
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.702:139): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-journal-cata>
Aug 15 17:11:51 lucifer systemd[1]: systemd-backlight@backlight:acpi_video0.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Load/Save Screen Backlight Brightness of backlight:acpi_video0.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:acpi_video0 comm="sys>
Aug 15 17:11:51 lucifer systemd[1]: systemd-backlight@backlight:acpi_video1.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Load/Save Screen Backlight Brightness of backlight:acpi_video1.
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.706:140): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@ba>
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@backlight:acpi_video1 comm="sys>
Aug 15 17:11:51 lucifer systemd[1]: Removed slice Slice /system/systemd-backlight.
Aug 15 17:11:51 lucifer audit[4327]: SYSTEM_SHUTDOWN pid=4327 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update-utmp" exe="/usr/lib/sys>
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.709:141): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-backlight@ba>
Aug 15 17:11:51 lucifer kernel: audit: type=1128 audit(1660576311.709:142): pid=4327 uid=0 auid=4294967295 ses=4294967295 msg=' comm="systemd-update->
Aug 15 17:11:51 lucifer systemd[1]: systemd-update-utmp.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Record System Boot/Shutdown in UTMP.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/>
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.712:143): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-update-utmp >
Aug 15 17:11:51 lucifer systemd-networkd[244]: enp2s0: DHCPv6 lease lost
Aug 15 17:11:51 lucifer systemd[1]: systemd-timesyncd.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Network Time Synchronization.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd comm="systemd" exe="/usr/lib/sy>
Aug 15 17:11:51 lucifer kernel: audit: type=1131 audit(1660576311.726:144): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-timesyncd co>
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer systemd[1]: systemd-networkd.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Network Configuration.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-networkd comm="systemd" exe="/usr/lib/sys>
Aug 15 17:11:51 lucifer systemd[1]: systemd-resolved.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Network Name Resolution.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-resolved comm="systemd" exe="/usr/lib/sys>
Aug 15 17:11:51 lucifer systemd[1]: systemd-networkd.socket: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Closed Network Service Netlink Socket.
Aug 15 17:11:51 lucifer systemd[1]: systemd-sysctl.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Apply Kernel Variables.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/syste>
Aug 15 17:11:51 lucifer systemd[1]: systemd-modules-load.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Load Kernel Modules.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib>
Aug 15 17:11:51 lucifer systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Create Volatile Files and Directories.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/l>
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Local File Systems.
Aug 15 17:11:51 lucifer systemd[1]: Unmounting /boot...
Aug 15 17:11:51 lucifer systemd[1]: Unmounting /run/credentials/systemd-sysusers.service...
Aug 15 17:11:51 lucifer systemd[1]: Unmounting Temporary Directory /tmp...
Aug 15 17:11:51 lucifer systemd[1]: boot.mount: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Unmounted /boot.
Aug 15 17:11:51 lucifer systemd[1]: run-credentials-systemd\x2dsysusers.service.mount: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Unmounted /run/credentials/systemd-sysusers.service.
Aug 15 17:11:51 lucifer systemd[1]: tmp.mount: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Unmounted Temporary Directory /tmp.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Swaps.
Aug 15 17:11:51 lucifer systemd[1]: Unmounting /efi...
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer systemd[1]: efi.mount: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Unmounted /efi.
Aug 15 17:11:51 lucifer systemd[1]: Reached target Unmount All Filesystems.
Aug 15 17:11:51 lucifer systemd[1]: systemd-fsck@dev-disk-by\x2dpartlabel-EFI.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped File System Check on /dev/disk/by-partlabel/EFI.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck@dev-disk-by\x2dpartlabel-EFI comm="s>
Aug 15 17:11:51 lucifer systemd[1]: Removed slice Slice /system/systemd-fsck.
Aug 15 17:11:51 lucifer systemd[1]: Stopped target Preparation for Local File Systems.
Aug 15 17:11:51 lucifer systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Create Static Device Nodes in /dev.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/u>
Aug 15 17:11:51 lucifer systemd[1]: systemd-sysusers.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Create System Users.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysusers comm="systemd" exe="/usr/lib/sys>
Aug 15 17:11:51 lucifer systemd[1]: systemd-remount-fs.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped Remount Root and Kernel File Systems.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/s>
Aug 15 17:11:51 lucifer systemd[1]: systemd-fsck-root.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Stopped File System Check on Root Device.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-fsck-root comm="systemd" exe="/usr/lib/sy>
Aug 15 17:11:51 lucifer systemd[1]: Reached target System Shutdown.
Aug 15 17:11:51 lucifer systemd[1]: Reached target Late Shutdown Services.
Aug 15 17:11:51 lucifer systemd[1]: systemd-reboot.service: Deactivated successfully.
Aug 15 17:11:51 lucifer systemd[1]: Finished System Reboot.
Aug 15 17:11:51 lucifer audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/syst>
Aug 15 17:11:51 lucifer audit[1]: SERVICE_STOP pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-reboot comm="systemd" exe="/usr/lib/syste>
Aug 15 17:11:51 lucifer systemd[1]: Reached target System Reboot.
Aug 15 17:11:51 lucifer systemd[1]: Shutting down.
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer audit: BPF prog-id=0 op=UNLOAD
Aug 15 17:11:51 lucifer systemd[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
Aug 15 17:11:51 lucifer systemd[1]: Watchdog running with a timeout of 10min.
Aug 15 17:11:51 lucifer kernel: watchdog: watchdog0: watchdog did not stop!
Aug 15 17:11:51 lucifer systemd-shutdown[1]: Using hardware watchdog 'SP5100 TCO timer', version 0, device /dev/watchdog0
Aug 15 17:11:51 lucifer systemd-shutdown[1]: Watchdog running with a timeout of 10min.
Aug 15 17:11:51 lucifer systemd-shutdown[1]: Syncing filesystems and block devices.
Aug 15 17:11:52 lucifer systemd-journald[221]: Journal stopped
-- Boot 5318c2fa985248feb071131201e735f9 --

Offline

Board footer

Powered by FluxBB