Author: dpage
Date: 2005-11-03 10:24:44 +0000 (Thu, 03 Nov 2005)
New Revision: 4647
Modified:
trunk/pgadmin3/docs/en_US/pgagent-install.html
trunk/pgadmin3/xtra/pgagent/win32.cpp
Log:
Document DOMAIN\user syntax for specifying the pgAgent service account name, per Harald Armin Massa
Modified: trunk/pgadmin3/docs/en_US/pgagent-install.html
===================================================================
--- trunk/pgadmin3/docs/en_US/pgagent-install.html 2005-11-03 10:03:28 UTC (rev 4646)
+++ trunk/pgadmin3/docs/en_US/pgagent-install.html 2005-11-03 10:24:44 UTC (rev 4647)
@@ -76,7 +76,7 @@
"C:\Program Files\pgAdmin III\pgAgent" INSTALL <serviceName> [options] <connect-string>
options:
- -u <user>
+ -u <user or DOMAIN\user>
-p <password>
-d <displayname>
-t <poll time interval in seconds (default 10)>
@@ -87,7 +87,7 @@
<P>The service may be quite simply installed from the command line as follows:</P>
<PRE>
-"C:\Program Files\pgAdmin III\pgAgent" INSTALL pgAgent hostaddr=127.0.0.1 dbname=pgadmin user=postgres
+"C:\Program Files\pgAdmin III\pgAgent" INSTALL pgAgent -u postgres -p secret hostaddr=127.0.0.1 dbname=pgadmin
user=postgres
</PRE>
<P>The service may then be started from the command line using <I>net start pgAgent</I>,
@@ -115,4 +115,4 @@
PostgreSQL superuser.</P>
</BODY>
-</HTML>
\ No newline at end of file
+</HTML>
Modified: trunk/pgadmin3/xtra/pgagent/win32.cpp
===================================================================
--- trunk/pgadmin3/xtra/pgagent/win32.cpp 2005-11-03 10:03:28 UTC (rev 4646)
+++ trunk/pgadmin3/xtra/pgagent/win32.cpp 2005-11-03 10:24:44 UTC (rev 4647)
@@ -343,7 +343,7 @@
wxPrintf(fn->GetName() + _(" REMOVE <serviceName>\n"));
wxPrintf(fn->GetName() + _(" INSTALL <serviceName> [options] <connect-string>\n"));
wxPrintf(_("options:\n"));
- wxPrintf(_("-u <user>\n"));
+ wxPrintf(_("-u <user or DOMAIN\\user>\n"));
wxPrintf(_("-p <password>\n"));
wxPrintf(_("-d <displayname>\n"));
wxPrintf(_("-t <poll time interval in seconds (default 10)>\n"));