2018-04-12 15:24:46 -04:00
|
|
|
#!/bin/bash
|
|
|
|
# From https://github.com/tasket/Qubes-VM-hardening
|
2019-08-27 21:13:20 -04:00
|
|
|
# installer version 0.9.3
|
2018-04-12 15:24:46 -04:00
|
|
|
|
2018-04-03 10:53:15 -04:00
|
|
|
set -e
|
2018-02-20 17:40:29 -05:00
|
|
|
[ `id -u` -eq 0 ] || exit
|
|
|
|
|
2019-08-13 13:46:52 -04:00
|
|
|
if [ "$1" = "--uninstall" ]; then
|
|
|
|
echo "Removing vm-boot-protect.service..."
|
|
|
|
echo "Warning: This will remove any custom files added to /etc/default/vms!"
|
|
|
|
read -p "Proceed [y/N]? " ans
|
|
|
|
if [[ $ans == @(Y|y) ]]; then
|
|
|
|
systemctl disable vm-boot-protect.service
|
|
|
|
rm -r /lib/systemd/system/vm-boot-protect.service /usr/lib/qubes/init/vm-boot-protect.sh /etc/default/vms
|
|
|
|
systemctl daemon-reload
|
|
|
|
echo "Done."
|
|
|
|
else
|
|
|
|
echo "Aborted."
|
|
|
|
fi
|
2019-08-13 16:22:27 -04:00
|
|
|
exit 0
|
2019-08-13 13:46:52 -04:00
|
|
|
fi
|
|
|
|
|
2018-03-29 07:22:22 -04:00
|
|
|
|
2018-04-03 10:53:15 -04:00
|
|
|
echo "Installing vm-boot-protect.service..."
|
2018-03-29 02:57:06 -04:00
|
|
|
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
|
2018-02-20 17:40:29 -05:00
|
|
|
systemctl daemon-reload
|
2018-03-29 02:57:06 -04:00
|
|
|
systemctl enable vm-boot-protect.service
|
2018-02-20 17:40:29 -05:00
|
|
|
|
2018-04-03 10:53:15 -04:00
|
|
|
echo "Adding defaults in /etc/default/vms..."
|
2019-01-29 23:09:53 -05:00
|
|
|
mkdir -p /etc/default/vms
|
2018-04-03 10:53:15 -04:00
|
|
|
# Careful... ownership & mode are not preserved here!
|
2018-04-14 11:18:55 -04:00
|
|
|
cp -riv default/vms/* /etc/default/vms
|
2018-04-03 10:53:15 -04:00
|
|
|
|
2019-08-27 21:13:20 -04:00
|
|
|
echo "Adding nosuid,nodev options to /etc/fstab..."
|
|
|
|
cp /etc/fstab /etc/fstab.bak
|
|
|
|
awk '($1~"^/rw/" || $2~"^/rw$") && ($4!~"nosuid" || $4!~"nodev") {$4=$4",nosuid,nodev"}1' \
|
|
|
|
/etc/fstab.bak >/etc/fstab
|
|
|
|
|
2019-08-13 13:46:52 -04:00
|
|
|
|
2018-04-12 15:24:46 -04:00
|
|
|
echo -e "\nvm-boot-protect installed!\n"
|
|
|
|
|
2019-09-02 08:50:18 -04:00
|
|
|
#bash ./configure-sudo-prompt
|
2018-04-12 15:24:46 -04:00
|
|
|
exit 0
|
2018-02-20 17:40:29 -05:00
|
|
|
|