depot/third_party/nixpkgs/nixos/tests/syncthing-no-settings.nix

26 lines
602 B
Nix

import ./make-test-python.nix (
{ lib, pkgs, ... }:
{
name = "syncthing";
meta.maintainers = with pkgs.lib.maintainers; [ chkno ];
nodes = {
a = {
environment.systemPackages = with pkgs; [
curl
libxml2
syncthing
];
services.syncthing = {
enable = true;
};
};
};
# Test that indeed a syncthing-init.service systemd service is not created.
#
testScript = # python
''
a.succeed("systemctl list-unit-files | awk '$1 == \"syncthing-init.service\" {exit 1;}'")
'';
}
)