]> Frank Brehm's Git Trees - config/bruni/etc-mint-new1.git/commitdiff
committing changes in /etc made by "/usr/bin/apt install nala"
authorroot <root@bruni.home.brehm-online.com>
Thu, 29 Jun 2023 07:18:04 +0000 (09:18 +0200)
committerFrank Brehm <root@bruni.home.brehm-online.com>
Thu, 29 Jun 2023 07:18:04 +0000 (09:18 +0200)
Packages with configuration changes:
+nala 0.13.0 all

Package changes:
+nala 0.13.0 all
+python3-anyio 3.6.2-1 all
+python3-h11 0.14.0-1 all
+python3-httpcore 0.16.3-1 all
+python3-httpx 0.23.3-1 all
+python3-markdown-it 1.1.0-2 all
-python3-pygments 2.11.2+dfsg-2 all
+python3-pygments 2.14.0+dfsg-1 all
+python3-rfc3986 1.5.0-2 all
+python3-rich 13.2.0-2 all
+python3-sniffio 1.2.0-1 all
+python3-socksio 1.0.0-2 all
+python3-tomli 2.0.1-2 all
+python3-typer 0.7.0-1 all
+python3-typing-extensions 4.4.0-1 all

.etckeeper
nala/nala.conf [new file with mode: 0644]

index 587b4e3cc08eb31343f35acd4dee074075434a13..a008afdce6cb820932ad2445245da5e87dbe8625 100755 (executable)
@@ -2640,6 +2640,8 @@ maybe chmod 0644 'mysql/mariadb.conf.d/50-mysqld_safe.cnf'
 maybe chmod 0644 'mysql/mariadb.conf.d/50-server.cnf'
 maybe chmod 0644 'mysql/mariadb.conf.d/60-galera.cnf'
 maybe chmod 0644 'mysql/my.cnf.fallback'
+maybe chmod 0755 'nala'
+maybe chmod 0644 'nala/nala.conf'
 maybe chmod 0644 'nanorc'
 maybe chmod 0755 'needrestart'
 maybe chmod 0755 'needrestart/conf.d'
diff --git a/nala/nala.conf b/nala/nala.conf
new file mode 100644 (file)
index 0000000..0a2fd64
--- /dev/null
@@ -0,0 +1,65 @@
+## Configuration file for Nala
+[Nala]
+# Set to false to disable scrolling text
+scrolling_text = true
+
+# Set to true for a more condensed transaction summary
+simple_summary = false
+
+# Set to false to disable auto auto-removing
+auto_remove = true
+
+# Set to false to disable auto updating the package list
+# when running the upgrade command
+auto_update = true
+
+# Set to true Nala will list the upgradable packages automatically after `update`
+update_show_packages = false
+
+# Set to true and Nala will always assume yes
+assume_yes = false
+
+# Set to true for `MiB` false for `MB`
+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"
+# ]