mirror of
https://github.com/tasket/Qubes-VM-hardening.git
synced 2024-10-01 06:35:42 -04:00
15 lines
371 B
Bash
15 lines
371 B
Bash
#!/bin/sh
|
|
[ `id -u` -eq 0 ] || exit
|
|
|
|
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 Disabling the pre-release service (if present)...
|
|
systemctl disable vm-sudo-protect.service
|
|
|
|
echo vm-boot-protect installed!
|
|
|