images: Restore documentation removed from the base Fedora images
https://github.com/debarshiray/toolbox/pull/55
This commit is contained in:
parent
c9a061c7b9
commit
dde1fa0734
|
@ -0,0 +1,80 @@
|
||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Copyright © 2019 Red Hat, Inc.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
|
collect()
|
||||||
|
(
|
||||||
|
if $1; then
|
||||||
|
postfix="_toolbox"
|
||||||
|
else
|
||||||
|
postfix=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
manpages_list=""
|
||||||
|
for dir in /usr/share/man/man*/ ; do
|
||||||
|
for docs in $dir*; do
|
||||||
|
package=$(rpm -qf $docs --qf "%{NAME}\n")
|
||||||
|
if ! [[ $package = *"is not owned by any"* ]]; then
|
||||||
|
manpages_list="$manpages_list$package\n"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
mkdir -p tmp
|
||||||
|
echo -e "$manpages_list" | sort | uniq > tmp/docs_list$postfix
|
||||||
|
rpm -qa --qf "%{NAME}\n" | sort | uniq > tmp/rpm_list$postfix
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
generate()
|
||||||
|
(
|
||||||
|
diff -c tmp/rpm_list_toolbox tmp/rpm_list | grep -E "^\+" | tr -d '+ ' > tmp/missing_packages
|
||||||
|
diff -c tmp/docs_list_toolbox tmp/docs_list | grep -E "^\+" | tr -d '+ ' > tmp/missing_manpages
|
||||||
|
manpages_list=$(comm -1 -3 tmp/missing_packages tmp/missing_manpages)
|
||||||
|
manpages_final=""
|
||||||
|
while read -r line; do
|
||||||
|
if [ "$(man $line)" != "" ]; then
|
||||||
|
manpages_final="$manpages_final$line\n"
|
||||||
|
fi
|
||||||
|
done <<< "$manpages_list"
|
||||||
|
echo -e "$manpages_final" >> missing-docs
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
case $1 in
|
||||||
|
collect )
|
||||||
|
shift
|
||||||
|
toolbox=false
|
||||||
|
case $1 in
|
||||||
|
-t | --toolbox )
|
||||||
|
toolbox=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
collect "$toolbox"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
generate )
|
||||||
|
generate
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
clean )
|
||||||
|
rm -rf tmp
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
exit 1
|
||||||
|
esac
|
|
@ -13,6 +13,10 @@ COPY README.md /
|
||||||
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
||||||
RUN dnf -y swap coreutils-single coreutils-full
|
RUN dnf -y swap coreutils-single coreutils-full
|
||||||
|
|
||||||
|
COPY missing-docs /
|
||||||
|
RUN dnf -y reinstall $(<missing-docs)
|
||||||
|
RUN rm /missing-docs
|
||||||
|
|
||||||
COPY extra-packages /
|
COPY extra-packages /
|
||||||
RUN dnf -y install $(<extra-packages)
|
RUN dnf -y install $(<extra-packages)
|
||||||
RUN rm /extra-packages
|
RUN rm /extra-packages
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
acl
|
||||||
|
bash
|
||||||
|
chkconfig
|
||||||
|
curl
|
||||||
|
dbus
|
||||||
|
dnf
|
||||||
|
gawk
|
||||||
|
grep
|
||||||
|
gzip
|
||||||
|
info
|
||||||
|
libcap
|
||||||
|
nss
|
||||||
|
openssl
|
||||||
|
p11-kit
|
||||||
|
pam
|
||||||
|
pkgconf
|
||||||
|
python3
|
||||||
|
rpm
|
||||||
|
rpm-plugin-systemd-inhibit
|
||||||
|
sed
|
||||||
|
systemd
|
||||||
|
tar
|
|
@ -13,6 +13,10 @@ COPY README.md /
|
||||||
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
||||||
RUN dnf -y swap coreutils-single coreutils-full
|
RUN dnf -y swap coreutils-single coreutils-full
|
||||||
|
|
||||||
|
COPY missing-docs /
|
||||||
|
RUN dnf -y reinstall $(<missing-docs)
|
||||||
|
RUN rm /missing-docs
|
||||||
|
|
||||||
COPY extra-packages /
|
COPY extra-packages /
|
||||||
RUN dnf -y install $(<extra-packages)
|
RUN dnf -y install $(<extra-packages)
|
||||||
RUN rm /extra-packages
|
RUN rm /extra-packages
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
acl
|
||||||
|
bash
|
||||||
|
chkconfig
|
||||||
|
curl
|
||||||
|
dbus-daemon
|
||||||
|
dnf
|
||||||
|
gawk
|
||||||
|
grep
|
||||||
|
gzip
|
||||||
|
info
|
||||||
|
libcap
|
||||||
|
openssl
|
||||||
|
p11-kit
|
||||||
|
pam
|
||||||
|
python3
|
||||||
|
rpm
|
||||||
|
rpm-plugin-systemd-inhibit
|
||||||
|
sed
|
||||||
|
systemd
|
||||||
|
tar
|
|
@ -13,6 +13,10 @@ COPY README.md /
|
||||||
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
||||||
RUN dnf -y swap coreutils-single coreutils-full
|
RUN dnf -y swap coreutils-single coreutils-full
|
||||||
|
|
||||||
|
COPY missing-docs /
|
||||||
|
RUN dnf -y reinstall $(<missing-docs)
|
||||||
|
RUN rm /missing-docs
|
||||||
|
|
||||||
COPY extra-packages /
|
COPY extra-packages /
|
||||||
RUN dnf -y install $(<extra-packages)
|
RUN dnf -y install $(<extra-packages)
|
||||||
RUN rm /extra-packages
|
RUN rm /extra-packages
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
acl
|
||||||
|
bash
|
||||||
|
chkconfig
|
||||||
|
curl
|
||||||
|
dbus-daemon
|
||||||
|
gawk
|
||||||
|
grep
|
||||||
|
gzip
|
||||||
|
libcap
|
||||||
|
openssl
|
||||||
|
p11-kit
|
||||||
|
pam
|
||||||
|
python3
|
||||||
|
rpm
|
||||||
|
rpm-plugin-systemd-inhibit
|
||||||
|
sed
|
||||||
|
systemd
|
||||||
|
tar
|
|
@ -13,6 +13,10 @@ COPY README.md /
|
||||||
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
||||||
RUN dnf -y swap coreutils-single coreutils-full
|
RUN dnf -y swap coreutils-single coreutils-full
|
||||||
|
|
||||||
|
COPY missing-docs /
|
||||||
|
RUN dnf -y reinstall $(<missing-docs)
|
||||||
|
RUN rm /missing-docs
|
||||||
|
|
||||||
COPY extra-packages /
|
COPY extra-packages /
|
||||||
RUN dnf -y install $(<extra-packages)
|
RUN dnf -y install $(<extra-packages)
|
||||||
RUN rm /extra-packages
|
RUN rm /extra-packages
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
acl
|
||||||
|
bash
|
||||||
|
chkconfig
|
||||||
|
curl
|
||||||
|
dbus-daemon
|
||||||
|
gawk
|
||||||
|
grep
|
||||||
|
gzip
|
||||||
|
libcap
|
||||||
|
openssl
|
||||||
|
p11-kit
|
||||||
|
pam
|
||||||
|
python3
|
||||||
|
rpm
|
||||||
|
rpm-plugin-systemd-inhibit
|
||||||
|
sed
|
||||||
|
systemd
|
||||||
|
tar
|
Loading…
Reference in New Issue