forked from jan/debianmemberportfolio
use keyrings as keycheck.sh does, add script for synchronizing (thanks to keycheck.sh)
This commit is contained in:
parent
c23223dc83
commit
e9da0c6489
2 changed files with 29 additions and 1 deletions
|
@ -19,7 +19,7 @@
|
||||||
# <http://www.gnu.org/licenses/>.
|
# <http://www.gnu.org/licenses/>.
|
||||||
#
|
#
|
||||||
[DEFAULT]
|
[DEFAULT]
|
||||||
keyring.dir=/usr/share/keyrings
|
keyring.dir=~/debian/keyring.debian.org/keyrings
|
||||||
urlbuilder.sections=overview,bugs,build,qa,upload,lists,files,membership,
|
urlbuilder.sections=overview,bugs,build,qa,upload,lists,files,membership,
|
||||||
miscellaneous
|
miscellaneous
|
||||||
|
|
||||||
|
|
28
synckeyrings.sh
Executable file
28
synckeyrings.sh
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Copyright (C) 2009 Jan Dittberner <jandd@debian.org> and others This
|
||||||
|
# little script is free software; you can redistribute it and/or
|
||||||
|
# modify it under the terms of the GNU General Public License as
|
||||||
|
# published by the Free Software Foundation; version 3.
|
||||||
|
#
|
||||||
|
# On Debian systems, the complete text of the GNU General Public
|
||||||
|
# License can be found in /usr/share/common-licenses/GPL-3 file.
|
||||||
|
#
|
||||||
|
# This script syncs local copies of the debian-keyring with
|
||||||
|
# keyring.d.o (the keyring package is too old).
|
||||||
|
#
|
||||||
|
# ~/debian/keyring.debian.org/keyrings/ will be created if it doesn't exist.
|
||||||
|
|
||||||
|
# Always exit if there is an error
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# For the rsync of the debian keyrings and for the nm.gpg
|
||||||
|
DESTDIR="${DEBHOME:-"$HOME/debian"}/keyring.debian.org/keyrings"
|
||||||
|
# For the following calls use LANG=C - some output is used for
|
||||||
|
# reports to a list / for an english report.
|
||||||
|
LANG=C
|
||||||
|
export LANG
|
||||||
|
|
||||||
|
test -d $DESTDIR || mkdir -p $DESTDIR
|
||||||
|
|
||||||
|
rsync -qcltz --block-size=8192 --partial --progress --exclude='emeritus-*' --exclude='removed-*' 'keyring.debian.org::keyrings/keyrings/*' $DESTDIR/.
|
Loading…
Reference in a new issue