pmcf 4.23.1 → 4.23.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "4.23.1",
3
+ "version": "4.23.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/host.mjs CHANGED
@@ -460,6 +460,7 @@ export class Host extends ServiceOwner {
460
460
  ],
461
461
  provides: [...this.provides],
462
462
  replaces: [...this.replaces],
463
+ depends: [...this.depends],
463
464
  backup: "root/.ssh/known_hosts"
464
465
  });
465
466
 
@@ -39,6 +39,7 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
39
39
  _ssid;
40
40
  _psk;
41
41
  _secretName;
42
+
42
43
  get kind() {
43
44
  return WLANNetworkInterfaceTypeDefinition.name;
44
45
  }
@@ -93,6 +94,6 @@ export class WLANNetworkInterface extends EthernetNetworkInterface {
93
94
  ]
94
95
  );
95
96
 
96
- packageData.properties.requires.push("iwd", "impala");
97
+ packageData.properties.depends.push("iwd", "impala");
97
98
  }
98
99
  }