Compare commits
No commits in common. "1afbbdb4a57a9c884a59fdc34fae9e1f280ee699" and "0062323e4d8f999bb77babc97abddc9fe6c450ef" have entirely different histories.
1afbbdb4a5
...
0062323e4d
5 changed files with 10 additions and 11 deletions
|
@ -1,3 +1,2 @@
|
|||
APT::Periodic::Update-Package-Lists "1";
|
||||
APT::Periodic::Unattended-Upgrade "1";
|
||||
APT::Periodic::AutocleanInterval "7";
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
// ACAQB unattended upgrades configuration file
|
||||
Unattended-Upgrade::Origins-Pattern {
|
||||
"o=Debian,n=${distro_codename}";
|
||||
"o=Debian,n=${distro_codename}-updates";
|
||||
"o=Debian,n=${distro_codename},l=Debian-Security";
|
||||
Unattended-Upgrade::Origin-Pattern {
|
||||
"o=Debian,n=stretch";
|
||||
"o=Debian,n=stretch-updates";
|
||||
"o=Debian,n=stretch,l=Debian-Security";
|
||||
"o=Debian,n=sid";
|
||||
};
|
||||
Unattended-Upgrade::Remove-Unused-Dependencies "true";
|
||||
Unattended-Upgrade::MinimalSteps "true";
|
||||
Unattended-Upgrade::AutoFixInterruptedDpkg "true";
|
||||
Acquire::http::Dl-Limit "50";
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
pulseaudio
|
||||
unzip
|
||||
unattended-upgrades
|
||||
apt-listchanges
|
||||
|
||||
# Desktop
|
||||
xorg
|
||||
|
|
3
files/sources.list
Normal file
3
files/sources.list
Normal file
|
@ -0,0 +1,3 @@
|
|||
deb http://ftp.fr.debian.org/debian unstable main contrib non-free
|
||||
#deb http://ftp.fr.debian.org/debian unstable-updates main
|
||||
#deb http://ftp.fr.debian.org/ unstable/updates main
|
|
@ -87,13 +87,13 @@ configure_drm(){
|
|||
then
|
||||
message "DRM already done " "warn"
|
||||
else
|
||||
echo "drm" >> "$INITRAMFS_CONF_FILE"
|
||||
cat "drm" >> "$INITRAMFS_CONF_FILE"
|
||||
fi
|
||||
if grep -q "$1" "$INITRAMFS_CONF_FILE"
|
||||
then
|
||||
message "$1 already done " "warn"
|
||||
else
|
||||
echo "$1 modeset=1" >> "$INITRAMFS_CONF_FILE"
|
||||
cat "$1 modeset=1" >> "$INITRAMFS_CONF_FILE"
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -133,8 +133,6 @@ process_package_file files/packages.list
|
|||
message "Activate unattended upgrades : "
|
||||
cp ./files/apt/20auto-upgrades /etc/apt/apt.conf.d/
|
||||
cp ./files/apt/50unattended-upgrades /etc/apt/apt.conf.d/
|
||||
echo unattended-upgrades unattended-upgrades/enable_auto_updates boolean true | debconf-set-selections
|
||||
dpkg-reconfigure -f noninteractive unattended-upgrades
|
||||
message "done" "ok"
|
||||
|
||||
message "\ninstall custom background images : "
|
||||
|
|
Reference in a new issue