diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-08-19 19:05:11 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-08-19 19:06:39 +0200 |
commit | 8530dc4467691a893aa2e07319b18a84fec96cad (patch) | |
tree | ee5e6242a52b57b6a47ff86e5c731100e7a7240a /Makefile.am | |
parent | 81163121e649523b4071f67ddc03c2db649036c5 (diff) |
tmpfiles: add new 'r' line type to add UIDs/GIDs to the pool to allocate UIDs/GIDs from
This way we can guarantee a limited amount of compatibility with
login.defs, by generate an appopriate "r" line out of it, on package
installation.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 3ef9c24313..d4d5775475 100644 --- a/Makefile.am +++ b/Makefile.am @@ -862,6 +862,8 @@ libsystemd_shared_la_SOURCES = \ src/shared/base-filesystem.h \ src/shared/memfd.c \ src/shared/memfd.h \ + src/shared/uid-range.c \ + src/shared/uid-range.h \ src/shared/nss-util.h nodist_libsystemd_shared_la_SOURCES = \ @@ -1322,7 +1324,8 @@ tests += \ test-capability \ test-async \ test-ratelimit \ - test-condition-util + test-condition-util \ + test-uid-range EXTRA_DIST += \ test/a.service \ @@ -1487,6 +1490,12 @@ test_util_SOURCES = \ test_util_LDADD = \ libsystemd-core.la +test_uid_range_SOURCES = \ + src/test/test-uid-range.c + +test_uid_range_LDADD = \ + libsystemd-core.la + test_socket_util_SOURCES = \ src/test/test-socket-util.c |