11 lines
475 B
Bash
Executable File
11 lines
475 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
# TODO: always download latest
|
|
wget https://bouncer.gentoo.org/fetch/root/all/releases/amd64/autobuilds/current-stage3-amd64-hardened-openrc/stage3-amd64-hardened-openrc-20220619T170540Z.tar.xz -O hardened.tar.xz
|
|
wget https://bouncer.gentoo.org/fetch/root/all/releases/amd64/autobuilds/current-stage3-amd64-hardened-openrc/stage3-amd64-hardened-openrc-20220619T170540Z.tar.xz.asc -O hardened.tar.xz.asc
|
|
gpg --verify hardened.tar.xz.asc hardened.tar.xz
|
|
|
|
|
|
|