summary refs log tree commit diff
path: root/nixos/tests/zigbee2mqtt.nix
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-04-30 01:45:57 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2021-04-30 19:42:26 +0200
commitf1e7183f69595beabacb785b2f6a3f57ff5f99a9 (patch)
tree270ca4a446ae0aeae52ede29ccad1d7adbede0fd /nixos/tests/zigbee2mqtt.nix
parenta691549f7e2e466aa3833992de55c72bcee36885 (diff)
downloadnixpkgs-f1e7183f69595beabacb785b2f6a3f57ff5f99a9.tar
nixpkgs-f1e7183f69595beabacb785b2f6a3f57ff5f99a9.tar.gz
nixpkgs-f1e7183f69595beabacb785b2f6a3f57ff5f99a9.tar.bz2
nixpkgs-f1e7183f69595beabacb785b2f6a3f57ff5f99a9.tar.lz
nixpkgs-f1e7183f69595beabacb785b2f6a3f57ff5f99a9.tar.xz
nixpkgs-f1e7183f69595beabacb785b2f6a3f57ff5f99a9.tar.zst
nixpkgs-f1e7183f69595beabacb785b2f6a3f57ff5f99a9.zip
nixos/tests/zigbee2mqtt: relax DevicePolicy and log systemd-analye security
Diffstat (limited to 'nixos/tests/zigbee2mqtt.nix')
-rw-r--r--nixos/tests/zigbee2mqtt.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/nixos/tests/zigbee2mqtt.nix b/nixos/tests/zigbee2mqtt.nix
index b7bb21f9227..98aadbb699b 100644
--- a/nixos/tests/zigbee2mqtt.nix
+++ b/nixos/tests/zigbee2mqtt.nix
@@ -1,4 +1,4 @@
-import ./make-test-python.nix ({ pkgs, ... }:
+import ./make-test-python.nix ({ pkgs, lib, ... }:
 
   {
     machine = { pkgs, ... }:
@@ -6,6 +6,8 @@ import ./make-test-python.nix ({ pkgs, ... }:
         services.zigbee2mqtt = {
           enable = true;
         };
+
+        systemd.services.zigbee2mqtt.serviceConfig.DevicePolicy = lib.mkForce "auto";
       };
 
     testScript = ''
@@ -14,6 +16,8 @@ import ./make-test-python.nix ({ pkgs, ... }:
       machine.succeed(
           "journalctl -eu zigbee2mqtt | grep \"Error: Error while opening serialport 'Error: Error: No such file or directory, cannot open /dev/ttyACM0'\""
       )
+
+      machine.log(machine.succeed("systemd-analyze security zigbee2mqtt.service"))
     '';
   }
 )