diff --git a/pephooks/normal/0720-install-selinux-hook.chroot b/pephooks/normal/0720-install-selinux-hook.chroot deleted file mode 100755 index 943d703..0000000 --- a/pephooks/normal/0720-install-selinux-hook.chroot +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -# SPDX-License-Identifier: GPL-3.0-or-later -# -# SPDX-FileCopyrightText: 2023 PeppemrintOS Team (peppermintosteam@proton.me) - -# Disable AppArmor service -systemctl disable apparmor --now - -# Install SELinux packages -apt install -y policycoreutils selinux-utils selinux-basics selinux-policy-default policycoreutils-python-utils - -# Activate SELinux -selinux-activate - -# Reload the services -systemctl daemon-reload - -echo "Completed." - -