Forum › Forums › antiX-development › Development › Various service files for various inits › Reply To: Various service files for various inits
June 17, 2025 at 9:56 am
#179510
Member
I have some good news to report
On a fresh install using the old iso’s from sourceforge, and enabling the dev branch of the old repo
I was able to align s6-rc & s6-66 with the latest implementation used on my 2025 remaster.
This means that users still using the old init diversity can smoothly get upgraded to the new structure, before switching repo lines.
#!/bin/bash
[ "$UID" -eq 0 ] || exec sudo bash "$0" "$@"
echo "updating antiX expired GPG key"
wget -c http://repo.antixlinux.com/antix-archive-keyring_20019.5.0_all.deb
sudo dpkg -i antix-archive-keyring_20019.5.0_all.deb
echo "adding dev line to old experimental-s6 repo"
echo "deb http://deb-s6-rc-66-init-experimental.duckdns.org:8080/ experimental-s6 antix-s6 dev
deb-src http://deb-s6-rc-66-init-experimental.duckdns.org:8080/ experimental-s6 antix-s6 dev" > /etc/apt/sources.list.d/experimental-s6.list
echo "getting packages up-to-date"
apt update && apt upgrade
I still need to make some changes to my current branch to allow them to jump directly without messing their installation but it should now be straight forward…