diff options
| author | alex <alex@pdp7.net> | 2022-12-17 21:27:28 +0100 |
|---|---|---|
| committer | alex <alex@pdp7.net> | 2022-12-17 21:27:28 +0100 |
| commit | ec4b34253ee5d6376ebcbb4f7aee97b82652f48e (patch) | |
| tree | 482823b6f1f0969f561d0650b5f9eaa3238c358c /personal_infra/puppet/modules | |
| parent | 6a260151dbcd7bcfc36c64ecfde7f2d5f897c42d (diff) | |
Disable spiceproxy and add comments
Diffstat (limited to 'personal_infra/puppet/modules')
| -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, + } + } |
