-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathsystemctl.ts
1007 lines (997 loc) · 22.8 KB
/
systemctl.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { filepaths } from "@fig/autocomplete-generators";
type Unit = {
unit: string;
load: "loaded" | "not-found" | "bad-setting" | "error" | "masked";
active:
| "active"
| "reloading"
| "inactive"
| "failed"
| "activating"
| "deactivating";
sub: string;
description: string;
};
const unitGenerator: Fig.Generator = {
custom: async (tokens, executeShellCommand) => {
const user = tokens.includes("--user");
const { stdout } = await executeShellCommand({
command: "systemctl",
args: [
"list-units",
"-o",
"json",
"--all",
"--full",
...(user ? ["--user"] : []),
],
});
const units: Unit[] = JSON.parse(stdout);
const suggustions = units.map((unit) => {
let activeEmoji: string;
if (unit.active === "active") {
activeEmoji = "✅";
} else if (unit.active === "reloading") {
activeEmoji = "🔄";
} else if (unit.active === "inactive") {
activeEmoji = "🛑";
} else if (unit.active === "failed") {
activeEmoji = "❌";
} else if (unit.active === "activating") {
activeEmoji = "⏳";
} else if (unit.active === "deactivating") {
activeEmoji = "⏳";
} else {
activeEmoji = "❓";
}
const activeString =
unit.active.charAt(0).toUpperCase() + unit.active.slice(1);
return {
name: unit.unit,
description: `${activeString} - ${unit.description}`,
icon: activeEmoji,
};
});
suggustions.sort((a, b) =>
a.name.localeCompare(b.name, undefined, { usage: "sort" })
);
return suggustions;
},
};
type UnitFile = {
unit_file: string;
state?: string;
preset?: "enabled" | "disabled";
};
const unitFileGenerator: Fig.Generator = {
custom: async (tokens, executeShellCommand) => {
const user = tokens.includes("--user");
const { stdout } = await executeShellCommand({
command: "systemctl",
args: [
"list-unit-files",
"-o",
"json",
"--all",
"--full",
...(user ? ["--user"] : []),
],
});
const units: UnitFile[] = JSON.parse(stdout);
const suggustions = units.map((unit) => {
let loadedEmoji: string;
if (unit.state === "enabled") {
loadedEmoji = "✅";
} else if (unit.state === "disabled") {
loadedEmoji = "🛑";
} else {
loadedEmoji = "❓";
}
const loadedString =
unit.state?.charAt(0).toUpperCase() + unit.state?.slice(1);
return {
name: unit.unit_file,
description: loadedString,
icon: loadedEmoji,
};
});
suggustions.sort((a, b) =>
a.name.localeCompare(b.name, undefined, { usage: "sort" })
);
return suggustions;
},
};
const completionSpec: Fig.Spec = {
name: "systemctl",
description: "",
subcommands: [
{
name: "list-units",
description: "List units currently in memory",
args: {
name: "PATTERN",
generators: unitGenerator,
isVariadic: true,
isOptional: true,
},
},
{
name: "list-sockets",
description: "List socket units currently in memory ordered by address",
args: {
name: "PATTERN",
isVariadic: true,
isOptional: true,
},
},
{
name: "list-timers",
description:
"List timer units currently in memory ordered by next elapse",
args: {
name: "PATTERN",
isVariadic: true,
isOptional: true,
},
},
{
name: "is-active",
description: "Check whether units are active",
args: {
name: "PATTERN",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "is-failed",
description: "Check whether units are failed",
args: {
name: "PATTERN",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "status",
description: "Show runtime status of one or more units",
args: {
name: "PATTERN or PID",
generators: unitGenerator,
isVariadic: true,
isOptional: true,
},
},
{
name: "show",
description: "Show properties of one or more",
args: {
name: "PATTERN or JOB",
generators: unitGenerator,
isVariadic: true,
isOptional: true,
},
},
{
name: "cat",
description: "Show files and drop-ins of specified units",
args: {
name: "PATTERN",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "help",
description: "Show manual for one or more units",
args: {
name: "PATTERN or PID",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "list-dependencies",
description:
"Recursively show units which are required or wanted by the units or by which those",
args: {
name: "PATTERN",
generators: unitGenerator,
isVariadic: true,
isOptional: true,
},
},
{
name: "start",
description: "Start (activate) one or more units",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "stop",
description: "Stop (deactivate) one or more units",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "reload",
description: "Reload one or more units",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "restart",
description: "Start or restart one or more units",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "try-restart",
description: "Restart one or more units if active",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "reload-or-restart",
description:
"Reload one or more units if possible, otherwise start or restart",
args: {
name: "UNIT",
isVariadic: true,
},
},
{
name: "try-reload-or-restart",
description:
"If active, reload one or more units, if supported, otherwise restart",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "isolate",
description: "Start one unit and stop all others",
args: {
name: "UNIT",
generators: unitGenerator,
},
},
{
name: "kill",
description: "Send signal to processes of a unit",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "clean",
description: "Clean runtime, cache, state, logs or configuration of unit",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "freeze",
description: "Freeze execution of unit processes",
args: {
name: "PATTERN",
isVariadic: true,
},
},
{
name: "thaw",
description: "Resume execution of a frozen unit",
args: {
name: "PATTERN",
isVariadic: true,
},
},
{
name: "set-property",
description: "Sets one or more properties of a unit",
args: [
{
name: "UNIT",
generators: unitGenerator,
},
{
name: "PROPERTY=VALUE",
},
],
},
{
name: "bind",
description: "Bind-mount a path from the host into a unit's namespace",
args: [
{
name: "UNIT",
generators: unitGenerator,
},
{
name: "PATH",
template: "filepaths",
},
{
name: "PATH",
template: "filepaths",
isOptional: true,
},
],
},
{
name: "mount-image",
description: "Mount an image from the host into a unit's namespace",
args: [
{
name: "UNIT",
generators: unitGenerator,
},
{
name: "PATH",
template: "filepaths",
},
{
name: "PATH",
template: "filepaths",
isOptional: true,
},
{
name: "OPTS",
isOptional: true,
},
],
},
{
name: "service-log-level",
description: "Get/set logging threshold for service",
args: [
{
name: "SERVICE",
},
{
name: "LEVEL",
isOptional: true,
},
],
},
{
name: "service-log-target",
description: "Get/set logging target for service",
args: [
{
name: "SERVICE",
},
{
name: "TARGET",
isOptional: true,
},
],
},
{
name: "reset-failed",
description: "Reset failed state for all, one, or more units",
args: {
name: "PATTERN",
isVariadic: true,
isOptional: true,
},
},
{
name: "list-unit-files",
description: "List installed unit files",
args: {
name: "PATTERN",
generators: unitFileGenerator,
isVariadic: true,
isOptional: true,
},
},
{
name: "enable",
description: "Enable one or more unit files",
args: {
name: "UNIT|PATH",
generators: [
unitFileGenerator,
filepaths({
extensions: ["service"],
}),
],
isVariadic: true,
isOptional: true,
},
},
{
name: "disable",
description: "Disable one or more unit files",
args: {
name: "UNIT|PATH",
generators: [
unitGenerator,
filepaths({
extensions: ["service"],
}),
],
isVariadic: true,
},
},
{
name: "reenable",
description: "Reenable one or more unit files",
args: {
name: "UNIT",
generators: unitFileGenerator,
isVariadic: true,
},
},
{
name: "preset",
description:
"Enable/disable one or more unit files based on preset configuration",
args: {
name: "UNIT",
generators: unitFileGenerator,
isVariadic: true,
},
},
{
name: "preset-all",
description:
"Enable/disable all unit files based on preset configuration",
args: {
name: "UNIT",
generators: unitFileGenerator,
isVariadic: true,
},
},
{
name: "mask",
description: "Mask one or more unit files",
args: {
name: "UNIT",
generators: unitFileGenerator,
isVariadic: true,
},
},
{
name: "unmask",
description: "Unmask one or more unit files",
args: {
name: "UNIT",
generators: unitFileGenerator,
isVariadic: true,
},
},
{
name: "link",
description: "Link one or more units files into the search path",
args: {
name: "PATH",
template: "filepaths",
isVariadic: true,
},
},
{
name: "revert",
description: "Revert one or more unit files to vendor version",
args: {
name: "UNIT",
generators: unitFileGenerator,
isVariadic: true,
},
},
{
name: "add-wants",
description:
"Add 'Wants' dependency for the target on specified one or more units",
args: [
{
name: "TARGET",
},
{
name: "UNIT",
isVariadic: true,
},
],
},
{
name: "add-requires",
description:
"Add 'Requires' dependency for the target on specified one or more units",
args: [
{
name: "TARGET",
},
{
name: "UNIT",
isVariadic: true,
},
],
},
{
name: "edit",
description: "Edit one or more unit files",
args: {
name: "UNIT",
generators: unitGenerator,
isVariadic: true,
},
},
{
name: "get-default",
description: "Get the name of the default target",
},
{
name: "set-default",
description: "Set the default target",
args: {
name: "TARGET",
},
},
{
name: "list-jobs",
description: "List jobs",
args: {
name: "PATTERN",
isVariadic: true,
isOptional: true,
},
},
{
name: "cancel",
description: "Cancel all, one, or more jobs",
args: {
name: "JOB",
isVariadic: true,
isOptional: true,
},
},
{
name: "show-environment",
description: "Dump environment",
},
{
name: "set-environment",
description: "Set one or more environment variables",
args: {
name: "VARIABLE=VALUE",
isVariadic: true,
},
},
{
name: "unset-environment",
description: "Unset one or more environment variables",
args: {
name: "VARIABLE",
isVariadic: true,
},
},
{
name: "import-environment",
description: "Import all or some environment variables",
args: {
name: "VARIABLE",
isVariadic: true,
},
},
{
name: "daemon-reload",
description: "Reload systemd manager configuration",
},
{
name: "daemon-reexec",
description: "Reexecute systemd manager",
},
{
name: "log-level",
description: "Get/set logging threshold for manager",
args: {
name: "LEVEL",
isOptional: true,
},
},
{
name: "log-target",
description: "Get/set logging target for manager",
args: {
name: "TARGET",
isOptional: true,
},
},
{
name: "service-watchdogs",
description: "Get/set service watchdog state",
args: {
name: "BOOL",
isOptional: true,
suggestions: ["true", "false"],
},
},
{
name: "is-system-running",
description: "Check whether system is fully running",
},
{
name: "default",
description: "Enter system default mode",
isDangerous: true,
},
{
name: "rescue",
description: "Enter system rescue mode",
isDangerous: true,
},
{
name: "emergency",
description: "Enter system emergency mode",
isDangerous: true,
},
{
name: "halt",
description: "Shut down and halt the system",
isDangerous: true,
},
{
name: "poweroff",
description: "Shut down and power-off the system",
isDangerous: true,
},
{
name: "reboot",
description: "Shut down and reboot the system",
isDangerous: true,
},
{
name: "kexec",
description: "Shut down and reboot the system with kexec",
isDangerous: true,
},
{
name: "exit",
description: "Request user instance or container exit",
args: {
name: "EXIT_CODE",
isOptional: true,
},
isDangerous: true,
},
{
name: "switch-root",
description: "Change to a different root file system",
args: [
{
name: "ROOT",
},
{
name: "INIT",
},
],
isDangerous: true,
},
{
name: "suspend",
description: "Suspend the system",
isDangerous: true,
},
{
name: "hibernate",
description: "Hibernate the system",
isDangerous: true,
},
{
name: "hybrid-sleep",
description: "Hibernate and suspend the system",
isDangerous: true,
},
{
name: "suspend-then-hibernate",
description:
"Suspend the system, wake after a period of time, and hibernate",
isDangerous: true,
},
],
options: [
{
name: ["-h", "--help"],
description: "Show this help",
},
{
name: "--version",
description: "Show package version",
},
{
name: "--system",
description: "Connect to system manager",
},
{
name: "--user",
description: "Connect to user service manager",
},
{
name: ["-H", "--host"],
description: "Operate on remote host",
args: { name: "[USER@]HOST" },
},
{
name: ["-M", "--machine"],
description: "Operate on a local container",
args: { name: "CONTAINER" },
},
{
name: ["-t", "--type"],
description: "List units of a particular type",
args: { name: "TYPE" },
},
{
name: "--state",
description: "List units with particular LOAD or SUB or ACTIVE state",
exclusiveOn: ["--failed"],
args: {
name: "STATE",
},
},
{
name: "--failed",
description: "Shortcut for --state=failed",
exclusiveOn: ["--state"],
},
{
name: ["-p", "--property"],
description: "Show only properties by this name",
exclusiveOn: ["-P"],
args: {
name: "NAME",
},
},
{
name: "-P",
description: "Equivalent to --value --property=NAME",
exclusiveOn: ["-p", "--property", "--value"],
},
{
name: ["-a", "--all"],
description:
"Show all properties/all units currently in memory, including dead/empty ones. To list all units installed on the system, use 'list-unit-files' instead",
},
{
name: ["-l", "--full"],
description: "Don't ellipsize unit names on output",
},
{
name: ["-r", "--recursive"],
description: "Show unit list of host and local containers",
},
{
name: "--reverse",
description: "Show reverse dependencies with 'list-dependencies'",
},
{
name: "--with-dependencies",
description:
"Show unit dependencies with 'status', 'cat', 'list-units', and 'list-unit-files'",
},
{
name: "--job-mode",
description:
"Specify how to deal with already queued jobs, when queueing a new job",
args: {
name: "MODE",
},
},
{
name: ["-T", "--show-transaction"],
description: "When enqueuing a unit job, show full transaction",
},
{
name: "--show-types",
description: "When showing sockets, explicitly show their type",
},
{
name: "--value",
description: "When showing properties, only print the value",
exclusiveOn: ["-P"],
},
{
name: "--check-inhibitors",
description:
"Specify if checking inhibitors before shutting down sleeping or hibernating",
exclusiveOn: ["-i"],
args: {
name: "MODE",
},
},
{
name: "-i",
description: "Shortcut for --check-inhibitors=no",
exclusiveOn: ["--check-inhibitors"],
},
{
name: "--kill-who",
description: "Whom to send signal to",
args: {
name: "WHO",
},
},
{
name: ["-s", "--signal"],
description: "Which signal to send",
args: {
name: "SIGNAL",
},
},
{
name: "--what",
description: "Which types of resources to remove",
args: {
name: "RESOURCES",
},
},
{
name: "--now",
description: "Start or stop unit after enabling or disabling it",
},
{
name: "--dry-run",
description: "Only print what would be done",
},
{
name: ["-q", "--quiet"],
description: "Supress output",
},
{
name: "--wait",
description:
"For (re)start, wait until service stopped again. For is-system-running, wait until startup is completed",
},
{
name: "--no-block",
description: "Do not wait until operation finished",
},
{
name: "--no-wall",
description: "Don't send wall message before halt/power-off/reboot",
},
{
name: "--no-reload",
description: "Don't reload daemon after en-/dis-abling unit files",
},
{
name: "--legend",
description: "Enable/disable the legend (column headers and hints)",
args: {
name: "BOOL",
suggestions: ["true", "false"],
},
},
{
name: "--no-pager",
description: "Do not pipe output into a pager",
},
{
name: "--no-ask-password",
description: "Do not ask for system passwords",
},
{
name: "--global",
description: "Edit/enable/disable/mask default user unit files globally",
},
{
name: "--runtime",
description:
"Edit/enable/disable/mask unit files temporarily until next reboot",
},
{
name: ["-f", "--force"],
description:
"When enabling unit files, override existing symlinks. When shutting down, execute action immediately",
},
{
name: "--preset-mode",
description: "Apply only enable, only disable, or all presets",
args: {
name: "MODE",
},
},
{
name: "--root",
description:
"Edit/enable/disable/mask unit files in the specified root directory",
args: {
name: "PATH",
},
},
{
name: ["-n", "--lines"],
description: "Number of journal entries to show",
args: {
name: "N",
},
},
{
name: ["-o", "--output"],
description: "Change journal output mode",
args: {
name: "MODE",
suggestions: [
"short",
"short-precise",
"short-iso",
"short-iso-precise",
"short-full",
"short-monotonic",
"short-unix",
"verbose",
"export",
"json",
"json-pretty",
"json-sse",
"cat",
],
},
},
{
name: "--firmware-setup",
description: "Tell the firmware to show the setup menu on next boot",
},
{
name: "--boot-loader-menu",
description: "Boot into boot loader menu on next boot",
args: {
name: "TIME",
},
},
{
name: "--boot-loader-entry",
description: "Boot into a specific boot loader entry on next boot",
args: {
name: "NAME",
},
},
{
name: "--plain",
description: "Print unit dependencies as a list instead of a tree",
},
{
name: "--timestamp",
description: "Change format of printed timestamps",
args: {
name: "FORMAT",
suggestions: ["pretty", "unix", "us", "utc", "us+utc"],
},
},
{
name: "--read-only",
description: "Create read-only bind mount",
},
{
name: "--mkdir",
description: "Create directory before mounting, if missing",
},