Dependency installer

This commit is contained in:
Joshua Boniface 2018-06-17 02:36:31 -04:00
parent 9bfd63777d
commit db75ff35d8
1 changed files with 6 additions and 0 deletions

6
install.sh Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
DEPS=( python3-kazoo python3-libvirt python3-psutil python3-apscheduler )
# Install required packages
sudo apt install ${DEPS[@]}