diff options
author | EuAndreh <eu@euandre.org> | 2024-11-17 19:49:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-11-17 19:49:05 -0300 |
commit | 08c9bcb3fed37d9483258bd97aaebc47b54b3fa3 (patch) | |
tree | 7b114f79c44d347a5ecd1082943d2ba8c95dac5c /v2/src/bin/security-txt | |
parent | mv src/content/styles.css src/content/style.css (diff) | |
download | euandre.org-08c9bcb3fed37d9483258bd97aaebc47b54b3fa3.tar.gz euandre.org-08c9bcb3fed37d9483258bd97aaebc47b54b3fa3.tar.xz |
rm -rf v2/
Diffstat (limited to 'v2/src/bin/security-txt')
-rwxr-xr-x | v2/src/bin/security-txt | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/v2/src/bin/security-txt b/v2/src/bin/security-txt deleted file mode 100755 index 7026969..0000000 --- a/v2/src/bin/security-txt +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/sh -set -eu - -usage() { - cat <<-'EOF' - Usage: - security-txt - security-txt -h - EOF -} - -help() { - cat <<-'EOF' - - - Options: - -h, --help show this message - - - Generate the RFC 9116 "security.txt" file from data in the - repository. - - - Examples: - - Just run it: - - $ security-txt > .well-known/security.txt - EOF -} - - -for flag in "$@"; do - case "$flag" in - --) - break - ;; - --help) - usage - help - exit - ;; - *) - ;; - esac -done - -while getopts 'h' flag; do - case "$flag" in - h) - usage - help - exit - ;; - *) - usage >&2 - exit 2 - esac -done -shift $((OPTIND - 1)) - - - -EXPIRES="$( - LANG=C.UTF-8 gpg --list-key "$EMAIL" | - awk '/^pub/ { print substr($(NF), 1, 10) }' -)T00:00:00z" - -LANGUAGES="$( - langs | - sed 's|^|, |' | - tr -d '\n' | - sed 's|^, ||' -)" - - -cat <<-EOF - Contact: mailto:$EMAIL - Encryption: $(url-for 'public.asc.txt' | absolute) - Expires: $EXPIRES - Preferred-Languages: $LANGUAGES -EOF |