From 8740958e27486c9d152cf38538456c1df7b5c646 Mon Sep 17 00:00:00 2001 From: Sven Eden Date: Mon, 23 Apr 2018 11:03:46 +0200 Subject: [PATCH] check_tree.pl: Do not change /run/systemd --- pwx/check_tree.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pwx/check_tree.pl b/pwx/check_tree.pl index 19c3098c1..6c10d92e2 100755 --- a/pwx/check_tree.pl +++ b/pwx/check_tree.pl @@ -1107,6 +1107,12 @@ sub check_name_reverts { # 2) References to the systemd github site must not be changed $replace_text =~ m,github\.com/systemd, and next; + # 3) /run/systemd/ must not be changed, as other applications + # rely on that naming. + # Note: The /run/elogind.pid file is not touched by that, as + # systemd does not have something like that. + $replace_text =~ m,/run/systemd, and next; + # Make the following easier with a simple shortcut: my $o_txt = defined($hRemovals{$our_text_long }) ? $our_text_long : defined($hRemovals{$our_text_short}) ? $our_text_short : -- 2.30.2