2019-11-04 13:32:55 +00:00
|
|
|
PACKAGES=vim git traceroute command-not-found dnsutils firefox screen htop
|
2019-07-11 20:41:04 +00:00
|
|
|
RM_PACKAGES=nano
|
|
|
|
|
|
|
|
APT=aptitude
|
|
|
|
APTITUDE=/usr/bin/aptitude
|
|
|
|
|
|
|
|
install: $(APTITUDE)
|
|
|
|
$(APT) update
|
|
|
|
$(APT) install -y $(PACKAGES)
|
|
|
|
$(APT) purge -y $(RM_PACKAGES)
|
|
|
|
|
|
|
|
$(APTITUDE):
|
|
|
|
apt update
|
2019-07-11 22:27:21 +00:00
|
|
|
apt install -y $(APT)
|