version initial

ajout de mirroirs locaux (Alsace)
suppression de timeshift warpinator hexchat rhythmbox* hypnotix celluloid
installation de vlc gimp firefox-locale-fr
This commit is contained in:
Djan GICQUEL 2022-05-22 11:38:45 +02:00
parent 42d897f3ac
commit c141abd6ed
1 changed files with 22 additions and 0 deletions

22
post-install-linux-mint.sh Executable file
View File

@ -0,0 +1,22 @@
#! /bin/bash
# post-install-linus-mint.sh
# by Djan GICQUEL
# Licence : CC SA-NC
if [ $(whoami) = "root" ];then
cat << "EOF" > /etc/apt/sources.list.d/official-package-repositories.list
deb http://mirror6.layerjet.com/linuxmint/packages uma main upstream import backport
deb http://miroir.univ-lorraine.fr/ubuntu focal main restricted universe multiverse
deb http://miroir.univ-lorraine.fr/ubuntu focal-updates main restricted universe multiverse
deb http://miroir.univ-lorraine.fr/ubuntu focal-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse
deb http://archive.canonical.com/ubuntu/ focal partner
EOF
apt-get -y remove --purge timeshift warpinator hexchat rhythmbox* hypnotix celluloid
apt-get -y install vlc gimp firefox-locale-fr
else
echo "Executer ce script en root."
fi