-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* install labjack dependencies for siren and fix dpkg config * update bennu build script to handle bennu deb package versions * Fix aptly and bennu install aptly requires updated ca-certificates for repo https cert * bennu: --force-bad-version no longer needed for bennu deb install
- Loading branch information
Showing
3 changed files
with
20 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
set -x | ||
apt install -y gnupg2 lsb-release | ||
export DEBIAN_FRONTEND=noninteractive | ||
mv /etc/apt/sources.list /etc/apt/sources.list_backup | ||
. /etc/lsb-release | ||
cat <<EOF >> /etc/apt/sources.list | ||
deb [arch=amd64 trusted=yes] http://archive.ubuntu.com/ubuntu/ focal main restricted universe | ||
deb [arch=amd64 trusted=yes] http://archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME main restricted universe | ||
deb [arch=amd64 trusted=yes] http://archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME-updates main restricted universe | ||
deb [arch=amd64 trusted=yes] http://archive.ubuntu.com/ubuntu/ $DISTRIB_CODENAME-security main restricted universe | ||
EOF | ||
apt-get update && apt-get install -y gnupg2 lsb-release ca-certificates apt-transport-https && apt-get clean | ||
cat <<EOF >> /etc/apt/sources.list.d/aptly.list | ||
deb [arch=amd64 trusted=yes] https://apt.sceptre.dev / | ||
EOF | ||
|
||
apt-get update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters