In cloud realm VMs we get plenty of systemd timers deployed via profile::auto_restarts::service that don't belong there. We don't need or desire them.
There is some semantic interactions between the puppet manifests for debdeploy and auto_restarts that simply wont allow to disable systemd timers as they are today.
Actually they are harmful in some cases because they often run lsof trying to inspect a NFS filesystem which we may have many cloud VMs which can cause other problems.
The only known way to prevent the NFS filesystem from being hit by lsof is by using profile::debdeploy::client::exclude_filesystems: ['nfsv4'], ie. this patch: https://gerrit.wikimedia.org/r/c/operations/puppet/+/920644/2
However, it is not really a valid solution because the default for cloud realm is to don't deploy this configuration via profile::debdeploy::client::ensure: absent, so the setting gets ignored.
Another apporach would be to have some hiera way to prevent the systemd timers from being deployed. That's the patch https://gerrit.wikimedia.org/r/c/operations/puppet/+/920648