mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
19 lines
520 B
Nix
19 lines
520 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;}'")
|
||
|
'';
|
||
|
})
|