5 lines
182 B
Bash
5 lines
182 B
Bash
#!/bin/sh
|
|
LIST_OF_APPS="docker docker-compose nfs-kernel-server nfs-common ddclient nfs-utils fail2ban ncdu nload nethogs nmap sshfs"
|
|
apt-get update
|
|
apt-get install $LIST_OF_APPS -y
|