Index: trunk/server/common/oursrc/accountadm/Makefile.in
===================================================================
--- trunk/server/common/oursrc/accountadm/Makefile.in	(revision 2105)
+++ trunk/server/common/oursrc/accountadm/Makefile.in	(revision 2145)
@@ -8,5 +8,5 @@
 sysconfdir = @sysconfdir@
 
-all-local: admof signup-scripts-frontend
+all-local: admof
 
 admof: LDLIBS = -lafsauthent_pic -lafsrpc_pic -lresolv -lkrb5 -lpthread
@@ -18,5 +18,4 @@
 	install -p -m755 -D admof $(DESTDIR)$(bindir)/admof
 	install -p -m755 -D admof $(DESTDIR)$(sbindir)/ssh-admof
-	install -p -m755 -D signup-scripts-frontend $(DESTDIR)$(sbindir)/signup-scripts-frontend
 	install -p -m755 -D signup-scripts-backend $(DESTDIR)$(sbindir)/signup-scripts-backend
 	install -p -m755 -D cronload $(DESTDIR)$(bindir)/cronload
@@ -26,5 +25,5 @@
 
 clean:
-	rm -f admof admof.o signup-scripts-frontend
+	rm -f admof admof.o
 
 distclean: clean
Index: trunk/server/common/oursrc/accountadm/configure.in
===================================================================
--- trunk/server/common/oursrc/accountadm/configure.in	(revision 2105)
+++ trunk/server/common/oursrc/accountadm/configure.in	(revision 2145)
@@ -1,3 +1,3 @@
-AC_INIT(signup-scripts-frontend.c)
+AC_INIT(signup-scripts-backend.in)
 
 AC_PROG_CC
Index: trunk/server/common/oursrc/accountadm/mrproper
===================================================================
--- trunk/server/common/oursrc/accountadm/mrproper	(revision 2105)
+++ trunk/server/common/oursrc/accountadm/mrproper	(revision 2145)
@@ -1,5 +1,5 @@
 #!/bin/sh
 
-rm -f signup-scripts-frontend admof signup-scripts-backend mbash
+rm -f admof signup-scripts-backend mbash
 rm -f configure config.* Makefile
 rm -rf auto*.cache
Index: trunk/server/common/oursrc/accountadm/signup-scripts-frontend.c
===================================================================
--- trunk/server/common/oursrc/accountadm/signup-scripts-frontend.c	(revision 2105)
+++ 	(revision )
@@ -1,48 +1,0 @@
-/*
- * signup-scripts-frontend
- * Copyright (C) 2006  Jeff Arnold <jbarnold@mit.edu>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
- *
- * See /COPYRIGHT in this repository for more information.
- */
-
-#include <stdlib.h>
-#include <stdio.h>
-
-extern char **environ;
-
-int main(int argc, char **argv) {
-	environ=NULL;
-	if(argc != 2) {
-		exit(1);
-	}
-
-	char uid[21]; // 64-bit uid requires 21
-	int retval = snprintf(uid, 21, "%d", getuid());
-	if(retval < 0 || retval >= 21) {
-		exit(1);
-	}
-	if(setreuid(geteuid(), -1) != 0) {
-		exit(1);
-	}
-	char *v[3];
-#define BACKEND_PATH "/usr/local/sbin/signup-scripts-backend"
-	v[0] = BACKEND_PATH;
-	v[1] = argv[1];
-	v[2] = NULL;
-	execv(BACKEND_PATH, v);
-	return 1;
-}
