summaryrefslogtreecommitdiffstats
path: root/servers/auth_server_lin
diff options
context:
space:
mode:
Diffstat (limited to 'servers/auth_server_lin')
-rw-r--r--servers/auth_server_lin/debian/changelog2
-rw-r--r--servers/auth_server_lin/debian/control10
-rw-r--r--servers/auth_server_lin/debian/ulab-authserver.init (renamed from servers/auth_server_lin/debian/remotefpga-authserver.init)20
-rw-r--r--servers/auth_server_lin/src/main.cpp4
4 files changed, 18 insertions, 18 deletions
diff --git a/servers/auth_server_lin/debian/changelog b/servers/auth_server_lin/debian/changelog
index eeaccb1..9302e69 100644
--- a/servers/auth_server_lin/debian/changelog
+++ b/servers/auth_server_lin/debian/changelog
@@ -1,4 +1,4 @@
-remotefpga-authserver (0.5-0ubuntu0) karmic; urgency=low
+ulab-authserver (0.5-0ubuntu0) karmic; urgency=low
* Karmic rebuild
diff --git a/servers/auth_server_lin/debian/control b/servers/auth_server_lin/debian/control
index 7d604b9..894a4dd 100644
--- a/servers/auth_server_lin/debian/control
+++ b/servers/auth_server_lin/debian/control
@@ -1,12 +1,12 @@
-Source: remotefpga-authserver
+Source: ulab-authserver
Section: tde
Priority: optional
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
-Build-Depends: debhelper (>= 5), cdbs, tdelibs4-trinity-dev, libldap2-dev, libtdekrb-trinity, libtqtrla, automake, autoconf, libtool, libltdl-dev
+Build-Depends: debhelper (>= 5), cdbs, tdelibs4-trinity-dev, libldap2-dev, libtdekrb-trinity-dev, libtqtrla-dev, automake, autoconf, libtool, libltdl-dev
Standards-Version: 3.8.4
-Package: remotefpga-authserver
+Package: ulab-authserver
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: RemoteFPGA Authentication Server
- RemoteFPGA Authentication Server
+Description: uLab Authentication Server
+ uLab Authentication Server
diff --git a/servers/auth_server_lin/debian/remotefpga-authserver.init b/servers/auth_server_lin/debian/ulab-authserver.init
index d691efb..61f0b33 100644
--- a/servers/auth_server_lin/debian/remotefpga-authserver.init
+++ b/servers/auth_server_lin/debian/ulab-authserver.init
@@ -1,18 +1,18 @@
#!/bin/sh
### BEGIN INIT INFO
-# Provides: remotefpga-authserver
+# Provides: ulab-authserver
# Required-Start: $local_fs $remote_fs
# Required-Stop: $local_fs $remote_fs
# Should-Start: console-screen kbd acpid hal krb5-kdc nis
# Should-Stop: console-screen kbd
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
-# Short-Description: RemoteFPGA Authentication Server
-# Description: RemoteFPGA Authentication Server
+# Short-Description: uLab Authentication Server
+# Description: uLab Authentication Server
### END INIT INFO
-# /etc/init.d/remotefpga-authserver: start or stop the RemoteFPGA Authentication Server
+# /etc/init.d/ulab-authserver: start or stop the uLab Authentication Server
#
-# description: RemoteFPGA Authentication Server
+# description: uLab Authentication Server
#
. /lib/lsb/init-functions
@@ -24,7 +24,7 @@ DAEMON=/opt/trinity/bin/remotefpga_authserver
PIDFILE=/var/run/remotefpga_authserver.pid
UPGRADEFILE=/var/run/remotefpga_authserver.upgrade
-DESC="RemoteFPGA Authentication Server"
+DESC="uLab Authentication Server"
# If we upgraded the daemon, we can't use the --exec argument to
# start-stop-daemon since the inode will have changed. The risk here is that
@@ -60,13 +60,13 @@ case "$1" in
;;
restart)
- /etc/init.d/remotefpga-authserver stop
+ /etc/init.d/ulab-authserver stop
if [ -f $PIDFILE ]; then
if stillrunning; then
exit 1
fi
fi
- /etc/init.d/remotefpga-authserver start
+ /etc/init.d/ulab-authserver start
;;
reload)
@@ -80,7 +80,7 @@ case "$1" in
;;
force-reload)
- /etc/init.d/remotefpga-authserver reload
+ /etc/init.d/ulab-authserver reload
;;
stop)
@@ -100,7 +100,7 @@ case "$1" in
;;
*)
- echo "Usage: /etc/init.d/remotefpga-authserver {start|stop|restart|reload|force-reload}"
+ echo "Usage: /etc/init.d/ulab-authserver {start|stop|restart|reload|force-reload}"
exit 1
;;
esac
diff --git a/servers/auth_server_lin/src/main.cpp b/servers/auth_server_lin/src/main.cpp
index e0183ee..33b6ccd 100644
--- a/servers/auth_server_lin/src/main.cpp
+++ b/servers/auth_server_lin/src/main.cpp
@@ -45,13 +45,13 @@ static const TDECmdLineOptions options[] =
{ 0, 0, 0 }
};
-static const char description[] = I18N_NOOP("RemoteFPGA Kerberos Authentication Server");
+static const char description[] = I18N_NOOP("uLab Kerberos Authentication Server");
static const char version[] = "v0.0.1";
int main(int argc, char *argv[])
{
- TDEAboutData aboutData( "remotefpga_auth_server", I18N_NOOP("RemoteFPGA AuthServer"),
+ TDEAboutData aboutData( "remotefpga_auth_server", I18N_NOOP("uLab AuthServer"),
version, description, TDEAboutData::License_GPL,
"(c) 2012-2013, Timothy Pearson");
aboutData.addAuthor("Timothy Pearson",0, "kb9vqf@pearsoncomputing.net");