update sources

This commit is contained in:
tteckster 2023-01-27 02:01:45 -05:00 committed by GitHub
parent 8307bbe86c
commit 40ad663997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 12 deletions

View File

@ -92,9 +92,7 @@ msg_ok "Installed Dependencies"
msg_info "Installing Hyperion"
wget -qO- https://apt.hyperion-project.org/hyperion.pub.key | gpg --dearmor -o /usr/share/keyrings/hyperion.pub.gpg
cat <<EOF >/etc/apt/sources.list.d/hyperion.list
deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.hyperion-project.org/ bullseye main
EOF
sh -c 'echo "deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.hyperion-project.org/ $(lsb_release -cs) main" > /etc/apt/sources.list.d/hyperion.list'
$STD apt-get update
$STD apt-get install -y hyperion
$STD systemctl enable --now hyperion@root.service

View File

@ -114,9 +114,7 @@ msg_ok "Installed Python"
msg_info "Installing Openresty"
$STD apt-key add <(curl -fsSL https://openresty.org/package/pubkey.gpg)
cat <<EOF >/etc/apt/sources.list.d/openresty.list
deb http://openresty.org/package/debian bullseye openresty
EOF
sh -c 'echo "deb http://openresty.org/package/debian $(lsb_release -cs) openresty" > /etc/apt/sources.list.d/openresty.list'
$STD apt-get -y update
$STD apt-get -y install --no-install-recommends openresty
msg_ok "Installed Openresty"

View File

@ -153,9 +153,7 @@ fi
if [[ $CORAL == "Y" ]]; then
msg_info "Adding Coral Edge TPU Support"
$STD apt-key add <(curl -fsSL https://packages.cloud.google.com/apt/doc/apt-key.gpg)
cat <<EOF >/etc/apt/sources.list.d/coral-edgetpu.list
deb https://packages.cloud.google.com/apt coral-edgetpu-stable main
EOF
sh -c 'echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" > /etc/apt/sources.list.d/coral-edgetpu.list'
$STD apt-get -y update
$STD apt-get -y install libedgetpu1-std
msg_ok "Coral Edge TPU Support Added"

View File

@ -90,9 +90,7 @@ msg_ok "Installed Dependencies"
msg_info "Installing Syncthing"
curl -s -o /usr/share/keyrings/syncthing-archive-keyring.gpg https://syncthing.net/release-key.gpg
cat <<EOF >/etc/apt/sources.list.d/syncthing.list
deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable
EOF
sh -c 'echo "deb [signed-by=/usr/share/keyrings/syncthing-archive-keyring.gpg] https://apt.syncthing.net/ syncthing stable" > /etc/apt/sources.list.d/syncthing.list'
$STD apt-get update
$STD apt-get install -y syncthing
$STD systemctl enable syncthing@root.service