]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
shared/verbs: add a modicum of documentation
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Thu, 30 Apr 2020 11:59:33 +0000 (13:59 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 5 May 2020 16:04:44 +0000 (18:04 +0200)
src/shared/verbs.h

index c5fe6cc7c58b75c5065d96734b139ae2c76a4b2c..fd35a2e0dddd63b5c07c2466bbf585e4f45144ff 100644 (file)
@@ -6,8 +6,8 @@
 #define VERB_ANY ((unsigned) -1)
 
 typedef enum VerbFlags {
-        VERB_DEFAULT      = 1 << 0,
-        VERB_ONLINE_ONLY  = 1 << 1,
+        VERB_DEFAULT      = 1 << 0,  /* The verb to run if no verb is specified */
+        VERB_ONLINE_ONLY  = 1 << 1,  /* Just do nothing when running in chroot or offline */
 } VerbFlags;
 
 typedef struct {