summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/build/linux/sysroot_scripts/generate_debian_archive_unstable_gpg.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebrtc/build/linux/sysroot_scripts/generate_debian_archive_unstable_gpg.sh')
-rwxr-xr-xthird_party/libwebrtc/build/linux/sysroot_scripts/generate_debian_archive_unstable_gpg.sh37
1 files changed, 37 insertions, 0 deletions
diff --git a/third_party/libwebrtc/build/linux/sysroot_scripts/generate_debian_archive_unstable_gpg.sh b/third_party/libwebrtc/build/linux/sysroot_scripts/generate_debian_archive_unstable_gpg.sh
new file mode 100755
index 0000000000..ecbdd64312
--- /dev/null
+++ b/third_party/libwebrtc/build/linux/sysroot_scripts/generate_debian_archive_unstable_gpg.sh
@@ -0,0 +1,37 @@
+#!/bin/bash
+# Copyright 2019 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+set -o nounset
+set -o errexit
+
+SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+
+KEYS=(
+ # Debian Stable Release Key (10/buster)
+ "DCC9EFBF77E11517"
+ # Debian Archive Automatic Signing Key (10/buster)
+ "DC30D7C23CBBABEE"
+ # Debian Security Archive Automatic Signing Key (10/buster)
+ "4DFAB270CAA96DFA"
+ # Debian Archive Automatic Signing Key (10/buster)
+ "DC30D7C23CBBABEE"
+ # Jessie Stable Release Key
+ "CBF8D6FD518E17E1"
+ # Debian Archive Automatic Signing Key (7.0/wheezy)
+ "8B48AD6246925553"
+ # Debian Archive Automatic Signing Key (8/jessie)
+ "7638D0442B90D010"
+ # Debian Security Archive Automatic Signing Key (8/jessie)
+ "9D6D8F6BC857C906"
+ # Debian Archive Automatic Signing Key (9/stretch)
+ "E0B11894F66AEC98"
+ # Debian Security Archive Automatic Signing Key (9/stretch)
+ "EDA0D2388AE22BA9"
+ # Debian Stable Release Key (9/stretch)
+ "EF0F382A1A7B6500"
+)
+
+gpg --recv-keys ${KEYS[@]}
+gpg --output "${SCRIPT_DIR}/debian_archive_unstable.gpg" --export ${KEYS[@]}