diff options
author | zsdc <taras@vyos.io> | 2022-05-05 14:35:14 +0300 |
---|---|---|
committer | zsdc <taras@vyos.io> | 2022-05-05 16:15:26 +0300 |
commit | b0ee2b1c59eb15a0b303b18fd801241ca00f57b0 (patch) | |
tree | bf758d938ef3c8e4ba95b9ee430964ccd5c90877 | |
parent | 72b8d501404d52e97e029c1b1f2424d37b17ea82 (diff) | |
download | vyos-build-b0ee2b1c59eb15a0b303b18fd801241ca00f57b0.tar.gz vyos-build-b0ee2b1c59eb15a0b303b18fd801241ca00f57b0.zip |
doc: T4415: Added back copyrights for components
Copyright information must not be deleted with the rest documentation
files.
-rwxr-xr-x | data/live-build-config/hooks/live/80-delete-docs.chroot | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/live-build-config/hooks/live/80-delete-docs.chroot b/data/live-build-config/hooks/live/80-delete-docs.chroot index d08b8edd..fa1f5168 100755 --- a/data/live-build-config/hooks/live/80-delete-docs.chroot +++ b/data/live-build-config/hooks/live/80-delete-docs.chroot @@ -1,4 +1,6 @@ #!/bin/bash -# We do not need any documentation on the system. This frees 43MB. -rm -rf /usr/share/doc /usr/share/doc-base /usr/share/docutils +# We do not need any documentation on the system. This frees some space. +# Copyright/licenses files are ignored for deletion +shopt -s extglob +rm -rf /usr/share/doc/*/!(copyright) /usr/share/doc-base |