pmcf 3.10.12 → 3.10.14

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": "3.10.12",
3
+ "version": "3.10.14",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -53,7 +53,7 @@
53
53
  "dependencies": {
54
54
  "ip-utilties": "^1.4.9",
55
55
  "npm-pkgbuild": "^18.2.31",
56
- "pacc": "^4.23.0",
56
+ "pacc": "^4.23.1",
57
57
  "package-directory": "^8.1.0"
58
58
  },
59
59
  "devDependencies": {
@@ -48,7 +48,7 @@ export class MosquittoService extends Service {
48
48
  dir,
49
49
  sources: [new FileContentProvider(dir + "/")],
50
50
  outputs: this.outputs,
51
- attributes: {
51
+ properties: {
52
52
  name: `mosquitto-${this.location.name}-${host.name}`,
53
53
  description: `mosquitto definitions for ${this.fullName}@${name}`,
54
54
  access: "private",
@@ -110,7 +110,7 @@ export class OpenLDAPService extends Service {
110
110
  dir,
111
111
  sources: [new FileContentProvider(dir + "/", ...filePermissions)],
112
112
  outputs: this.outputs,
113
- attributes: {
113
+ properties: {
114
114
  name: `openldap-${this.location.name}-${name}`,
115
115
  description: `openldap definitions for ${this.fullName}@${name}`,
116
116
  access: "private",
@@ -120,13 +120,13 @@ export class OpenLDAPService extends Service {
120
120
  };
121
121
 
122
122
  addHook(
123
- packageData.attributes.hooks,
123
+ packageData.properties.hooks,
124
124
  "post_upgrade",
125
125
  "setfacl -m u:ldap:r /etc/letsencrypt/archive/*/privkey*.pem"
126
126
  );
127
127
 
128
128
  addHook(
129
- packageData.attributes.hooks,
129
+ packageData.properties.hooks,
130
130
  "post_install",
131
131
  "setfacl -m u:ldap:r /etc/letsencrypt/archive/*/privkey*.pem"
132
132
  );
@@ -440,7 +440,7 @@ export class MosquittoService extends Service {
440
440
  dir: any;
441
441
  sources: FileContentProvider[];
442
442
  outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
443
- attributes: {
443
+ properties: {
444
444
  name: string;
445
445
  description: string;
446
446
  access: string;
@@ -470,7 +470,7 @@ export class OpenLDAPService extends Service {
470
470
  dir: any;
471
471
  sources: FileContentProvider[];
472
472
  outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
473
- attributes: {
473
+ properties: {
474
474
  name: string;
475
475
  description: string;
476
476
  access: string;