gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r959 - in GNUnet: . src/conf


From: durner
Subject: [GNUnet-SVN] r959 - in GNUnet: . src/conf
Date: Sun, 19 Jun 2005 10:10:35 -0700 (PDT)

Author: durner
Date: 2005-06-19 10:10:32 -0700 (Sun, 19 Jun 2005)
New Revision: 959

Modified:
   GNUnet/src/conf/wizard_util.c
   GNUnet/todo
Log:
restrict to working systems

Modified: GNUnet/src/conf/wizard_util.c
===================================================================
--- GNUnet/src/conf/wizard_util.c       2005-06-19 17:07:46 UTC (rev 958)
+++ GNUnet/src/conf/wizard_util.c       2005-06-19 17:10:32 UTC (rev 959)
@@ -125,7 +125,8 @@
 int wiz_autostart_capable() {
 #ifdef WINDOWS
        return 1;
-#else
+#endif
+#ifdef LINUX
        if (ACCESS("/usr/sbin/update-rc.d", X_OK) == 0) {
                /* Debian */
                if (ACCESS("/etc/init.d/", W_OK) == 0)
@@ -333,7 +334,8 @@
 int wiz_useradd_capable(){
 #ifdef WINDOWS
        return IsWinNT();
-#else
+#endif
+#ifdef LINUX
        if (ACCESS("/usr/sbin/adduser", X_OK) == 0)
                return 1;
        else
@@ -348,7 +350,7 @@
  * @todo support for groupadd(8)
  */
 int wiz_groupadd_capable() {
-#ifndef MINGW
+#ifdef LINUX
        if (ACCESS("/usr/sbin/addgroup", X_OK) == 0) {
                return 1;
        }

Modified: GNUnet/todo
===================================================================
--- GNUnet/todo 2005-06-19 17:07:46 UTC (rev 958)
+++ GNUnet/todo 2005-06-19 17:10:32 UTC (rev 959)
@@ -3,8 +3,6 @@
   * fix Nils' assertion failure/bug [Nils, CG cannot reproduce]
 - gnunet-setup: [Nils]
   * gconfig: fix focus changes
-  * wizards: restrict user & service creation to platforms
-    known to be working.  
 - Ensure hostlist is working on gnunet.org [ CG ]
 (Note to Nils: AFAIK, the code itself seems to be ready,
  except for gnunet-setup which is still very unstable for me)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]