Skip to content
Permalink
Browse files

Remove ARIN TAL. You are welcome!

  • Loading branch information
partim committed Sep 25, 2018
1 parent 397f26a commit b1e70746bb3768554fa439c5ced4e8b8484eeb00
Showing with 12 additions and 8 deletions.
  1. +1 −0 .gitignore
  2. +1 −1 Cargo.lock
  3. +9 −6 rpki-cache/tal/arin.tal
  4. +1 −1 src/repository.rs
@@ -2,4 +2,5 @@
/target/
**/*.rs.bk
/rpki-cache/repository
/rpki-cache/tal/arin.tal
/.cargo

Some generated files are not rendered by default. Learn more.

@@ -1,7 +1,10 @@
rsync://rpki.arin.net/repository/arin-rpki-ta.cer
# https://www.arin.net/resources/rpki/tal.html

MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3lZPjbHvMRV5sDDqfLc/685th5FnreHMJjg8
pEZUbG8Y8TQxSBsDebbsDpl3Ov3Cj1WtdrJ3CIfQODCPrrJdOBSrMATeUbPC+JlNf2SRP3UB+VJFgtTj
0RN8cEYIuhBW5t6AxQbHhdNQH+A1F/OJdw0q9da2U29Lx85nfFxvnC1EpK9CbLJS4m37+RlpNbT1cba+
b+loXpx0Qcb1C4UpJCGDy7uNf5w6/+l7RpATAHqqsX4qCtwwDYlbHzp2xk9owF3mkCxzl0HwncO+sEHH
eaL3OjtwdIGrRGeHi2Mpt+mvWHhtQqVG+51MHTyg+nIjWFKKGx1Q9+KDx4wJStwveQIDAQAB
This file isn’t ARIN’s TAL but rather a placeholder. Until you replace
it with the actual TAL you can find at the above URL, Routinator will
not run.

Please download the TAL in RFC 7730 format and copy the it here.

Apologies for the inconvenience. Be assured that this procedure isn’t
our choice.
@@ -263,7 +263,7 @@ impl Repository {
return Err(err.into())
}
};
let tal = match Tal::read(&mut file) {
let tal = match Tal::read(&path, &mut file) {
Ok(tal) => tal,
Err(err) => {
error!("{}: {}. Aborting.", path.display(), err);

0 comments on commit b1e7074

Please sign in to comment.