forked from sneak/hacks
testing more
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
PKGS="$(cat $DIR/packages.txt)"
|
||||
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
apt update
|
||||
|
||||
apt upgrade -y
|
||||
|
||||
for PKG in $PKGS ; do
|
||||
apt install -y $PKG
|
||||
done
|
||||
Reference in New Issue
Block a user