Changeset 2195 for branches/fc17-dev/server/common/oursrc
- Timestamp:
- May 22, 2012, 10:52:35 PM (12 years ago)
- Location:
- branches/fc17-dev
- Files:
-
- 1 deleted
- 7 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/fc17-dev
- Property svn:mergeinfo changed
/trunk (added) merged: 2082-2122,2125-2148,2150-2194
- Property svn:mergeinfo changed
-
branches/fc17-dev/server/common/oursrc/accountadm/Makefile.in
r1693 r2195 8 8 sysconfdir = @sysconfdir@ 9 9 10 all-local: admof signup-scripts-frontend10 all-local: admof 11 11 12 admof: admof.c13 $(CC) $(CPPFLAGS) $(CFLAGS) $< -L/usr/lib/afs -L/usr/lib64/afs -lprot -lauth -lrxkad -lubik -laudit -lsys -lrx -llwp -lsys -lafsutil -lcom_err -lresolv -lkrb5 -ldes -o $@ 12 admof: LDLIBS = -lafsauthent_pic -lafsrpc_pic -lresolv -lkrb5 -lpthread 13 admof: admof.o 14 14 15 15 install: … … 18 18 install -p -m755 -D admof $(DESTDIR)$(bindir)/admof 19 19 install -p -m755 -D admof $(DESTDIR)$(sbindir)/ssh-admof 20 install -p -m755 -D signup-scripts-frontend $(DESTDIR)$(sbindir)/signup-scripts-frontend21 20 install -p -m755 -D signup-scripts-backend $(DESTDIR)$(sbindir)/signup-scripts-backend 22 21 install -p -m755 -D cronload $(DESTDIR)$(bindir)/cronload … … 26 25 27 26 clean: 28 rm -f admof signup-scripts-frontend27 rm -f admof admof.o 29 28 30 29 distclean: clean -
branches/fc17-dev/server/common/oursrc/accountadm/admof.c
r1693 r2195 21 21 #include <unistd.h> 22 22 #include <netinet/in.h> 23 #include <afs/stds.h> 23 24 #include <afs/vice.h> 24 25 #include <afs/venus.h> … … 90 91 } 91 92 92 /* Note: this first free probably should be xdr_free in OpenAFS 1.5. 93 * See commits b40b606 and f02f2e8 */ 94 free(tids.idlist_val); 93 xdr_free((xdrproc_t) xdr_idlist, &tids); 95 94 tids.idlist_val = NULL; 96 95 free(tnames.namelist_val); -
branches/fc17-dev/server/common/oursrc/accountadm/configure.in
r731 r2195 1 AC_INIT(signup-scripts- frontend.c)1 AC_INIT(signup-scripts-backend.in) 2 2 3 3 AC_PROG_CC -
branches/fc17-dev/server/common/oursrc/accountadm/mrproper
r544 r2195 1 1 #!/bin/sh 2 2 3 rm -f signup-scripts-frontendadmof signup-scripts-backend mbash3 rm -f admof signup-scripts-backend mbash 4 4 rm -f configure config.* Makefile 5 5 rm -rf auto*.cache -
branches/fc17-dev/server/common/oursrc/accountadm/signup-scripts-backend.in
r1757 r2195 32 32 while (<BANNEDUSERS>) { 33 33 chomp; 34 complain("banned username") if ( $_ eq$username);34 complain("banned username") if (lc eq lc $username); 35 35 } 36 36 close(BANNEDUSERS); -
branches/fc17-dev/server/common/oursrc/whoisd/scripts-whoisd.service
r2066 r2195 1 1 [Unit] 2 2 Description=Scripts whois Service 3 After=syslog.target 3 After=syslog.target dirsrv.service 4 4 5 5 [Service] 6 6 Type=simple 7 ExecStart=/usr/bin/twistd --nodaemon -l /var/log/scripts-whoisd.log - y /usr/local/libexec/whoisd.tac7 ExecStart=/usr/bin/twistd --nodaemon -l /var/log/scripts-whoisd.log --pidfile /var/run/whoisd.pid -y /usr/local/libexec/whoisd.tac 8 8 9 9 [Install]
Note: See TracChangeset
for help on using the changeset viewer.