mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-22 01:50:56 -07:00
Stop ParrotSec from overwriting our customizations.
Former-commit-id: 9d0f9b93071f97eca14cda37a4a3ae8c3b32c794 Former-commit-id: 6285dd7d8a066ca42da8604a85e7fab1a550bac9
This commit is contained in:
parent
362aae0f6f
commit
b8f58b1031
1 changed files with 13 additions and 0 deletions
|
@ -21,3 +21,16 @@ systemctl enable tor
|
||||||
systemctl enable cockpit.socket
|
systemctl enable cockpit.socket
|
||||||
systemctl enable xrdp
|
systemctl enable xrdp
|
||||||
systemctl disable firewalld
|
systemctl disable firewalld
|
||||||
|
|
||||||
|
#Distro-specific stuff
|
||||||
|
DISTRO=$(cat /etc/lsb-release | grep DISTRIB_ID | cut -c 12-30)
|
||||||
|
|
||||||
|
case $DISTRO in
|
||||||
|
Parrot)
|
||||||
|
#Stop ParrotSec from overwriting all our desktop customizations every time parrot-skel updates. >:-(
|
||||||
|
apt-mark hold parrot-skel
|
||||||
|
;;
|
||||||
|
Kali)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue