This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/provision.sh

8 lines
194 B
Bash
Raw Normal View History

#/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