We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 776f0ac commit 6b2a336Copy full SHA for 6b2a336
contrib/sign-profiles.sh
@@ -1,4 +1,13 @@
1
#!/bin/bash
2
+#
3
+# This is an example of a way to quickly sign a repo without accidentally
4
+# signing all the wrong things. If everything goes well, it should
5
+# (re)generate a MANIFEST and SIGNATURE file.
6
7
+# USAGE: bash contrib/sign-profiles.sh repo private-key
8
9
+# e.g., bash contrib/sign-profiles.sh ~/code/hubblestack_data.git_repo ~/secerts/hubble/private.key
10
11
12
PROFILE="$1"; shift
13
PRIVATE_KEY="${1:-/etc/certs/private.key}"; shift
0 commit comments