From fc55830c7a816a37ed9bd75c7dbd2b8169415944 Mon Sep 17 00:00:00 2001 From: ZoLuSs Date: Mon, 22 Jun 2020 12:34:25 +0200 Subject: [PATCH] Fix Application Sudo Example (#11707) * Update Proxmox Process On latest version of Debian (9.1 and later) snmpd run ad Debian-snmp user. In visudo change snmp to Debian-snmp * fix typo Co-authored-by: SourceDoctor --- doc/Extensions/Applications.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Extensions/Applications.md b/doc/Extensions/Applications.md index c22c4e9ead..0e353ef2f4 100644 --- a/doc/Extensions/Applications.md +++ b/doc/Extensions/Applications.md @@ -33,7 +33,7 @@ For example if snmpd is running as 'Debian-snmp' and we want to run the extend for proxmox, we check that the following run without error: ``` -sudo -u Debian-snmpn/usr/local/bin/proxmox +sudo -u Debian-snmp /usr/local/bin/proxmox ``` If it doesn't work, then you will need to use sudo with the extend command. @@ -1500,7 +1500,7 @@ extend proxmox /usr/bin/sudo /usr/local/bin/proxmox after, edit your sudo users (usually `visudo`) and add at the bottom: ``` -snmp ALL=(ALL) NOPASSWD: /usr/local/bin/proxmox +Debian-snmp ALL=(ALL) NOPASSWD: /usr/local/bin/proxmox ``` 6: Restart snmpd on your host