]> Frank Brehm's Git Trees - config/bruni/etc-mint-new1.git/commitdiff
committing changes in /etc made by "/usr/bin/python3 /usr/bin/nala upgrade --purge"
authorFrank Brehm <frank@brehm-online.com>
Wed, 24 Jan 2024 07:47:49 +0000 (08:47 +0100)
committerFrank Brehm <root@bruni.home.brehm-online.com>
Wed, 24 Jan 2024 07:47:49 +0000 (08:47 +0100)
Packages with configuration changes:
-nala 0.14.0 all
+nala 0.15.0 all

Package changes:
-nala 0.14.0 all
+nala 0.15.0 all

nala/nala.conf

index 63afc0bbc1e2a5d80146574c657c9bfeeeaa4907..d019f71dedacad22483a0f712a155b92a0e35fce 100644 (file)
@@ -1,7 +1,8 @@
 ## Configuration file for Nala
 [Nala]
-# Set to false to disable scrolling text
-scrolling_text = true
+# Set to true to enable scrolling text
+# Scrolling text is deprecated and will be removed in the future.
+scrolling_text = false
 
 # Set to true for a more condensed transaction summary
 simple_summary = false
@@ -27,42 +28,3 @@ filesize_binary = false
 
 # Set to true for `MegaBit` false for `MegaByte`
 transfer_speed_bits = false
-
-## Pre and Post install hooks allow you to run scripts or commands
-## Before or After an install, upgrade and remove
-[PreInstall]
-## The `hook` key will run after every transaction
-# hook = "/general/hook/pre-install.sh"
-
-## You can use a package name to run a specific hook
-## Only if that package has been altered
-# nala = "apt show nala"
-
-## Additionally you can use a wildcard*
-# "linux-image-5*-amd64" = "/hook/for/pre-kernel.sh"
-
-[PostInstall]
-# hook = "/general/hook/post-install.sh"
-# nala = "apt show nala"
-# "linux-image-5*-amd64" = "/hook/for/post-kernel.sh"
-
-## You can also setup Nala to pass arguments to your hook.
-## It can be done inline style like so
-# neofetch = { hook = "/home/username/neo-hook.sh", args = ["name", "version"] }
-
-## You can also use the longer form
-# [PostInstall.neofetch]
-# hook = "/home/volitank/neo-hook.sh"
-
-## Arguments are given to the hook in the order they exist in the array below
-# args = [
-#      "name", # The name of the package. Arch is appended for non-native arches
-#      "fullname", # Full name of the package "neofetch:amd64"
-#      "architecture", # This will be the arch of the candidate version or "None"
-#      "version", # This will be the version string of the candidate version or "None"
-
-## To pick information from a specific version you can use the following syntax
-#      "candidate.version", # Version string of the candidate version or "None"
-#      "installed.version", # Version string of the installed version or "None"
-#      "installed.architecture", # Arch of the installed version or "None"
-# ]