chiark / gitweb /
systemctl: show capabilities in human readable format
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 31 Aug 2017 08:07:16 +0000 (17:07 +0900)
committerSven Eden <yamakuzure@gmx.net>
Thu, 31 Aug 2017 08:07:16 +0000 (17:07 +0900)
Follow-up for 21771f338d268e06dc9a10b9b08b14ff8217d4be.

src/shared/bus-util.c

index 2678cc9b086f22809247a55c9edfc533124ffe9c..69bbf5782692054206879b32d4c12019c28d1bf7 100644 (file)
@@ -39,6 +39,7 @@
 #include "bus-label.h"
 #include "bus-message.h"
 #include "bus-util.h"
+#include "cap-list.h"
 #include "cgroup-util.h"
 #include "def.h"
 #include "escape.h"
@@ -762,6 +763,15 @@ int bus_print_property(const char *name, sd_bus_message *property, bool value, b
 
                         print_property(name, "%s", result);
 
+                } else if (STR_IN_SET(name, "CapabilityBoundingSet", "AmbientCapabilities")) {
+                        _cleanup_free_ char *s = NULL;
+
+                        r = capability_set_to_string_alloc(u, &s);
+                        if (r < 0)
+                                return r;
+
+                        print_property(name, "%s", s);
+
                 } else if ((STR_IN_SET(name, "CPUWeight", "StartupCPUWeight", "IOWeight", "StartupIOWeight") && u == CGROUP_WEIGHT_INVALID) ||
                            (STR_IN_SET(name, "CPUShares", "StartupCPUShares") && u == CGROUP_CPU_SHARES_INVALID) ||
                            (STR_IN_SET(name, "BlockIOWeight", "StartupBlockIOWeight") && u == CGROUP_BLKIO_WEIGHT_INVALID) ||