8 lines
154 B
Bash
8 lines
154 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
export DEBIAN_FRONTEND=noninteractive
|
||
|
|
||
|
# install bash and only bash so that the setup scripts can assume bash
|
||
|
apt update
|
||
|
apt install -y bash
|