* [PATCH 1/2] systemd: Silence console output when updating the package.
@ 2023-02-12 10:14 Stefan Schantl
2023-02-12 10:14 ` [PATCH 2/2] systemd: Proper spawn a getty on TTY1 Stefan Schantl
0 siblings, 1 reply; 2+ messages in thread
From: Stefan Schantl @ 2023-02-12 10:14 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1349 bytes --]
Otherwise there are hints about non executed operations
displayed because systemd does not run or lives in a chrooted
environment.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
systemd/systemd.nm | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/systemd/systemd.nm b/systemd/systemd.nm
index c8e378a38..f1985908b 100644
--- a/systemd/systemd.nm
+++ b/systemd/systemd.nm
@@ -312,7 +312,7 @@ packages
script postup
# Re-exec systemd after update.
- /usr/bin/systemctl daemon-reexec
+ /usr/bin/systemctl daemon-reexec >/dev/null 2>&1 || :
# Restart login service after update
/usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
@@ -320,12 +320,9 @@ packages
# Use the new journald configuration file and restart the service.
if ! grep -xq ImportKernel=yes /etc/systemd/journald.conf ; then
- mv /etc/systemd/journald.conf.paknew /etc/systemd/journald.conf
+ mv /etc/systemd/journald.conf.paknew /etc/systemd/journald.conf >/dev/null 2>&1 || :
/usr/bin/systemctl restart systemd-journald.service >/dev/null 2>&1 || :
fi
-
- # Enable spawning getty's on serial devices.
- systemctl enable serial-getty(a).service >/dev/null 2>&1 || :
end
# Be sure to start the new udev after everything is done.
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 2/2] systemd: Proper spawn a getty on TTY1.
2023-02-12 10:14 [PATCH 1/2] systemd: Silence console output when updating the package Stefan Schantl
@ 2023-02-12 10:14 ` Stefan Schantl
0 siblings, 0 replies; 2+ messages in thread
From: Stefan Schantl @ 2023-02-12 10:14 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1344 bytes --]
systemctl fails to execute the "enable" operation
if a given service name does not exist or could not
be enabled.
In case multiple services have been given at once,
the entire request fails.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
systemd/systemd.nm | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/systemd/systemd.nm b/systemd/systemd.nm
index f1985908b..98f1aa9cc 100644
--- a/systemd/systemd.nm
+++ b/systemd/systemd.nm
@@ -5,7 +5,7 @@
name = systemd
version = 252
-release = 1
+release = 2
maintainer = Stefan Schantl <stefan.schantl(a)ipfire.org>
groups = System/Base
@@ -293,13 +293,11 @@ packages
grep -q pam_systemd /etc/pam.d/system-auth-ac || authconfig --updateall --nostart >/dev/null 2>&1 || :
fi
- /usr/bin/systemctl enable \
- getty(a).service \
- serial-getty(a).service \
- remote-fs.target \
- systemd-readahead-replay.service \
- systemd-readahead-collect.service \
- >/dev/null 2>&1 || :
+ # Automatically spawn a getty on TTY1
+ /usr/bin/systemctl enable getty(a).service >/dev/null 2>&1 || :
+
+ # Enable targed to mount all remote filesystems.
+ /usr/bin/systemctl enable remote-fs.target >/dev/null 2>&1 || :
end
script preup
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-12 10:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-12 10:14 [PATCH 1/2] systemd: Silence console output when updating the package Stefan Schantl
2023-02-12 10:14 ` [PATCH 2/2] systemd: Proper spawn a getty on TTY1 Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox