pmcf 3.5.1 → 3.6.1
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 +2 -2
- package/src/base.mjs +11 -7
- package/src/network-interfaces/loopback.mjs +3 -0
- package/src/network-interfaces/network-interface.mjs +1 -1
- package/src/network-support.mjs +6 -9
- package/src/service.mjs +5 -4
- package/types/base.d.mts +3 -29
- package/types/cluster.d.mts +4 -56
- package/types/extra-source-service.d.mts +6 -45
- package/types/host.d.mts +3 -29
- package/types/location.d.mts +5 -57
- package/types/network-interfaces/ethernet.d.mts +14 -92
- package/types/network-interfaces/loopback.d.mts +16 -92
- package/types/network-interfaces/network-interface.d.mts +14 -92
- package/types/network-interfaces/tun.d.mts +14 -92
- package/types/network-interfaces/wireguard.d.mts +14 -92
- package/types/network-interfaces/wlan.d.mts +21 -138
- package/types/network-support.d.mts +6 -18
- package/types/network.d.mts +6 -45
- package/types/owner.d.mts +2 -28
- package/types/root.d.mts +4 -56
- package/types/service.d.mts +13 -91
- package/types/services/bind.d.mts +12 -90
- package/types/services/chrony.d.mts +13 -91
- package/types/services/influxdb.d.mts +13 -91
- package/types/services/kea.d.mts +13 -91
- package/types/services/mosquitto.d.mts +13 -91
- package/types/services/openldap.d.mts +13 -91
- package/types/services/systemd-journal-remote.d.mts +12 -90
- package/types/services/systemd-journal-upload.d.mts +12 -90
- package/types/services/systemd-journal.d.mts +12 -90
- package/types/services/systemd-resolved.d.mts +12 -90
- package/types/services/systemd-timesyncd.d.mts +12 -90
|
@@ -43,20 +43,7 @@ export class OpenLDAPService extends Service {
|
|
|
43
43
|
get?: Function;
|
|
44
44
|
env?: string[] | string;
|
|
45
45
|
};
|
|
46
|
-
priority:
|
|
47
|
-
writable: boolean;
|
|
48
|
-
type: string;
|
|
49
|
-
isKey: boolean;
|
|
50
|
-
mandatory: boolean;
|
|
51
|
-
collection: boolean;
|
|
52
|
-
private?: boolean;
|
|
53
|
-
depends?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
default?: any;
|
|
56
|
-
set?: Function;
|
|
57
|
-
get?: Function;
|
|
58
|
-
env?: string[] | string;
|
|
59
|
-
};
|
|
46
|
+
priority: import("pacc").AttributeDefinition;
|
|
60
47
|
directory: {
|
|
61
48
|
writable: boolean;
|
|
62
49
|
type: string;
|
|
@@ -86,20 +73,7 @@ export class OpenLDAPService extends Service {
|
|
|
86
73
|
env?: string[] | string;
|
|
87
74
|
};
|
|
88
75
|
disabled: import("pacc").AttributeDefinition;
|
|
89
|
-
tags:
|
|
90
|
-
writable: boolean;
|
|
91
|
-
collection: boolean;
|
|
92
|
-
type: string;
|
|
93
|
-
isKey: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
private: boolean;
|
|
96
|
-
depends: string;
|
|
97
|
-
description: string;
|
|
98
|
-
default: any;
|
|
99
|
-
set: Function;
|
|
100
|
-
get: Function;
|
|
101
|
-
env: string[] | string;
|
|
102
|
-
};
|
|
76
|
+
tags: import("pacc").AttributeDefinition;
|
|
103
77
|
};
|
|
104
78
|
};
|
|
105
79
|
specializations: {};
|
|
@@ -120,37 +94,24 @@ export class OpenLDAPService extends Service {
|
|
|
120
94
|
env?: string[] | string;
|
|
121
95
|
};
|
|
122
96
|
weight: {
|
|
123
|
-
writable: boolean;
|
|
124
|
-
default: number;
|
|
125
97
|
type: string;
|
|
126
98
|
isKey: boolean;
|
|
99
|
+
writable: boolean;
|
|
127
100
|
mandatory: boolean;
|
|
128
101
|
collection: boolean;
|
|
129
102
|
private?: boolean;
|
|
130
103
|
depends?: string;
|
|
131
104
|
description?: string;
|
|
105
|
+
default?: any;
|
|
132
106
|
set?: Function;
|
|
133
107
|
get?: Function;
|
|
134
108
|
env?: string[] | string;
|
|
135
109
|
};
|
|
136
|
-
systemd:
|
|
137
|
-
writable: boolean;
|
|
138
|
-
collection: boolean;
|
|
139
|
-
type: string;
|
|
140
|
-
isKey: boolean;
|
|
141
|
-
mandatory: boolean;
|
|
142
|
-
private: boolean;
|
|
143
|
-
depends: string;
|
|
144
|
-
description: string;
|
|
145
|
-
default: any;
|
|
146
|
-
set: Function;
|
|
147
|
-
get: Function;
|
|
148
|
-
env: string[] | string;
|
|
149
|
-
};
|
|
110
|
+
systemd: import("pacc").AttributeDefinition;
|
|
150
111
|
port: {
|
|
151
|
-
writable: boolean;
|
|
152
112
|
type: string;
|
|
153
113
|
isKey: boolean;
|
|
114
|
+
writable: boolean;
|
|
154
115
|
mandatory: boolean;
|
|
155
116
|
collection: boolean;
|
|
156
117
|
private?: boolean;
|
|
@@ -307,20 +268,7 @@ export class OpenLDAPService extends Service {
|
|
|
307
268
|
get?: Function;
|
|
308
269
|
env?: string[] | string;
|
|
309
270
|
};
|
|
310
|
-
priority:
|
|
311
|
-
writable: boolean;
|
|
312
|
-
type: string;
|
|
313
|
-
isKey: boolean;
|
|
314
|
-
mandatory: boolean;
|
|
315
|
-
collection: boolean;
|
|
316
|
-
private?: boolean;
|
|
317
|
-
depends?: string;
|
|
318
|
-
description?: string;
|
|
319
|
-
default?: any;
|
|
320
|
-
set?: Function;
|
|
321
|
-
get?: Function;
|
|
322
|
-
env?: string[] | string;
|
|
323
|
-
};
|
|
271
|
+
priority: import("pacc").AttributeDefinition;
|
|
324
272
|
directory: {
|
|
325
273
|
writable: boolean;
|
|
326
274
|
type: string;
|
|
@@ -350,20 +298,7 @@ export class OpenLDAPService extends Service {
|
|
|
350
298
|
env?: string[] | string;
|
|
351
299
|
};
|
|
352
300
|
disabled: import("pacc").AttributeDefinition;
|
|
353
|
-
tags:
|
|
354
|
-
writable: boolean;
|
|
355
|
-
collection: boolean;
|
|
356
|
-
type: string;
|
|
357
|
-
isKey: boolean;
|
|
358
|
-
mandatory: boolean;
|
|
359
|
-
private: boolean;
|
|
360
|
-
depends: string;
|
|
361
|
-
description: string;
|
|
362
|
-
default: any;
|
|
363
|
-
set: Function;
|
|
364
|
-
get: Function;
|
|
365
|
-
env: string[] | string;
|
|
366
|
-
};
|
|
301
|
+
tags: import("pacc").AttributeDefinition;
|
|
367
302
|
};
|
|
368
303
|
};
|
|
369
304
|
specializations: {};
|
|
@@ -384,37 +319,24 @@ export class OpenLDAPService extends Service {
|
|
|
384
319
|
env?: string[] | string;
|
|
385
320
|
};
|
|
386
321
|
weight: {
|
|
387
|
-
writable: boolean;
|
|
388
|
-
default: number;
|
|
389
322
|
type: string;
|
|
390
323
|
isKey: boolean;
|
|
324
|
+
writable: boolean;
|
|
391
325
|
mandatory: boolean;
|
|
392
326
|
collection: boolean;
|
|
393
327
|
private?: boolean;
|
|
394
328
|
depends?: string;
|
|
395
329
|
description?: string;
|
|
330
|
+
default?: any;
|
|
396
331
|
set?: Function;
|
|
397
332
|
get?: Function;
|
|
398
333
|
env?: string[] | string;
|
|
399
334
|
};
|
|
400
|
-
systemd:
|
|
401
|
-
writable: boolean;
|
|
402
|
-
collection: boolean;
|
|
403
|
-
type: string;
|
|
404
|
-
isKey: boolean;
|
|
405
|
-
mandatory: boolean;
|
|
406
|
-
private: boolean;
|
|
407
|
-
depends: string;
|
|
408
|
-
description: string;
|
|
409
|
-
default: any;
|
|
410
|
-
set: Function;
|
|
411
|
-
get: Function;
|
|
412
|
-
env: string[] | string;
|
|
413
|
-
};
|
|
335
|
+
systemd: import("pacc").AttributeDefinition;
|
|
414
336
|
port: {
|
|
415
|
-
writable: boolean;
|
|
416
337
|
type: string;
|
|
417
338
|
isKey: boolean;
|
|
339
|
+
writable: boolean;
|
|
418
340
|
mandatory: boolean;
|
|
419
341
|
collection: boolean;
|
|
420
342
|
private?: boolean;
|
|
@@ -599,7 +521,7 @@ export class OpenLDAPService extends Service {
|
|
|
599
521
|
preparePackages(dir: any): AsyncGenerator<{
|
|
600
522
|
dir: any;
|
|
601
523
|
sources: FileContentProvider[];
|
|
602
|
-
outputs: Set<typeof import("npm-pkgbuild").
|
|
524
|
+
outputs: Set<typeof import("npm-pkgbuild").OCI | typeof import("npm-pkgbuild").DOCKER>;
|
|
603
525
|
properties: {
|
|
604
526
|
name: string;
|
|
605
527
|
description: string;
|
|
@@ -43,20 +43,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
43
43
|
get?: Function;
|
|
44
44
|
env?: string[] | string;
|
|
45
45
|
};
|
|
46
|
-
priority:
|
|
47
|
-
writable: boolean;
|
|
48
|
-
type: string;
|
|
49
|
-
isKey: boolean;
|
|
50
|
-
mandatory: boolean;
|
|
51
|
-
collection: boolean;
|
|
52
|
-
private?: boolean;
|
|
53
|
-
depends?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
default?: any;
|
|
56
|
-
set?: Function;
|
|
57
|
-
get?: Function;
|
|
58
|
-
env?: string[] | string;
|
|
59
|
-
};
|
|
46
|
+
priority: import("pacc").AttributeDefinition;
|
|
60
47
|
directory: {
|
|
61
48
|
writable: boolean;
|
|
62
49
|
type: string;
|
|
@@ -86,20 +73,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
86
73
|
env?: string[] | string;
|
|
87
74
|
};
|
|
88
75
|
disabled: import("pacc").AttributeDefinition;
|
|
89
|
-
tags:
|
|
90
|
-
writable: boolean;
|
|
91
|
-
collection: boolean;
|
|
92
|
-
type: string;
|
|
93
|
-
isKey: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
private: boolean;
|
|
96
|
-
depends: string;
|
|
97
|
-
description: string;
|
|
98
|
-
default: any;
|
|
99
|
-
set: Function;
|
|
100
|
-
get: Function;
|
|
101
|
-
env: string[] | string;
|
|
102
|
-
};
|
|
76
|
+
tags: import("pacc").AttributeDefinition;
|
|
103
77
|
};
|
|
104
78
|
};
|
|
105
79
|
specializations: {};
|
|
@@ -120,37 +94,24 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
120
94
|
env?: string[] | string;
|
|
121
95
|
};
|
|
122
96
|
weight: {
|
|
123
|
-
writable: boolean;
|
|
124
|
-
default: number;
|
|
125
97
|
type: string;
|
|
126
98
|
isKey: boolean;
|
|
99
|
+
writable: boolean;
|
|
127
100
|
mandatory: boolean;
|
|
128
101
|
collection: boolean;
|
|
129
102
|
private?: boolean;
|
|
130
103
|
depends?: string;
|
|
131
104
|
description?: string;
|
|
105
|
+
default?: any;
|
|
132
106
|
set?: Function;
|
|
133
107
|
get?: Function;
|
|
134
108
|
env?: string[] | string;
|
|
135
109
|
};
|
|
136
|
-
systemd:
|
|
137
|
-
writable: boolean;
|
|
138
|
-
collection: boolean;
|
|
139
|
-
type: string;
|
|
140
|
-
isKey: boolean;
|
|
141
|
-
mandatory: boolean;
|
|
142
|
-
private: boolean;
|
|
143
|
-
depends: string;
|
|
144
|
-
description: string;
|
|
145
|
-
default: any;
|
|
146
|
-
set: Function;
|
|
147
|
-
get: Function;
|
|
148
|
-
env: string[] | string;
|
|
149
|
-
};
|
|
110
|
+
systemd: import("pacc").AttributeDefinition;
|
|
150
111
|
port: {
|
|
151
|
-
writable: boolean;
|
|
152
112
|
type: string;
|
|
153
113
|
isKey: boolean;
|
|
114
|
+
writable: boolean;
|
|
154
115
|
mandatory: boolean;
|
|
155
116
|
collection: boolean;
|
|
156
117
|
private?: boolean;
|
|
@@ -307,20 +268,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
307
268
|
get?: Function;
|
|
308
269
|
env?: string[] | string;
|
|
309
270
|
};
|
|
310
|
-
priority:
|
|
311
|
-
writable: boolean;
|
|
312
|
-
type: string;
|
|
313
|
-
isKey: boolean;
|
|
314
|
-
mandatory: boolean;
|
|
315
|
-
collection: boolean;
|
|
316
|
-
private?: boolean;
|
|
317
|
-
depends?: string;
|
|
318
|
-
description?: string;
|
|
319
|
-
default?: any;
|
|
320
|
-
set?: Function;
|
|
321
|
-
get?: Function;
|
|
322
|
-
env?: string[] | string;
|
|
323
|
-
};
|
|
271
|
+
priority: import("pacc").AttributeDefinition;
|
|
324
272
|
directory: {
|
|
325
273
|
writable: boolean;
|
|
326
274
|
type: string;
|
|
@@ -350,20 +298,7 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
350
298
|
env?: string[] | string;
|
|
351
299
|
};
|
|
352
300
|
disabled: import("pacc").AttributeDefinition;
|
|
353
|
-
tags:
|
|
354
|
-
writable: boolean;
|
|
355
|
-
collection: boolean;
|
|
356
|
-
type: string;
|
|
357
|
-
isKey: boolean;
|
|
358
|
-
mandatory: boolean;
|
|
359
|
-
private: boolean;
|
|
360
|
-
depends: string;
|
|
361
|
-
description: string;
|
|
362
|
-
default: any;
|
|
363
|
-
set: Function;
|
|
364
|
-
get: Function;
|
|
365
|
-
env: string[] | string;
|
|
366
|
-
};
|
|
301
|
+
tags: import("pacc").AttributeDefinition;
|
|
367
302
|
};
|
|
368
303
|
};
|
|
369
304
|
specializations: {};
|
|
@@ -384,37 +319,24 @@ export class SystemdJournalRemoteService extends Service {
|
|
|
384
319
|
env?: string[] | string;
|
|
385
320
|
};
|
|
386
321
|
weight: {
|
|
387
|
-
writable: boolean;
|
|
388
|
-
default: number;
|
|
389
322
|
type: string;
|
|
390
323
|
isKey: boolean;
|
|
324
|
+
writable: boolean;
|
|
391
325
|
mandatory: boolean;
|
|
392
326
|
collection: boolean;
|
|
393
327
|
private?: boolean;
|
|
394
328
|
depends?: string;
|
|
395
329
|
description?: string;
|
|
330
|
+
default?: any;
|
|
396
331
|
set?: Function;
|
|
397
332
|
get?: Function;
|
|
398
333
|
env?: string[] | string;
|
|
399
334
|
};
|
|
400
|
-
systemd:
|
|
401
|
-
writable: boolean;
|
|
402
|
-
collection: boolean;
|
|
403
|
-
type: string;
|
|
404
|
-
isKey: boolean;
|
|
405
|
-
mandatory: boolean;
|
|
406
|
-
private: boolean;
|
|
407
|
-
depends: string;
|
|
408
|
-
description: string;
|
|
409
|
-
default: any;
|
|
410
|
-
set: Function;
|
|
411
|
-
get: Function;
|
|
412
|
-
env: string[] | string;
|
|
413
|
-
};
|
|
335
|
+
systemd: import("pacc").AttributeDefinition;
|
|
414
336
|
port: {
|
|
415
|
-
writable: boolean;
|
|
416
337
|
type: string;
|
|
417
338
|
isKey: boolean;
|
|
339
|
+
writable: boolean;
|
|
418
340
|
mandatory: boolean;
|
|
419
341
|
collection: boolean;
|
|
420
342
|
private?: boolean;
|
|
@@ -43,20 +43,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
43
43
|
get?: Function;
|
|
44
44
|
env?: string[] | string;
|
|
45
45
|
};
|
|
46
|
-
priority:
|
|
47
|
-
writable: boolean;
|
|
48
|
-
type: string;
|
|
49
|
-
isKey: boolean;
|
|
50
|
-
mandatory: boolean;
|
|
51
|
-
collection: boolean;
|
|
52
|
-
private?: boolean;
|
|
53
|
-
depends?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
default?: any;
|
|
56
|
-
set?: Function;
|
|
57
|
-
get?: Function;
|
|
58
|
-
env?: string[] | string;
|
|
59
|
-
};
|
|
46
|
+
priority: import("pacc").AttributeDefinition;
|
|
60
47
|
directory: {
|
|
61
48
|
writable: boolean;
|
|
62
49
|
type: string;
|
|
@@ -86,20 +73,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
86
73
|
env?: string[] | string;
|
|
87
74
|
};
|
|
88
75
|
disabled: import("pacc").AttributeDefinition;
|
|
89
|
-
tags:
|
|
90
|
-
writable: boolean;
|
|
91
|
-
collection: boolean;
|
|
92
|
-
type: string;
|
|
93
|
-
isKey: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
private: boolean;
|
|
96
|
-
depends: string;
|
|
97
|
-
description: string;
|
|
98
|
-
default: any;
|
|
99
|
-
set: Function;
|
|
100
|
-
get: Function;
|
|
101
|
-
env: string[] | string;
|
|
102
|
-
};
|
|
76
|
+
tags: import("pacc").AttributeDefinition;
|
|
103
77
|
};
|
|
104
78
|
};
|
|
105
79
|
specializations: {};
|
|
@@ -120,37 +94,24 @@ export class SystemdJournalUploadService extends Service {
|
|
|
120
94
|
env?: string[] | string;
|
|
121
95
|
};
|
|
122
96
|
weight: {
|
|
123
|
-
writable: boolean;
|
|
124
|
-
default: number;
|
|
125
97
|
type: string;
|
|
126
98
|
isKey: boolean;
|
|
99
|
+
writable: boolean;
|
|
127
100
|
mandatory: boolean;
|
|
128
101
|
collection: boolean;
|
|
129
102
|
private?: boolean;
|
|
130
103
|
depends?: string;
|
|
131
104
|
description?: string;
|
|
105
|
+
default?: any;
|
|
132
106
|
set?: Function;
|
|
133
107
|
get?: Function;
|
|
134
108
|
env?: string[] | string;
|
|
135
109
|
};
|
|
136
|
-
systemd:
|
|
137
|
-
writable: boolean;
|
|
138
|
-
collection: boolean;
|
|
139
|
-
type: string;
|
|
140
|
-
isKey: boolean;
|
|
141
|
-
mandatory: boolean;
|
|
142
|
-
private: boolean;
|
|
143
|
-
depends: string;
|
|
144
|
-
description: string;
|
|
145
|
-
default: any;
|
|
146
|
-
set: Function;
|
|
147
|
-
get: Function;
|
|
148
|
-
env: string[] | string;
|
|
149
|
-
};
|
|
110
|
+
systemd: import("pacc").AttributeDefinition;
|
|
150
111
|
port: {
|
|
151
|
-
writable: boolean;
|
|
152
112
|
type: string;
|
|
153
113
|
isKey: boolean;
|
|
114
|
+
writable: boolean;
|
|
154
115
|
mandatory: boolean;
|
|
155
116
|
collection: boolean;
|
|
156
117
|
private?: boolean;
|
|
@@ -307,20 +268,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
307
268
|
get?: Function;
|
|
308
269
|
env?: string[] | string;
|
|
309
270
|
};
|
|
310
|
-
priority:
|
|
311
|
-
writable: boolean;
|
|
312
|
-
type: string;
|
|
313
|
-
isKey: boolean;
|
|
314
|
-
mandatory: boolean;
|
|
315
|
-
collection: boolean;
|
|
316
|
-
private?: boolean;
|
|
317
|
-
depends?: string;
|
|
318
|
-
description?: string;
|
|
319
|
-
default?: any;
|
|
320
|
-
set?: Function;
|
|
321
|
-
get?: Function;
|
|
322
|
-
env?: string[] | string;
|
|
323
|
-
};
|
|
271
|
+
priority: import("pacc").AttributeDefinition;
|
|
324
272
|
directory: {
|
|
325
273
|
writable: boolean;
|
|
326
274
|
type: string;
|
|
@@ -350,20 +298,7 @@ export class SystemdJournalUploadService extends Service {
|
|
|
350
298
|
env?: string[] | string;
|
|
351
299
|
};
|
|
352
300
|
disabled: import("pacc").AttributeDefinition;
|
|
353
|
-
tags:
|
|
354
|
-
writable: boolean;
|
|
355
|
-
collection: boolean;
|
|
356
|
-
type: string;
|
|
357
|
-
isKey: boolean;
|
|
358
|
-
mandatory: boolean;
|
|
359
|
-
private: boolean;
|
|
360
|
-
depends: string;
|
|
361
|
-
description: string;
|
|
362
|
-
default: any;
|
|
363
|
-
set: Function;
|
|
364
|
-
get: Function;
|
|
365
|
-
env: string[] | string;
|
|
366
|
-
};
|
|
301
|
+
tags: import("pacc").AttributeDefinition;
|
|
367
302
|
};
|
|
368
303
|
};
|
|
369
304
|
specializations: {};
|
|
@@ -384,37 +319,24 @@ export class SystemdJournalUploadService extends Service {
|
|
|
384
319
|
env?: string[] | string;
|
|
385
320
|
};
|
|
386
321
|
weight: {
|
|
387
|
-
writable: boolean;
|
|
388
|
-
default: number;
|
|
389
322
|
type: string;
|
|
390
323
|
isKey: boolean;
|
|
324
|
+
writable: boolean;
|
|
391
325
|
mandatory: boolean;
|
|
392
326
|
collection: boolean;
|
|
393
327
|
private?: boolean;
|
|
394
328
|
depends?: string;
|
|
395
329
|
description?: string;
|
|
330
|
+
default?: any;
|
|
396
331
|
set?: Function;
|
|
397
332
|
get?: Function;
|
|
398
333
|
env?: string[] | string;
|
|
399
334
|
};
|
|
400
|
-
systemd:
|
|
401
|
-
writable: boolean;
|
|
402
|
-
collection: boolean;
|
|
403
|
-
type: string;
|
|
404
|
-
isKey: boolean;
|
|
405
|
-
mandatory: boolean;
|
|
406
|
-
private: boolean;
|
|
407
|
-
depends: string;
|
|
408
|
-
description: string;
|
|
409
|
-
default: any;
|
|
410
|
-
set: Function;
|
|
411
|
-
get: Function;
|
|
412
|
-
env: string[] | string;
|
|
413
|
-
};
|
|
335
|
+
systemd: import("pacc").AttributeDefinition;
|
|
414
336
|
port: {
|
|
415
|
-
writable: boolean;
|
|
416
337
|
type: string;
|
|
417
338
|
isKey: boolean;
|
|
339
|
+
writable: boolean;
|
|
418
340
|
mandatory: boolean;
|
|
419
341
|
collection: boolean;
|
|
420
342
|
private?: boolean;
|
|
@@ -43,20 +43,7 @@ export class SystemdJournalService extends Service {
|
|
|
43
43
|
get?: Function;
|
|
44
44
|
env?: string[] | string;
|
|
45
45
|
};
|
|
46
|
-
priority:
|
|
47
|
-
writable: boolean;
|
|
48
|
-
type: string;
|
|
49
|
-
isKey: boolean;
|
|
50
|
-
mandatory: boolean;
|
|
51
|
-
collection: boolean;
|
|
52
|
-
private?: boolean;
|
|
53
|
-
depends?: string;
|
|
54
|
-
description?: string;
|
|
55
|
-
default?: any;
|
|
56
|
-
set?: Function;
|
|
57
|
-
get?: Function;
|
|
58
|
-
env?: string[] | string;
|
|
59
|
-
};
|
|
46
|
+
priority: import("pacc").AttributeDefinition;
|
|
60
47
|
directory: {
|
|
61
48
|
writable: boolean;
|
|
62
49
|
type: string;
|
|
@@ -86,20 +73,7 @@ export class SystemdJournalService extends Service {
|
|
|
86
73
|
env?: string[] | string;
|
|
87
74
|
};
|
|
88
75
|
disabled: import("pacc").AttributeDefinition;
|
|
89
|
-
tags:
|
|
90
|
-
writable: boolean;
|
|
91
|
-
collection: boolean;
|
|
92
|
-
type: string;
|
|
93
|
-
isKey: boolean;
|
|
94
|
-
mandatory: boolean;
|
|
95
|
-
private: boolean;
|
|
96
|
-
depends: string;
|
|
97
|
-
description: string;
|
|
98
|
-
default: any;
|
|
99
|
-
set: Function;
|
|
100
|
-
get: Function;
|
|
101
|
-
env: string[] | string;
|
|
102
|
-
};
|
|
76
|
+
tags: import("pacc").AttributeDefinition;
|
|
103
77
|
};
|
|
104
78
|
};
|
|
105
79
|
specializations: {};
|
|
@@ -120,37 +94,24 @@ export class SystemdJournalService extends Service {
|
|
|
120
94
|
env?: string[] | string;
|
|
121
95
|
};
|
|
122
96
|
weight: {
|
|
123
|
-
writable: boolean;
|
|
124
|
-
default: number;
|
|
125
97
|
type: string;
|
|
126
98
|
isKey: boolean;
|
|
99
|
+
writable: boolean;
|
|
127
100
|
mandatory: boolean;
|
|
128
101
|
collection: boolean;
|
|
129
102
|
private?: boolean;
|
|
130
103
|
depends?: string;
|
|
131
104
|
description?: string;
|
|
105
|
+
default?: any;
|
|
132
106
|
set?: Function;
|
|
133
107
|
get?: Function;
|
|
134
108
|
env?: string[] | string;
|
|
135
109
|
};
|
|
136
|
-
systemd:
|
|
137
|
-
writable: boolean;
|
|
138
|
-
collection: boolean;
|
|
139
|
-
type: string;
|
|
140
|
-
isKey: boolean;
|
|
141
|
-
mandatory: boolean;
|
|
142
|
-
private: boolean;
|
|
143
|
-
depends: string;
|
|
144
|
-
description: string;
|
|
145
|
-
default: any;
|
|
146
|
-
set: Function;
|
|
147
|
-
get: Function;
|
|
148
|
-
env: string[] | string;
|
|
149
|
-
};
|
|
110
|
+
systemd: import("pacc").AttributeDefinition;
|
|
150
111
|
port: {
|
|
151
|
-
writable: boolean;
|
|
152
112
|
type: string;
|
|
153
113
|
isKey: boolean;
|
|
114
|
+
writable: boolean;
|
|
154
115
|
mandatory: boolean;
|
|
155
116
|
collection: boolean;
|
|
156
117
|
private?: boolean;
|
|
@@ -307,20 +268,7 @@ export class SystemdJournalService extends Service {
|
|
|
307
268
|
get?: Function;
|
|
308
269
|
env?: string[] | string;
|
|
309
270
|
};
|
|
310
|
-
priority:
|
|
311
|
-
writable: boolean;
|
|
312
|
-
type: string;
|
|
313
|
-
isKey: boolean;
|
|
314
|
-
mandatory: boolean;
|
|
315
|
-
collection: boolean;
|
|
316
|
-
private?: boolean;
|
|
317
|
-
depends?: string;
|
|
318
|
-
description?: string;
|
|
319
|
-
default?: any;
|
|
320
|
-
set?: Function;
|
|
321
|
-
get?: Function;
|
|
322
|
-
env?: string[] | string;
|
|
323
|
-
};
|
|
271
|
+
priority: import("pacc").AttributeDefinition;
|
|
324
272
|
directory: {
|
|
325
273
|
writable: boolean;
|
|
326
274
|
type: string;
|
|
@@ -350,20 +298,7 @@ export class SystemdJournalService extends Service {
|
|
|
350
298
|
env?: string[] | string;
|
|
351
299
|
};
|
|
352
300
|
disabled: import("pacc").AttributeDefinition;
|
|
353
|
-
tags:
|
|
354
|
-
writable: boolean;
|
|
355
|
-
collection: boolean;
|
|
356
|
-
type: string;
|
|
357
|
-
isKey: boolean;
|
|
358
|
-
mandatory: boolean;
|
|
359
|
-
private: boolean;
|
|
360
|
-
depends: string;
|
|
361
|
-
description: string;
|
|
362
|
-
default: any;
|
|
363
|
-
set: Function;
|
|
364
|
-
get: Function;
|
|
365
|
-
env: string[] | string;
|
|
366
|
-
};
|
|
301
|
+
tags: import("pacc").AttributeDefinition;
|
|
367
302
|
};
|
|
368
303
|
};
|
|
369
304
|
specializations: {};
|
|
@@ -384,37 +319,24 @@ export class SystemdJournalService extends Service {
|
|
|
384
319
|
env?: string[] | string;
|
|
385
320
|
};
|
|
386
321
|
weight: {
|
|
387
|
-
writable: boolean;
|
|
388
|
-
default: number;
|
|
389
322
|
type: string;
|
|
390
323
|
isKey: boolean;
|
|
324
|
+
writable: boolean;
|
|
391
325
|
mandatory: boolean;
|
|
392
326
|
collection: boolean;
|
|
393
327
|
private?: boolean;
|
|
394
328
|
depends?: string;
|
|
395
329
|
description?: string;
|
|
330
|
+
default?: any;
|
|
396
331
|
set?: Function;
|
|
397
332
|
get?: Function;
|
|
398
333
|
env?: string[] | string;
|
|
399
334
|
};
|
|
400
|
-
systemd:
|
|
401
|
-
writable: boolean;
|
|
402
|
-
collection: boolean;
|
|
403
|
-
type: string;
|
|
404
|
-
isKey: boolean;
|
|
405
|
-
mandatory: boolean;
|
|
406
|
-
private: boolean;
|
|
407
|
-
depends: string;
|
|
408
|
-
description: string;
|
|
409
|
-
default: any;
|
|
410
|
-
set: Function;
|
|
411
|
-
get: Function;
|
|
412
|
-
env: string[] | string;
|
|
413
|
-
};
|
|
335
|
+
systemd: import("pacc").AttributeDefinition;
|
|
414
336
|
port: {
|
|
415
|
-
writable: boolean;
|
|
416
337
|
type: string;
|
|
417
338
|
isKey: boolean;
|
|
339
|
+
writable: boolean;
|
|
418
340
|
mandatory: boolean;
|
|
419
341
|
collection: boolean;
|
|
420
342
|
private?: boolean;
|