tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
virtualization/azure: reorder WALA and SSHD
Evgeny Egorochkin
10 years ago
cb69e43a
e86c38f9
+2
-6
1 changed file
expand all
collapse all
unified
split
nixos
modules
virtualisation
azure-agent.nix
+2
-6
nixos/modules/virtualisation/azure-agent.nix
···
155
155
156
156
systemd.targets.provisioned = {
157
157
description = "Services Requiring Azure VM provisioning to have finished";
158
158
-
wantedBy = [ "sshd.service" ];
159
159
-
before = [ "sshd.service" ];
160
158
};
161
159
162
160
systemd.services.consume-hypervisor-entropy =
···
179
177
};
180
178
181
179
systemd.services.waagent = {
182
182
-
wantedBy = [ "sshd.service" ];
183
183
-
before = [ "sshd.service" ];
184
184
-
after = [ "ip-up.target" ];
185
185
-
wants = [ "ip-up.target" ];
180
180
+
wantedBy = [ "multi-user.target" ];
181
181
+
after = [ "ip-up.target" "sshd.service" ];
186
182
187
183
path = [ pkgs.e2fsprogs ];
188
184
description = "Windows Azure Agent Service";