Skip to content

Commit a019d41

Browse files
Tools: don't reinstall packages already in base image
1 parent b557cd6 commit a019d41

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

core/tools/install-system-tools.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ parallel --halt now,fail=1 '/home/pi/tools/{}/bootstrap.sh' ::: "${TOOLS[@]}"
1717
# Tools that uses apt to do the installation
1818
# APT is terrible like pip and don't know how to handle parallel installation
1919
# These should periodically be moved onto the base image
20-
apt update && apt install -y --no-install-recommends dhcpcd5 iptables iproute2 isc-dhcp-client nmap systemd
21-
apt clean && rm -rf /var/lib/apt/lists/*
20+
21+
# apt update && apt install -y --no-install-recommends [your latest forgotten packages here]
22+
# clean && rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)