summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-05-06 20:58:35 +0200
committerMichał Górny <mgorny@gentoo.org>2018-05-06 20:58:35 +0200
commit6768afd9cac59d1810d69c85cdabf5695d442e22 (patch)
tree2d9f089fb152b50010fc80cf545679a6aa5de395 /utils
parent99004155e7439f7f02030f7ec16db1d96d6d9b5b (diff)
downloadgemato-6768afd9cac59d1810d69c85cdabf5695d442e22.tar.gz
Remove obsolete repo.postsync.d script
Remove the repo.postsync.d script for Portage that is obsolete now that Portage has built-in gemato verification code.
Diffstat (limited to 'utils')
-rw-r--r--utils/repo.postsync.d/00gemato13
1 files changed, 0 insertions, 13 deletions
diff --git a/utils/repo.postsync.d/00gemato b/utils/repo.postsync.d/00gemato
deleted file mode 100644
index b6ceff9..0000000
--- a/utils/repo.postsync.d/00gemato
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-name=${1}
-url=${2}
-path=${3}
-
-# keyring installed by gentoo-keys
-openpgp_key=/var/lib/gentoo/gkeys/keyrings/gentoo/release/pubring.gpg
-
-# Apply only to ::gentoo, when synced over rsync.
-if [[ ${name} == gentoo && ${url} == rsync://* ]]; then
- gemato verify -K "${openpgp_key}" -s "${path}"
-fi