When i boot artix openrc. I have a warning:
grep: warning: stray \ before -
grep: warning: stray \ before -
The solution is quite simple:
sudo -i
sed -i 's/\\-\\-noadjfile/\\--noadjfile/g' /etc/init.d/hwclock
exit
After reboot, the inconvenience is gone.
there is a scripting error in the hwclock init file?
Yes. It is located in the openrc source code.
Shouldn't the package be fixed then? Is it our package?
It
It will be a good thing, as it is annoying having it.
FYI there are some solutions, in another forum I've found an alternative writing, that is told to be more compatible:
grep -q -e "--noadjfile";
I've implemented it and now Artix boot without complain.
Regards
Carlo D.