We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fee9f7 commit 59c0bc0Copy full SHA for 59c0bc0
2 files changed
modules/default.nix
@@ -16,5 +16,5 @@
16
17
storageModule = import ./storage/cinder-storage-node.nix { inherit (openstackPkgs) cinder; };
18
19
- testModules = import ./testing { };
+ testModules = import ./testing { inherit (openstackPkgs) python-openstackclient; };
20
}
modules/testing/default.nix
@@ -1,4 +1,6 @@
1
-{ }:
+{
2
+ python-openstackclient,
3
+}:
4
let
5
adminEnv = {
6
OS_USERNAME = "admin";
@@ -32,7 +34,7 @@ let
32
34
};
33
35
36
environment.systemPackages = [
- pkgs.openstackclient
37
+ python-openstackclient
38
pkgs.openiscsi
39
pkgs.sshpass
40
];
@@ -226,7 +228,7 @@ in
226
228
systemd.services.openstack-create-vm = {
227
229
description = "OpenStack";
230
path = [
231
232
pkgs.openssh
233
234
environment = adminEnv;
0 commit comments