Remove spec/octocatalog: its very out of date, and thus probably not as useful. ...
[mirror/dsa-puppet.git] / spec / octocatalog / init-system
diff --git a/spec/octocatalog/init-system b/spec/octocatalog/init-system
deleted file mode 100755 (executable)
index 136784a..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-set -euE
-
-function file() {
-  for i in "$@"; do
-    mkdir -p $(dirname $i)
-    echo "file $i" > $i
-  done
-}
-
-file /etc/puppet/secret
-
-file /srv/puppet.debian.org/ca/RESULT/certs/ca.{crl,crt}
-file /srv/puppet.debian.org/ca/RESULT/clientcerts/ca.{crl,crt}
-
-file /srv/puppet.debian.org/sync/data/dsa-nagios/generated/nrpe_dsa.cfg
-
-file /etc/ssh/ssh_known_hosts
-
-for i in salsa.debian.org signup.salsa.debian.org webhook.salsa.debian.org pages.debian.net registry.salsa.debian.org archive-master.debian.org; do
-  file /srv/puppet.debian.org/from-letsencrypt/$i.{crt,crt-chain,crt-chained,key}
-done
-
-for fact in spec/octocatalog/facts/*; do
-  hostname=$(basename $fact .json)
-
-  file /srv/puppet.debian.org/ca/RESULT/certs/$hostname.{crt,key}
-  file /srv/puppet.debian.org/ca/RESULT/clientcerts/$hostname.{client.crt,key}
-
-  file /var/lib/puppet/yaml/node/$hostname.yaml
-done