diff options
Diffstat (limited to 'scripts/vyos/apt-install.sh')
-rw-r--r-- | scripts/vyos/apt-install.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/vyos/apt-install.sh b/scripts/vyos/apt-install.sh new file mode 100644 index 0000000..22f28dc --- /dev/null +++ b/scripts/vyos/apt-install.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -e +set -x + +export DEBIAN_FRONTEND=noninteractive + +# install missing vyos features, you can comment it if not needed +apt install -y \ + vim \ + net-tools + |