In https://bugzilla.redhat.com/show_bug.cgi?id=1460763 a user is running amserverconfig and is confused because it tells them to mess with xinetd files. Obviously xinetd manipulation is unnecessary on Fedora, but the script may otherwise be useful and it doesn't actually do anything with xinetd besides printing the message. So let's patch out the call to the function which outputs the xinetd-related message.
12 lines
309 B
Diff
12 lines
309 B
Diff
diff --git a/server-src/amserverconfig.pl b/server-src/amserverconfig.pl
|
|
index 5748dfc..18f59f0 100755
|
|
--- a/server-src/amserverconfig.pl
|
|
+++ b/server-src/amserverconfig.pl
|
|
@@ -656,7 +656,6 @@ if ( defined $template ) {
|
|
&create_customconf;
|
|
}
|
|
|
|
-&check_xinetd;
|
|
&build_amanda_ssh_key;
|
|
|
|
if ( $vtape_err ) {
|