diff options
author | David Runge <dave@sleepmap.de> | 2022-10-18 15:23:14 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2022-10-18 15:23:14 +0200 |
commit | 39659f935a98e21543d29ed26ccb29f700c63221 (patch) | |
tree | 143ac37e609a7e406a31aa4e08b0f149f683b744 | |
parent | a222e8a63bb813aa9123bd0a79cc66290a1a08d4 (diff) | |
download | dotfiles-39659f935a98e21543d29ed26ccb29f700c63221.tar.gz dotfiles-39659f935a98e21543d29ed26ccb29f700c63221.tar.bz2 dotfiles-39659f935a98e21543d29ed26ccb29f700c63221.tar.xz dotfiles-39659f935a98e21543d29ed26ccb29f700c63221.zip |
Add core packages
.config/{nvchecker/core.toml,packages/core.txt}:
Add filesystem, openssh, shadow and zlib to list of packages.
-rw-r--r-- | .config/nvchecker/core.toml | 16 | ||||
-rw-r--r-- | .config/packages/core.txt | 5 |
2 files changed, 20 insertions, 1 deletions
diff --git a/.config/nvchecker/core.toml b/.config/nvchecker/core.toml index b1518c2..3b565ed 100644 --- a/.config/nvchecker/core.toml +++ b/.config/nvchecker/core.toml @@ -119,10 +119,26 @@ source = "git" git = "https://dev.gnupg.org/source/npth.git" use_max_tag = true +[openssh] +source = "git" +git = "https://anongit.mindrot.org/openssh.git" +use_max_tag = true + [pambase] +[shadow] +source = "git" +git = "https://github.com/shadow-maint/shadow" +exclude_regex = "(19990709|19990827|20000826|20000902|20001012|20001016)" +use_max_tag = true + [usbutils] source = "git" git = "https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usbutils.git" use_max_tag = true +[zlib] +source = "git" +git = "https://github.com/madler/zlib" +use_max_tag = true + diff --git a/.config/packages/core.txt b/.config/packages/core.txt index 7955654..3ad6c9b 100644 --- a/.config/packages/core.txt +++ b/.config/packages/core.txt @@ -3,6 +3,7 @@ efibootmgr efivar elfutils expat +filesystem gdbm gnupg libaio @@ -11,7 +12,6 @@ libcap libcap-ng libffi libgssglue -libgssglue libnsl libpcap libsasl @@ -21,5 +21,8 @@ linux mpfr ncurses npth +openssh pambase +shadow usbutils +zlib |