mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-05 01:49:11 -07:00
7 lines
125 B
Text
7 lines
125 B
Text
|
#!/bin/bash
|
||
|
set -e
|
||
|
export DEBIAN_FRONTEND=noninteractive
|
||
|
|
||
|
echo "Removing useless stuff"
|
||
|
apt-get purge -y openjdk-8-* || true
|