-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hopefully this fixes the input problem
- Loading branch information
1 parent
a14a9d1
commit 2009307
Showing
2 changed files
with
17 additions
and
14 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
# Add backports | ||
echo " | ||
deb http://deb.debian.org/debian bookworm-backports main contrib non-free | ||
deb-src http://deb.debian.org/debian bookworm-backports main contrib non-free | ||
" > /etc/apt/sources.list.d/bookworm-backports.list | ||
|
||
# Pin backports | ||
echo "Package: * | ||
Pin: release n=bookworm-backports | ||
Pin-Priority: 900" > /etc/apt/preferences.d/99debian-backports | ||
|
||
# Update the repos | ||
/usr/bin/apt update -y |