mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2025-01-10 17:28:21 -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
|