8 lines
194 B
Bash
8 lines
194 B
Bash
|
#/bin/bash
|
||
|
|
||
|
# Ensure that dependencies are up to date.
|
||
|
sudo apt update && sudo apt upgrade -y --autoremove
|
||
|
|
||
|
# Ensure that critical dependencies are installed.
|
||
|
sudo apt install $(cat apt.txt) -y
|