pmcf 4.0.7 → 4.0.8

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.0.7",
3
+ "version": "4.0.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/service.mjs CHANGED
@@ -70,7 +70,7 @@ export const ServiceTypeDefinition = {
70
70
  ...endpointAttributes,
71
71
  alias: string_attribute_writable,
72
72
  weight: { ...number_attribute_writable /*default: 1*/ },
73
- systemd: string_collection_attribute_writable
73
+ systemdService: string_attribute_writable
74
74
  }
75
75
  };
76
76
 
@@ -79,7 +79,7 @@ export class Service extends Base {
79
79
  _weight;
80
80
  _type;
81
81
  _port;
82
- _systemd;
82
+ _systemdService;
83
83
 
84
84
  static {
85
85
  addType(this);
@@ -245,8 +245,8 @@ export class Service extends Base {
245
245
  return serviceTypes(ServiceTypes[this.type]);
246
246
  }
247
247
 
248
- get systemdServices() {
249
- return this.extendedProperty("_systemd");
248
+ get systemdService() {
249
+ return this.extendedProperty("_systemdService") ?? ServiceTypes[this.type]?.systemdService;
250
250
  }
251
251
 
252
252
  dnsRecordsForDomainName(domainName, hasSVRRecords) {
@@ -95,6 +95,7 @@ const BindServiceTypeDefinition = {
95
95
  allowedUpdates: string_collection_attribute_writable
96
96
  },
97
97
  service: {
98
+ systemdService: "bind.service",
98
99
  extends: ["dns"],
99
100
  services: {
100
101
  "bind-statistics": {
@@ -163,9 +164,7 @@ export class BindService extends ExtraSourceService {
163
164
 
164
165
  constructor(owner, data) {
165
166
  super(owner, data);
166
-
167
- this._systemd = "bind.service";
168
-
167
+
169
168
  this.views = {};
170
169
 
171
170
  for (const name of ["internal", "protected"]) {
@@ -17,6 +17,7 @@ const ChronyServiceTypeDefinition = {
17
17
  owners: ServiceTypeDefinition.owners,
18
18
  key: "name",
19
19
  service: {
20
+ systemdService: "chronyd.service",
20
21
  extends: ["ntp"],
21
22
  services: {
22
23
  "chrony-cmd": {
@@ -53,11 +54,6 @@ export class ChronyService extends ExtraSourceService {
53
54
  return ChronyServiceTypeDefinition;
54
55
  }
55
56
 
56
- constructor(owner, data) {
57
- super(owner, data);
58
- this._systemd = "chronyd.service";
59
- }
60
-
61
57
  get type() {
62
58
  return ChronyServiceTypeDefinition.name;
63
59
  }
@@ -18,6 +18,7 @@ const OpenLDAPServiceTypeDefinition = {
18
18
  uri: string_attribute_writable
19
19
  },
20
20
  service: {
21
+ systemdService: "slapd.service",
21
22
  extends: ["ldap"],
22
23
  services: {
23
24
  ldap: {
@@ -45,11 +46,6 @@ export class OpenLDAPService extends Service {
45
46
  _baseDN;
46
47
  _rootDN;
47
48
 
48
- constructor(owner, data) {
49
- super(owner, data);
50
- this._systemd = "slapd.service";
51
- }
52
-
53
49
  get type() {
54
50
  return OpenLDAPServiceTypeDefinition.name;
55
51
  }
@@ -60,6 +60,7 @@ const SystemdJournalRemoteServiceTypeDefinition = {
60
60
  }
61
61
  },
62
62
  service: {
63
+ systemdService: "systemd-journal-remote.service",
63
64
  endpoints: [
64
65
  {
65
66
  family: "IPv4",
@@ -95,10 +96,6 @@ export class SystemdJournalRemoteService extends Service {
95
96
  return SystemdJournalRemoteServiceTypeDefinition.name;
96
97
  }
97
98
 
98
- get systemdServices() {
99
- return this.type;
100
- }
101
-
102
99
  /**
103
100
  *
104
101
  * @param {string} name
@@ -106,7 +103,7 @@ export class SystemdJournalRemoteService extends Service {
106
103
  */
107
104
  systemdConfigs(name) {
108
105
  return {
109
- serviceName: `${this.type}.service`,
106
+ serviceName: this.systemdService,
110
107
  configFileName: `etc/systemd/journal-remote.conf.d/${name}.conf`,
111
108
  content: ["Remote", this.getProperties(filterConfigurable)]
112
109
  };
@@ -40,7 +40,9 @@ const SystemdJournalUploadServiceTypeDefinition = {
40
40
  // default: false
41
41
  }
42
42
  },
43
- service: {}
43
+ service: {
44
+ systemdService: "systemd-journal-upload.service"
45
+ }
44
46
  };
45
47
 
46
48
  /**
@@ -62,10 +64,6 @@ export class SystemdJournalUploadService extends Service {
62
64
  return SystemdJournalUploadServiceTypeDefinition.name;
63
65
  }
64
66
 
65
- get systemdServices() {
66
- return this.type;
67
- }
68
-
69
67
  /**
70
68
  *
71
69
  * @param {string} name
@@ -73,7 +71,7 @@ export class SystemdJournalUploadService extends Service {
73
71
  */
74
72
  systemdConfigs(name) {
75
73
  return {
76
- serviceName: `${this.type}.service`,
74
+ serviceName: this.systemdService,
77
75
  configFileName: `etc/systemd/journal-upload.conf.d/${name}.conf`,
78
76
  content: ["Upload", this.getProperties(filterConfigurable)]
79
77
  };
@@ -106,7 +106,9 @@ const SystemdJournalServiceTypeDefinition = {
106
106
  configurable: true
107
107
  }
108
108
  },
109
- service: {}
109
+ service: {
110
+ systemdService: "systemd-journald.service"
111
+ }
110
112
  };
111
113
 
112
114
  export class SystemdJournaldService extends Service {
@@ -123,13 +125,9 @@ export class SystemdJournaldService extends Service {
123
125
  return SystemdJournalServiceTypeDefinition.name;
124
126
  }
125
127
 
126
- get systemdServices() {
127
- return this.type;
128
- }
129
-
130
128
  systemdConfigs(name) {
131
129
  return {
132
- serviceName: `${this.type}.service`,
130
+ serviceName: this.systemdService,
133
131
  configFileName: `etc/systemd/journal.conf.d/${name}.conf`,
134
132
  content: ["Journal", this.getProperties(filterConfigurable)]
135
133
  };
@@ -40,7 +40,9 @@ const SystemdResolvedServiceTypeDefinition = {
40
40
  DNSOverTLS: { ...yesno_attribute_writable, configurable: true },
41
41
  LLMNR: { ...yesno_attribute_writable, configurable: true }
42
42
  },
43
- service: {}
43
+ service: {
44
+ systemdService: "systemd-resolved.service"
45
+ }
44
46
  };
45
47
 
46
48
  export class SystemdResolvedService extends ExtraSourceService {
@@ -57,10 +59,6 @@ export class SystemdResolvedService extends ExtraSourceService {
57
59
  return SystemdResolvedServiceTypeDefinition.name;
58
60
  }
59
61
 
60
- get systemdServices() {
61
- return this.type;
62
- }
63
-
64
62
  systemdConfigs(name) {
65
63
  const options = (lower, upper, limit) => {
66
64
  return {
@@ -76,7 +74,7 @@ export class SystemdResolvedService extends ExtraSourceService {
76
74
  };
77
75
 
78
76
  return {
79
- serviceName: `${this.type}.service`,
77
+ serviceName: this.systemdService,
80
78
  configFileName: `etc/systemd/resolved.conf.d/${name}.conf`,
81
79
  content: [
82
80
  "Resolve",
@@ -27,7 +27,9 @@ const SystemdTimesyncdServiceTypeDefinition = {
27
27
  ConnectionRetrySec: { ...duration_attribute_writable, configurable: true },
28
28
  SaveIntervalSec: { ...duration_attribute_writable, configurable: true }
29
29
  },
30
- service: {}
30
+ service: {
31
+ systemdService: "systemd-timesyncd.service"
32
+ }
31
33
  };
32
34
 
33
35
  export class SystemdTimesyncdService extends ExtraSourceService {
@@ -44,10 +46,6 @@ export class SystemdTimesyncdService extends ExtraSourceService {
44
46
  return SystemdTimesyncdServiceTypeDefinition.name;
45
47
  }
46
48
 
47
- get systemdServices() {
48
- return this.type;
49
- }
50
-
51
49
  systemdConfigs(name) {
52
50
  const options = (lower, upper) => {
53
51
  return {
@@ -61,7 +59,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
61
59
  };
62
60
 
63
61
  return {
64
- serviceName: `${this.type}.service`,
62
+ serviceName: this.systemdService,
65
63
  configFileName: `etc/systemd/timesyncd.conf.d/${name}.conf`,
66
64
  content: [
67
65
  "Time",
@@ -442,7 +442,7 @@ export class ExtraSourceService extends Service {
442
442
  env?: string[] | string;
443
443
  additionalValues?: object;
444
444
  };
445
- systemd: import("pacc").AttributeDefinition;
445
+ systemdService: import("pacc").AttributeDefinition;
446
446
  port: import("pacc").AttributeDefinition;
447
447
  protocol: {
448
448
  values: string[];
@@ -716,7 +716,7 @@ export class ExtraSourceService extends Service {
716
716
  env?: string[] | string;
717
717
  additionalValues?: object;
718
718
  };
719
- systemd: import("pacc").AttributeDefinition;
719
+ systemdService: import("pacc").AttributeDefinition;
720
720
  port: import("pacc").AttributeDefinition;
721
721
  protocol: {
722
722
  values: string[];
@@ -276,7 +276,7 @@ export namespace ServiceTypeDefinition {
276
276
  env?: string[] | string;
277
277
  additionalValues?: object;
278
278
  };
279
- systemd: import("pacc").AttributeDefinition;
279
+ systemdService: import("pacc").AttributeDefinition;
280
280
  port: import("pacc").AttributeDefinition;
281
281
  protocol: {
282
282
  values: string[];
@@ -551,7 +551,7 @@ export class Service extends Base {
551
551
  env?: string[] | string;
552
552
  additionalValues?: object;
553
553
  };
554
- systemd: import("pacc").AttributeDefinition;
554
+ systemdService: import("pacc").AttributeDefinition;
555
555
  port: import("pacc").AttributeDefinition;
556
556
  protocol: {
557
557
  values: string[];
@@ -608,7 +608,7 @@ export class Service extends Base {
608
608
  _weight: any;
609
609
  _type: any;
610
610
  _port: any;
611
- _systemd: any;
611
+ _systemdService: any;
612
612
  get host(): Host;
613
613
  hosts(): Generator<any, void, any>;
614
614
  get domainName(): string;
@@ -633,7 +633,7 @@ export class Service extends Base {
633
633
  set type(value: any);
634
634
  get type(): any;
635
635
  get types(): Set<any>;
636
- get systemdServices(): any;
636
+ get systemdService(): any;
637
637
  dnsRecordsForDomainName(domainName: any, hasSVRRecords: any): {
638
638
  type: any;
639
639
  key: any;
@@ -224,7 +224,7 @@ export class BindService extends ExtraSourceService {
224
224
  env?: string[] | string;
225
225
  additionalValues?: object;
226
226
  };
227
- systemd: import("pacc").AttributeDefinition;
227
+ systemdService: import("pacc").AttributeDefinition;
228
228
  port: import("pacc").AttributeDefinition;
229
229
  protocol: {
230
230
  values: string[];
@@ -498,7 +498,7 @@ export class BindService extends ExtraSourceService {
498
498
  env?: string[] | string;
499
499
  additionalValues?: object;
500
500
  };
501
- systemd: import("pacc").AttributeDefinition;
501
+ systemdService: import("pacc").AttributeDefinition;
502
502
  port: import("pacc").AttributeDefinition;
503
503
  protocol: {
504
504
  values: string[];
@@ -988,7 +988,7 @@ export class BindService extends ExtraSourceService {
988
988
  env?: string[] | string;
989
989
  additionalValues?: object;
990
990
  };
991
- systemd: import("pacc").AttributeDefinition;
991
+ systemdService: import("pacc").AttributeDefinition;
992
992
  port: import("pacc").AttributeDefinition;
993
993
  protocol: {
994
994
  values: string[];
@@ -1423,6 +1423,7 @@ export class BindService extends ExtraSourceService {
1423
1423
  allowedUpdates: import("pacc").AttributeDefinition;
1424
1424
  };
1425
1425
  service: {
1426
+ systemdService: string;
1426
1427
  extends: string[];
1427
1428
  services: {
1428
1429
  "bind-statistics": {
@@ -1463,7 +1464,6 @@ export class BindService extends ExtraSourceService {
1463
1464
  retry: number;
1464
1465
  expire: number;
1465
1466
  minimum: number;
1466
- _systemd: string;
1467
1467
  views: {};
1468
1468
  get soaUpdates(): number[];
1469
1469
  set zones(value: any[]);
@@ -224,7 +224,7 @@ export class ChronyService extends ExtraSourceService {
224
224
  env?: string[] | string;
225
225
  additionalValues?: object;
226
226
  };
227
- systemd: import("pacc").AttributeDefinition;
227
+ systemdService: import("pacc").AttributeDefinition;
228
228
  port: import("pacc").AttributeDefinition;
229
229
  protocol: {
230
230
  values: string[];
@@ -498,7 +498,7 @@ export class ChronyService extends ExtraSourceService {
498
498
  env?: string[] | string;
499
499
  additionalValues?: object;
500
500
  };
501
- systemd: import("pacc").AttributeDefinition;
501
+ systemdService: import("pacc").AttributeDefinition;
502
502
  port: import("pacc").AttributeDefinition;
503
503
  protocol: {
504
504
  values: string[];
@@ -988,7 +988,7 @@ export class ChronyService extends ExtraSourceService {
988
988
  env?: string[] | string;
989
989
  additionalValues?: object;
990
990
  };
991
- systemd: import("pacc").AttributeDefinition;
991
+ systemdService: import("pacc").AttributeDefinition;
992
992
  port: import("pacc").AttributeDefinition;
993
993
  protocol: {
994
994
  values: string[];
@@ -1235,6 +1235,7 @@ export class ChronyService extends ExtraSourceService {
1235
1235
  })[];
1236
1236
  key: string;
1237
1237
  service: {
1238
+ systemdService: string;
1238
1239
  extends: string[];
1239
1240
  services: {
1240
1241
  "chrony-cmd": {
@@ -1255,8 +1256,6 @@ export class ChronyService extends ExtraSourceService {
1255
1256
  };
1256
1257
  };
1257
1258
  };
1258
- constructor(owner: any, data: any);
1259
- _systemd: string;
1260
1259
  preparePackages(dir: any): AsyncGenerator<{
1261
1260
  dir: any;
1262
1261
  sources: FileContentProvider[];
@@ -222,7 +222,7 @@ export class HeadscaleService extends Service {
222
222
  env?: string[] | string;
223
223
  additionalValues?: object;
224
224
  };
225
- systemd: import("pacc").AttributeDefinition;
225
+ systemdService: import("pacc").AttributeDefinition;
226
226
  port: import("pacc").AttributeDefinition;
227
227
  protocol: {
228
228
  values: string[];
@@ -496,7 +496,7 @@ export class HeadscaleService extends Service {
496
496
  env?: string[] | string;
497
497
  additionalValues?: object;
498
498
  };
499
- systemd: import("pacc").AttributeDefinition;
499
+ systemdService: import("pacc").AttributeDefinition;
500
500
  port: import("pacc").AttributeDefinition;
501
501
  protocol: {
502
502
  values: string[];
@@ -222,7 +222,7 @@ export class InfluxdbService extends Service {
222
222
  env?: string[] | string;
223
223
  additionalValues?: object;
224
224
  };
225
- systemd: import("pacc").AttributeDefinition;
225
+ systemdService: import("pacc").AttributeDefinition;
226
226
  port: import("pacc").AttributeDefinition;
227
227
  protocol: {
228
228
  values: string[];
@@ -496,7 +496,7 @@ export class InfluxdbService extends Service {
496
496
  env?: string[] | string;
497
497
  additionalValues?: object;
498
498
  };
499
- systemd: import("pacc").AttributeDefinition;
499
+ systemdService: import("pacc").AttributeDefinition;
500
500
  port: import("pacc").AttributeDefinition;
501
501
  protocol: {
502
502
  values: string[];
@@ -222,7 +222,7 @@ export class KeaService extends Service {
222
222
  env?: string[] | string;
223
223
  additionalValues?: object;
224
224
  };
225
- systemd: import("pacc").AttributeDefinition;
225
+ systemdService: import("pacc").AttributeDefinition;
226
226
  port: import("pacc").AttributeDefinition;
227
227
  protocol: {
228
228
  values: string[];
@@ -496,7 +496,7 @@ export class KeaService extends Service {
496
496
  env?: string[] | string;
497
497
  additionalValues?: object;
498
498
  };
499
- systemd: import("pacc").AttributeDefinition;
499
+ systemdService: import("pacc").AttributeDefinition;
500
500
  port: import("pacc").AttributeDefinition;
501
501
  protocol: {
502
502
  values: string[];
@@ -222,7 +222,7 @@ export class MosquittoService extends Service {
222
222
  env?: string[] | string;
223
223
  additionalValues?: object;
224
224
  };
225
- systemd: import("pacc").AttributeDefinition;
225
+ systemdService: import("pacc").AttributeDefinition;
226
226
  port: import("pacc").AttributeDefinition;
227
227
  protocol: {
228
228
  values: string[];
@@ -496,7 +496,7 @@ export class MosquittoService extends Service {
496
496
  env?: string[] | string;
497
497
  additionalValues?: object;
498
498
  };
499
- systemd: import("pacc").AttributeDefinition;
499
+ systemdService: import("pacc").AttributeDefinition;
500
500
  port: import("pacc").AttributeDefinition;
501
501
  protocol: {
502
502
  values: string[];
@@ -222,7 +222,7 @@ export class OpenLDAPService extends Service {
222
222
  env?: string[] | string;
223
223
  additionalValues?: object;
224
224
  };
225
- systemd: import("pacc").AttributeDefinition;
225
+ systemdService: import("pacc").AttributeDefinition;
226
226
  port: import("pacc").AttributeDefinition;
227
227
  protocol: {
228
228
  values: string[];
@@ -496,7 +496,7 @@ export class OpenLDAPService extends Service {
496
496
  env?: string[] | string;
497
497
  additionalValues?: object;
498
498
  };
499
- systemd: import("pacc").AttributeDefinition;
499
+ systemdService: import("pacc").AttributeDefinition;
500
500
  port: import("pacc").AttributeDefinition;
501
501
  protocol: {
502
502
  values: string[];
@@ -748,6 +748,7 @@ export class OpenLDAPService extends Service {
748
748
  uri: import("pacc").AttributeDefinition;
749
749
  };
750
750
  service: {
751
+ systemdService: string;
751
752
  extends: string[];
752
753
  services: {
753
754
  ldap: {
@@ -759,10 +760,8 @@ export class OpenLDAPService extends Service {
759
760
  };
760
761
  };
761
762
  };
762
- constructor(owner: any, data: any);
763
763
  _baseDN: any;
764
764
  _rootDN: any;
765
- _systemd: string;
766
765
  get type(): string;
767
766
  set baseDN(value: any);
768
767
  get baseDN(): any;
@@ -226,7 +226,7 @@ export class SystemdJournalRemoteService extends Service {
226
226
  env?: string[] | string;
227
227
  additionalValues?: object;
228
228
  };
229
- systemd: import("pacc").AttributeDefinition;
229
+ systemdService: import("pacc").AttributeDefinition;
230
230
  port: import("pacc").AttributeDefinition;
231
231
  protocol: {
232
232
  values: string[];
@@ -500,7 +500,7 @@ export class SystemdJournalRemoteService extends Service {
500
500
  env?: string[] | string;
501
501
  additionalValues?: object;
502
502
  };
503
- systemd: import("pacc").AttributeDefinition;
503
+ systemdService: import("pacc").AttributeDefinition;
504
504
  port: import("pacc").AttributeDefinition;
505
505
  protocol: {
506
506
  values: string[];
@@ -969,6 +969,7 @@ export class SystemdJournalRemoteService extends Service {
969
969
  };
970
970
  };
971
971
  service: {
972
+ systemdService: string;
972
973
  endpoints: {
973
974
  family: string;
974
975
  port: number;
@@ -978,7 +979,6 @@ export class SystemdJournalRemoteService extends Service {
978
979
  };
979
980
  };
980
981
  get type(): string;
981
- get systemdServices(): string;
982
982
  /**
983
983
  *
984
984
  * @param {string} name
@@ -227,7 +227,7 @@ export class SystemdJournalUploadService extends Service {
227
227
  env?: string[] | string;
228
228
  additionalValues?: object;
229
229
  };
230
- systemd: import("pacc").AttributeDefinition;
230
+ systemdService: import("pacc").AttributeDefinition;
231
231
  port: import("pacc").AttributeDefinition;
232
232
  protocol: {
233
233
  values: string[];
@@ -501,7 +501,7 @@ export class SystemdJournalUploadService extends Service {
501
501
  env?: string[] | string;
502
502
  additionalValues?: object;
503
503
  };
504
- systemd: import("pacc").AttributeDefinition;
504
+ systemdService: import("pacc").AttributeDefinition;
505
505
  port: import("pacc").AttributeDefinition;
506
506
  protocol: {
507
507
  values: string[];
@@ -881,10 +881,11 @@ export class SystemdJournalUploadService extends Service {
881
881
  additionalValues?: object;
882
882
  };
883
883
  };
884
- service: {};
884
+ service: {
885
+ systemdService: string;
886
+ };
885
887
  };
886
888
  get type(): string;
887
- get systemdServices(): string;
888
889
  /**
889
890
  *
890
891
  * @param {string} name
@@ -222,7 +222,7 @@ export class SystemdJournaldService extends Service {
222
222
  env?: string[] | string;
223
223
  additionalValues?: object;
224
224
  };
225
- systemd: import("pacc").AttributeDefinition;
225
+ systemdService: import("pacc").AttributeDefinition;
226
226
  port: import("pacc").AttributeDefinition;
227
227
  protocol: {
228
228
  values: string[];
@@ -496,7 +496,7 @@ export class SystemdJournaldService extends Service {
496
496
  env?: string[] | string;
497
497
  additionalValues?: object;
498
498
  };
499
- systemd: import("pacc").AttributeDefinition;
499
+ systemdService: import("pacc").AttributeDefinition;
500
500
  port: import("pacc").AttributeDefinition;
501
501
  protocol: {
502
502
  values: string[];
@@ -1250,12 +1250,13 @@ export class SystemdJournaldService extends Service {
1250
1250
  additionalValues?: object;
1251
1251
  };
1252
1252
  };
1253
- service: {};
1253
+ service: {
1254
+ systemdService: string;
1255
+ };
1254
1256
  };
1255
1257
  get type(): string;
1256
- get systemdServices(): string;
1257
1258
  systemdConfigs(name: any): {
1258
- serviceName: string;
1259
+ serviceName: any;
1259
1260
  configFileName: string;
1260
1261
  content: any[];
1261
1262
  };
@@ -224,7 +224,7 @@ export class SystemdResolvedService extends ExtraSourceService {
224
224
  env?: string[] | string;
225
225
  additionalValues?: object;
226
226
  };
227
- systemd: import("pacc").AttributeDefinition;
227
+ systemdService: import("pacc").AttributeDefinition;
228
228
  port: import("pacc").AttributeDefinition;
229
229
  protocol: {
230
230
  values: string[];
@@ -498,7 +498,7 @@ export class SystemdResolvedService extends ExtraSourceService {
498
498
  env?: string[] | string;
499
499
  additionalValues?: object;
500
500
  };
501
- systemd: import("pacc").AttributeDefinition;
501
+ systemdService: import("pacc").AttributeDefinition;
502
502
  port: import("pacc").AttributeDefinition;
503
503
  protocol: {
504
504
  values: string[];
@@ -988,7 +988,7 @@ export class SystemdResolvedService extends ExtraSourceService {
988
988
  env?: string[] | string;
989
989
  additionalValues?: object;
990
990
  };
991
- systemd: import("pacc").AttributeDefinition;
991
+ systemdService: import("pacc").AttributeDefinition;
992
992
  port: import("pacc").AttributeDefinition;
993
993
  protocol: {
994
994
  values: string[];
@@ -1516,11 +1516,12 @@ export class SystemdResolvedService extends ExtraSourceService {
1516
1516
  collection: boolean;
1517
1517
  };
1518
1518
  };
1519
- service: {};
1519
+ service: {
1520
+ systemdService: string;
1521
+ };
1520
1522
  };
1521
- get systemdServices(): string;
1522
1523
  systemdConfigs(name: any): {
1523
- serviceName: string;
1524
+ serviceName: any;
1524
1525
  configFileName: string;
1525
1526
  content: any[];
1526
1527
  };
@@ -224,7 +224,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
224
224
  env?: string[] | string;
225
225
  additionalValues?: object;
226
226
  };
227
- systemd: import("pacc").AttributeDefinition;
227
+ systemdService: import("pacc").AttributeDefinition;
228
228
  port: import("pacc").AttributeDefinition;
229
229
  protocol: {
230
230
  values: string[];
@@ -498,7 +498,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
498
498
  env?: string[] | string;
499
499
  additionalValues?: object;
500
500
  };
501
- systemd: import("pacc").AttributeDefinition;
501
+ systemdService: import("pacc").AttributeDefinition;
502
502
  port: import("pacc").AttributeDefinition;
503
503
  protocol: {
504
504
  values: string[];
@@ -988,7 +988,7 @@ export class SystemdTimesyncdService extends ExtraSourceService {
988
988
  env?: string[] | string;
989
989
  additionalValues?: object;
990
990
  };
991
- systemd: import("pacc").AttributeDefinition;
991
+ systemdService: import("pacc").AttributeDefinition;
992
992
  port: import("pacc").AttributeDefinition;
993
993
  protocol: {
994
994
  values: string[];
@@ -1389,11 +1389,12 @@ export class SystemdTimesyncdService extends ExtraSourceService {
1389
1389
  additionalValues?: object;
1390
1390
  };
1391
1391
  };
1392
- service: {};
1392
+ service: {
1393
+ systemdService: string;
1394
+ };
1393
1395
  };
1394
- get systemdServices(): string;
1395
1396
  systemdConfigs(name: any): {
1396
- serviceName: string;
1397
+ serviceName: any;
1397
1398
  configFileName: string;
1398
1399
  content: any[];
1399
1400
  };
@@ -220,7 +220,7 @@ export class TailscaleService extends Service {
220
220
  env?: string[] | string;
221
221
  additionalValues?: object;
222
222
  };
223
- systemd: import("pacc").AttributeDefinition;
223
+ systemdService: import("pacc").AttributeDefinition;
224
224
  port: import("pacc").AttributeDefinition;
225
225
  protocol: {
226
226
  values: string[];
@@ -494,7 +494,7 @@ export class TailscaleService extends Service {
494
494
  env?: string[] | string;
495
495
  additionalValues?: object;
496
496
  };
497
- systemd: import("pacc").AttributeDefinition;
497
+ systemdService: import("pacc").AttributeDefinition;
498
498
  port: import("pacc").AttributeDefinition;
499
499
  protocol: {
500
500
  values: string[];