mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Add ipa-passwd tool Add simple field validation package This patch adds a package requirement, python-krbV. This is needed to determine the current user based on their kerberos ticket.
20 lines
435 B
Makefile
20 lines
435 B
Makefile
SBINDIR = $(DESTDIR)/usr/sbin
|
|
|
|
all: ;
|
|
|
|
install:
|
|
install -m 755 ipa-adduser $(SBINDIR)
|
|
install -m 755 ipa-finduser $(SBINDIR)
|
|
install -m 755 ipa-usermod $(SBINDIR)
|
|
install -m 755 ipa-deluser $(SBINDIR)
|
|
install -m 755 ipa-addgroup $(SBINDIR)
|
|
install -m 755 ipa-delgroup $(SBINDIR)
|
|
install -m 755 ipa-findgroup $(SBINDIR)
|
|
install -m 755 ipa-groupmod $(SBINDIR)
|
|
install -m 755 ipa-passwd $(SBINDIR)
|
|
|
|
clean:
|
|
rm -f *~ *.pyc
|
|
|
|
test:
|