diff options
| -rw-r--r-- | personal_infra/puppet/modules/proxmox/manifests/init.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/personal_infra/puppet/modules/proxmox/manifests/init.pp b/personal_infra/puppet/modules/proxmox/manifests/init.pp index 7a9dd384..21360368 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, + } + } |
