mirror of
https://github.com/uutils/shadow.git
synced 2026-06-10 16:14:57 -07:00
8ba8f940fd
Fixes #93 — GNU compatibility test suite (tests/gnu-compat.sh) Fixes #94 — PAM end-to-end test script (tests/pam-e2e.sh) Fixes #95 — Setuid permissions in Makefile (chmod 4755) Fixes #96 — nscd env_clear() on subprocess spawning Fixes #97 — SELinux file context support (getfattr/chcon/restorecon) Fixes #98 — Audit logging to syslog/auditd Fixes #99 — subuid/subgid allocation in useradd Fixes #100 — Debian packaging (debian/control, debian/rules) Fixes #101 — Fedora packaging (shadow-rs.spec) Fixes #103 — Recursive chown on usermod UID change Fixes #104 — Proper date validation (Feb 31 rejected) 456 tests, zero clippy warnings. Binary: 894KB (release-small).
13 lines
206 B
Makefile
13 lines
206 B
Makefile
#!/usr/bin/make -f
|
|
%:
|
|
dh $@
|
|
|
|
override_dh_auto_build:
|
|
cargo build --release
|
|
|
|
override_dh_auto_install:
|
|
$(MAKE) DESTDIR=debian/shadow-rs PREFIX=/usr install
|
|
|
|
override_dh_auto_test:
|
|
cargo test --workspace
|