Index of /repository

Icon  Name                    Last modified      Size  Description
[DIR] Parent Directory - [DIR] excalibur/ 18-Mar-2011 12:00 - [DIR] hellfire/ 18-Mar-2011 12:00 - [   ] public-key.gpg 01-Sep-2010 20:33 1.7K

sources.list entry

# Acritox
deb http://acritox.de/repository hellfire/
deb-src http://acritox.de/repository hellfire/
(or excalibur or whatever)

Update from old sources.list entry

If you get something like this at the end of "apt-get update":
W: Failed to fetch http://acritox.de/kanotix/excalibur/./Packages  301 Moved Permanently
W: Failed to fetch http://acritox.de/kanotix/excalibur/./Sources  301 Moved Permanently
E: Some index files failed to download, they have been ignored, or old ones used instead.
then you still have the old sources.list entry. To automatically fix it run this:
Kanotixbox:/tmp# perl -pi -e 's|acritox.de/kanotix/(.*) ./|acritox.de/repository $1/|' /etc/apt/sources.list
Kanotixbox:/tmp# 

GPG key

If you get something like this at the end of "apt-get update":
W: GPG error: http://acritox.de hellfire/ Release: The following signatures couldn't be verified
because the public key is not available: NO_PUBKEY 36A6D2F8ECF82819
then you are missing my public GPG key. You may either install the acritox-archive-keyring package:
Kanotixbox:/tmp# apt-get install acritox-archive-keyring
(...)
WARNING: The following packages cannot be authenticated!
  acritox-archive-keyring
Install these packages without verification [y/N]? y
(...)
Setting up acritox-archive-keyring (2010.09.01) ...
OK
Kanotixbox:/tmp# 
or you could just add my key to apt-key:
Kanotixbox:/tmp# wget -qO- http://acritox.de/repository/public-key.gpg | apt-key add -
OK
Kanotixbox:/tmp#