apt_update
This commit is contained in:
parent
cc7e1cafb4
commit
7c8f2d8f49
2 changed files with 8 additions and 3 deletions
|
@ -3,6 +3,11 @@ apt_clean() {
|
|||
clean
|
||||
}
|
||||
|
||||
apt_update() {
|
||||
apt-get \
|
||||
update
|
||||
}
|
||||
|
||||
apt_upgrade() {
|
||||
apt-get \
|
||||
upgrade \
|
||||
|
|
|
@ -38,7 +38,7 @@ fr_FR.UTF-8 UTF-8
|
|||
# generate locales
|
||||
locale-gen
|
||||
# update catalog
|
||||
apt-get update
|
||||
apt_update
|
||||
# disable frontend
|
||||
debian_disable_frontend
|
||||
# install backports
|
||||
|
@ -61,14 +61,14 @@ fr_FR.UTF-8 UTF-8
|
|||
apt_clean
|
||||
done
|
||||
# update catalog
|
||||
apt-get update
|
||||
apt_update
|
||||
}
|
||||
|
||||
rescue_install() {
|
||||
local package
|
||||
local release="bookworm"
|
||||
# update catalog
|
||||
apt-get update
|
||||
apt_update
|
||||
# disable frontend
|
||||
debian_disable_frontend
|
||||
# upgrade packages
|
||||
|
|
Loading…
Reference in a new issue