pmcf 1.88.2 → 1.88.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cluster.mjs +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.88.2",
3
+ "version": "1.88.3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/cluster.mjs CHANGED
@@ -163,7 +163,7 @@ export class Cluster extends Host {
163
163
  `${this.name}-master.target`,
164
164
  [
165
165
  "[Unit]",
166
- `Description: Services to be activated in master state of cluster ${this.name}`
166
+ `Description=Services to be activated in master state of cluster ${this.name}`
167
167
  ]
168
168
  );
169
169
 
@@ -172,7 +172,7 @@ export class Cluster extends Host {
172
172
  `${this.name}-backup.target`,
173
173
  [
174
174
  "[Unit]",
175
- `Description: Services to be activated in backup state of cluster ${this.name}`
175
+ `Description=Services to be activated in backup state of cluster ${this.name}`
176
176
  ]
177
177
  );
178
178
 
@@ -181,7 +181,7 @@ export class Cluster extends Host {
181
181
  `${this.name}-fault.target`,
182
182
  [
183
183
  "[Unit]",
184
- `Description: Services to be activated in fault state of cluster ${this.name}`
184
+ `Description=Services to be activated in fault state of cluster ${this.name}`
185
185
  ]
186
186
  );
187
187