-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current #15
base: master
Are you sure you want to change the base?
Current #15
Conversation
This commit adds missing packages required for /bin/passwd, /sbin/ip, and /sbin/tc to work. libmnl is required for /sbin/ip to work iptables & friends are required by /sbin/tc pam-1, cracklib etc. are required by /bin/passwd to work e2fsprogs seems to be only source of libcom_err.so required by $LIB/security/pam_unix.so.
Thanks for the PR. It's been sitting in my inbox until the time that I can test it. |
Hrm. I'll have to check on something else. make VERSION=current LATEST=current
[...]
181182 blocks
Fetching http://slackware.osuosl.org/slackware64-current/slackware64/a/aaa_base-14.2-x86_64-5.txz
chroot: failed to run command ‘/usr/lib/setup/installpkg’: No such file or directory
Makefile:37: recipe for target 'slackware64-current.tar' failed
make: *** [slackware64-current.tar] Error 127 this is from a slackware64-14.2 host. |
@vbatts I think that |
I like this approach (and should've done something like it since the beginning for each version). Are all the network and gnome-keyring packages required? perhaps not. Could you rebase on master? diff --git a/mkimage-slackware.sh b/mkimage-slackware.sh
index d7cfb10..0b7ff14 100755
--- a/mkimage-slackware.sh
+++ b/mkimage-slackware.sh
@@ -22,15 +22,9 @@ CWD=$(pwd)
base_pkgs="a/aaa_base \
a/aaa_elflibs \
- a/aaa_libraries \
a/coreutils \
a/glibc-solibs \
- a/aaa_glibc-solibs \
a/aaa_terminfo \
- a/pam \
- a/cracklib \
- a/libpwquality \
- a/e2fsprogs \
a/pkgtools \
a/shadow \
a/tar \
@@ -71,6 +65,8 @@ base_pkgs="a/aaa_base \
n/openssl"
slackware_current_must_haves="n/libmnl \
+ a/aaa_libraries \
+ a/aaa_glibc-solibs \
a/pam-1 \
l/libcap-ng \
n/iptables \ |
Some programs in vbatts/slackware:current image at hub.docker.com do not work due to missing libraries. This patch solves those problems.