diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-10-19 21:22:30 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-10-25 13:01:35 +0000 |
commit | 2d34355e16b442fcf51e93786401716dae3c4ea2 (patch) | |
tree | 1fe6e9c20153a6f76d5baf7a48480c93a0537b06 /package/utils/busybox/files/ntpd.capabilities | |
parent | ccb283c71cce2248eea3afd42624f626cdc3a4f2 (diff) | |
download | upstream-2d34355e16b442fcf51e93786401716dae3c4ea2.tar.gz upstream-2d34355e16b442fcf51e93786401716dae3c4ea2.tar.bz2 upstream-2d34355e16b442fcf51e93786401716dae3c4ea2.zip |
busybox: allow ntpd to run as non-root ntpd user
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'package/utils/busybox/files/ntpd.capabilities')
-rw-r--r-- | package/utils/busybox/files/ntpd.capabilities | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/utils/busybox/files/ntpd.capabilities b/package/utils/busybox/files/ntpd.capabilities new file mode 100644 index 0000000000..8a05dba4bc --- /dev/null +++ b/package/utils/busybox/files/ntpd.capabilities @@ -0,0 +1,22 @@ +{ + "bounding": [ + "CAP_NET_BIND_SERVICE", + "CAP_SYS_TIME" + ], + "effective": [ + "CAP_NET_BIND_SERVICE", + "CAP_SYS_TIME" + ], + "ambient": [ + "CAP_NET_BIND_SERVICE", + "CAP_SYS_TIME" + ], + "permitted": [ + "CAP_NET_BIND_SERVICE", + "CAP_SYS_TIME" + ], + "inheritable": [ + "CAP_NET_BIND_SERVICE", + "CAP_SYS_TIME" + ] +} |