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" msg_info "Installing Hyperion"
wget -qO- https://apt.hyperion-project.org/hyperion.pub.key | gpg --dearmor -o /usr/share/keyrings/hyperion.pub.gpg 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 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'
deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.hyperion-project.org/ bullseye main
EOF
$STD apt-get update $STD apt-get update
$STD apt-get install -y hyperion $STD apt-get install -y hyperion
$STD systemctl enable --now hyperion@root.service $STD systemctl enable --now hyperion@root.service

View file

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

View file

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

View file

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