From: alex Date: Sat, 17 Dec 2022 20:27:28 +0000 (+0100) Subject: Disable spiceproxy and add comments X-Git-Tag: 20240214-emacs~523 X-Git-Url: https://xn--ix-yja.es/gitweb/?a=commitdiff_plain;h=ec4b34253ee5d6376ebcbb4f7aee97b82652f48e;p=alex.git Disable spiceproxy and add comments --- diff --git a/personal_infra/puppet/modules/proxmox/manifests/init.pp b/personal_infra/puppet/modules/proxmox/manifests/init.pp index 7a9dd38..2136036 100644 --- a/personal_infra/puppet/modules/proxmox/manifests/init.pp +++ b/personal_infra/puppet/modules/proxmox/manifests/init.pp @@ -9,8 +9,16 @@ class proxmox { refreshonly => true } + # to prevent Germany/Hetzner abuse complaints service {['rpcbind.target', 'rpcbind.service', 'rpcbind.socket']: ensure => stopped, enable => mask, } + + # TODO: secure this. Right now I don't use VMs, so just disable it + service {'spiceproxy': + ensure => stopped, + enable => mask, + } + }