diff options
author | Davide Cavalca <davide125@tiscali.it> | 2018-10-13 01:26:48 -0700 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-10-13 17:26:48 +0900 |
commit | b75f0c69b3c80ab1d80f907de96f1c1a444c171a (patch) | |
tree | c2320b5e58c405c571b9ddd565d52d134501cc6c /src/tmpfiles/tmpfiles.c | |
parent | b4b3649a94fbb8833f946a3dae5c6ee1137cb1a9 (diff) | |
download | systemd-b75f0c69b3c80ab1d80f907de96f1c1a444c171a.tar.gz |
shared: add %g, %G specifiers for group / gid (#10368)
Diffstat (limited to 'src/tmpfiles/tmpfiles.c')
-rw-r--r-- | src/tmpfiles/tmpfiles.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index 1b3cb5fbd3..d7e02c400e 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -174,6 +174,8 @@ static const Specifier specifier_table[] = { { 'H', specifier_host_name, NULL }, { 'v', specifier_kernel_release, NULL }, + { 'g', specifier_group_name, NULL }, + { 'G', specifier_group_id, NULL }, { 'U', specifier_user_id, NULL }, { 'u', specifier_user_name, NULL }, { 'h', specifier_user_home, NULL }, |