vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / snmpd.nix
blob9248a6b390101ebec0831c91b5ce049737c971f8
1 import ./make-test-python.nix ({ pkgs, lib, ... }: {
2   name = "snmpd";
4   nodes.snmpd = {
5     environment.systemPackages = with pkgs; [
6       net-snmp
7     ];
9     services.snmpd = {
10       enable = true;
11       configText = ''
12         rocommunity public
13       '';
14     };
15   };
17   testScript = ''
18     start_all();
19     machine.wait_for_unit("snmpd.service")
20     machine.succeed("snmpwalk -v 2c -c public localhost | grep SNMPv2-MIB::sysName.0");
21   '';