make install_chromium more verbose

This commit is contained in:
fatalerrors
2021-07-22 13:37:30 +02:00
parent 36866f4803
commit cbacea764f
2 changed files with 5 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
# * CALCLEVEL: ZFS only, RAID level (mirror, raidz1, raidz2, raidz3), # * CALCLEVEL: ZFS only, RAID level (mirror, raidz1, raidz2, raidz3),
# empty for striped volume. Any other level than stripe requires # empty for striped volume. Any other level than stripe requires
# more than one disk. # more than one disk.
# * CALCDRV: Target drives, preferably through ID. # * CALCDRV: Target drives, preferably through ID.
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
export VER_conf_disks="0.0.8" export VER_conf_disks="0.0.8"

View File

@@ -12,6 +12,7 @@ export VER_install_chromium="0.0.1"
install_chromium() install_chromium()
{ {
# Add Debian Buster repo to sources.list.d directory # Add Debian Buster repo to sources.list.d directory
prnt I "Ajout du dépot Debian Buster aux sources logicielles..."
installfile debian_buster.dist /etc/apt/sources.list.d/ installfile debian_buster.dist /etc/apt/sources.list.d/
# Install Debian GPG keys # Install Debian GPG keys
@@ -24,7 +25,10 @@ install_chromium()
installfile apt_chromium.conf /etc/apt/preferences.d/ installfile apt_chromium.conf /etc/apt/preferences.d/
# Update package list and install # Update package list and install
prnt I "Mise à jour de la liste des dépots..."
pkgupt pkgupt
prnt I "Installation de Chromium..."
pkginst chromium pkginst chromium
} }