summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@pdp7.net>2022-12-17 21:27:28 +0100
committeralex <alex@pdp7.net>2022-12-17 21:27:28 +0100
commitec4b34253ee5d6376ebcbb4f7aee97b82652f48e (patch)
tree482823b6f1f0969f561d0650b5f9eaa3238c358c
parent6a260151dbcd7bcfc36c64ecfde7f2d5f897c42d (diff)
Disable spiceproxy and add comments
-rw-r--r--personal_infra/puppet/modules/proxmox/manifests/init.pp8
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,
+ }
+
}