Inital commit

This commit is contained in:
Tobias Herre 2023-10-24 16:28:15 +02:00
parent 31c8f0266b
commit 34d722c981
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
!/bin/sh
# To add this repository please do:
echo $1 $2 $3
echo "PARAMS $1 $2 $3"
if [ -n "$3" ]; then
echo "it dollaar 3"
curl -sSLo /usr/share/keyrings/$4 $3
echo "deb [signed-by=/usr/share/keyrings/$4] $2 $(lsb_release -sc) main" > /etc/apt/sources.list.d/$1.list
else
echo "its not $3"
echo "deb $2 $(lsb_release -sc) main" > /etc/apt/sources.list.d/$1.list
fi
apt-get update