Re: Artix way to update configuration files
Reply #3 –
Okay, one small patch makes it work on Artix:
--- etc-update.orig 2022-08-09 16:01:15.433432791 +0200
+++ etc-update 2022-08-09 16:03:01.427275425 +0200
@@ -37,7 +37,7 @@
case ${OS_RELEASE_POSSIBLE_IDS} in
*:suse:*|*:opensuse:*|*:opensuse-tumbleweed:*) OS_FAMILY='rpm';;
*:fedora:*|*:rhel:*) OS_FAMILY='rpm';;
- *:arch:*) OS_FAMILY='arch' NEW_EXT='pacnew';;
+ *:arch:*|*:artix:*) OS_FAMILY='arch' NEW_EXT='pacnew';;
*) OS_FAMILY='gentoo';;
esac
However, etc-update sucks ;-) That's why I have been using dispatch-conf for ages now.
Edit: I filed an upstream bug report about this at https://bugs.gentoo.org/864565 – maybe they patch it to make it work on Artix out of the box.