Qubes-VM-hardening/install
Christopher Laprise d0c2519a2a
echo quotes
2018-03-29 07:35:34 -04:00

16 lines
380 B
Bash

#!/bin/sh
[ `id -u` -eq 0 ] || exit
echo "Disabling the pre-release service (if present)..."
systemctl disable vm-sudo-protect.service
cp vm-boot-protect.sh /usr/lib/qubes/init
chmod +x /usr/lib/qubes/init/vm-boot-protect.sh
cp vm-boot-protect.service /lib/systemd/system
systemctl daemon-reload
systemctl enable vm-boot-protect.service
echo
echo "vm-boot-protect installed!"