blob: b5d43d7d9bbf5d079f860a5382c03546f758b186 [file] [log] [blame]
philip.zeyliger46be0962025-06-14 17:51:15 +00001#!/bin/bash
2set -e
3
4# Skip installing package docs (makes the man-db trigger much faster)
5# (I disabled `/doc` and `/info` too, just in case.)
6sudo tee /etc/dpkg/dpkg.cfg.d/01_nodoc > /dev/null << 'EOF'
7path-exclude /usr/share/doc/*
8path-exclude /usr/share/man/*
9path-exclude /usr/share/info/*
10EOF
11
12echo "APT optimization configured - documentation installation disabled"