From 259d13520a35ac637c7e7967da0b9db9d49f3d58 Mon Sep 17 00:00:00 2001 From: Christopher Thorn Date: Sep 07 2022 18:47:22 +0000 Subject: Remove the commas from aliases in the services file According to the man page for services: https://man7.org/linux/man-pages/man5/services.5.html, The alias is an optional setting that is a space or tab seperated list. In a previous PR that changed the services file there was a change introduced that added an alias but had commas seperating the aliases. This small change breaks some things downstream, example for this is the Augeas tool breaks when attempting to read the services file if there is an comma in the alias, I have created an issue for that here: https://github.com/hercules-team/augeas/issues/772 This PR simply switches out the commas for a space. --- diff --git a/services b/services index 6398e21..0e7050a 100644 --- a/services +++ b/services @@ -9469,8 +9469,8 @@ ircu 6665/tcp # IRCU ircu 6665/udp # IRCU ircu-2 6666/tcp ircu2 # IRCU ircu-2 6666/udp ircu2 # IRCU -ircu-3 6667/tcp ircd,ircu3 # IRCU -ircu-3 6667/udp ircd,ircu3 # IRCU +ircu-3 6667/tcp ircd ircu3 # IRCU +ircu-3 6667/udp ircd ircu3 # IRCU ircu-4 6668/tcp ircu4 # IRCU ircu-4 6668/udp ircu4 # IRCU ircu-5 6669/tcp ircu5 # IRCU