rename FORCESTART into IMMEDIATE_START (#4547b)
authorpsyc://loupsycedyglgamf.onion/~lynX <ircs://psyced.org/youbroketheinternet>
Wed, 4 Apr 1984 00:44:05 +0000 (00:44 +0000)
committerpsyc://loupsycedyglgamf.onion/~lynX <ircs://psyced.org/youbroketheinternet>
Wed, 4 Apr 1984 00:44:04 +0000 (00:44 +0000)
50 files changed:
configure.ac
contrib/conf/gnunet/no_forcestart.conf
doc/documentation/chapters/developer.texi
doc/documentation/chapters/user.texi
doc/documentation/gnunet-c-tutorial.texi
doc/man/gnunet-auto-share.1
doc/man/gnunet-namestore-fcfsd.1
doc/man/gnunet.conf.5
src/arm/gnunet-service-arm.c
src/cadet/cadet.conf.in
src/cadet/test_cadet.conf
src/consensus/test_consensus.conf
src/core/test_core_api_send_to_self.conf
src/dht/dht.conf.in
src/dht/test_dht_2dtorus.conf
src/dht/test_dht_api_data.conf
src/dht/test_dht_api_peer1.conf
src/dht/test_dht_line.conf
src/dht/test_dht_monitor.conf
src/dht/test_dht_multipeer.conf
src/dht/test_dht_tools.conf
src/fs/fs.conf.in
src/fs/fs_test_lib_data.conf
src/gns/gns.conf.in
src/hostlist/hostlist.conf
src/hostlist/test_gnunet_daemon_hostlist_peer1.conf
src/hostlist/test_gnunet_daemon_hostlist_peer2.conf
src/hostlist/test_learning_adv_peer.conf
src/hostlist/test_learning_learn_peer.conf
src/hostlist/test_learning_learn_peer2.conf
src/integration-tests/confs/test_defaults.conf
src/multicast/test_multicast.conf
src/multicast/test_multicast_line.conf
src/multicast/test_multicast_star.conf
src/nse/nse.conf.in
src/nse/nse_infiniband.conf
src/nse/nse_profiler_test.conf
src/nse/test_nse.conf
src/psyc/test_psyc.conf
src/pt/test_gns_vpn.conf
src/pt/test_gnunet_vpn.conf
src/revocation/revocation.conf.in
src/revocation/test_revocation.conf
src/rps/test_rps.conf
src/social/test_social.conf
src/testbed/test_testbed_api_barriers.conf.in
src/testbed/test_testbed_api_template.conf
src/testbed/test_testbed_underlay.conf.in
src/topology/topology.conf
src/zonemaster/zonemaster.conf.in

index 39b78fd3ebb14052f924b814dd0b7878b0cee44d..c6910c1deec6f1cfd64000c3bfb6cc4b59c9e8d3 100644 (file)
@@ -1381,7 +1381,7 @@ AC_DEFINE_UNQUOTED([ENABLE_MALICIOUS], [$malicious],
 # never start by default and it is up to the service/module developer to decide
 # by having "START_ON_DEMAND = NO" instead of "START_ON_DEMAND = @START_ON_DEMAND@"
 # in the service/module's conf.in file.
-# See also FORCESTART for an unconditional immediate start.
+# See also IMMEDIATE_START for an unconditional immediate start.
 START_ON_DEMAND="YES"
 AC_MSG_CHECKING(whether to start peer's services on demand by default)
 AC_ARG_ENABLE([autostart],
index a332d6da7dc7859d32c72ee2427cb7f1721feb0b..a069674e0485062b412790e8848ba4dcfeca8163 100644 (file)
@@ -1,41 +1,41 @@
 # Configuration file that can be included to prevent ANY of the usual
-# FORCESTART = YES to be set.  Also disables NSE POW calculation.
+# IMMEDIATE_START = YES to be set.  Also disables NSE POW calculation.
 #
 # This configuration is included from various configuration test files.
-# Whenever a new service is added that has FORCESTART = YES for
+# Whenever a new service is added that has IMMEDIATE_START = YES for
 # production should be disabled for (most) test suites, the option should
 # be added here instead of all over the place ;-).
 
 [core]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [dht]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [cadet]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [nse]
-FORCESTART = NO
+IMMEDIATE_START = NO
 WORKBITS = 0
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [topology]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [zonemaster]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [zonemaster-monitor]
-FORCESTART = NO
+IMMEDIATE_START = NO
index f4c95450935efdde1d9115113f21c9e41d354883..22b175a3f36cd4aabc35c47393f41069a3c40bd4 100644 (file)
@@ -2297,15 +2297,15 @@ is to set
 
 @example
 [core]
-FORCESTART = YES
+IMMEDIATE_START = YES
 @end example
 
 @noindent
 in the configuration file.
 Alternatively, having any service that directly or indirectly depends on
-@code{CORE} being started with @code{FORCESTART} will also do.
+@code{CORE} being started with @code{IMMEDIATE_START} will also do.
 This issue largely arises if users try to over-optimize by not
-starting any services with @code{FORCESTART}.
+starting any services with @code{IMMEDIATE_START}.
 
 @c ***********************************************************************
 @node ATS must want the connections
@@ -3705,7 +3705,7 @@ running a service with "valgrind" or "gdb"
 @item START_ON_DEMAND ARM will listen to UNIX domain socket and/or TCP port of
 the service and start the service on-demand.
 
-@item FORCESTART ARM will always start this service when the peer
+@item IMMEDIATE_START ARM will always start this service when the peer
 is started.
 
 @item ACCEPT_FROM IPv4 addresses the service accepts connections from.
index 3b829559b8ac22490529186d0ce537f06052bd38..3d4f55e415ba4e203933f830a79aa87c7fdd0d69 100644 (file)
@@ -3703,7 +3703,7 @@ gnunet-arm -c ~/.config/gnunet.conf -k fs
 @noindent
 Assuming that you want certain services (like file-sharing) to be always
 automatically started whenever you start GNUnet, you can activate them by
-setting "FORCESTART=YES" in the respective section of the configuration
+setting "IMMEDIATE_START=YES" in the respective section of the configuration
 file (for example, "[fs]"). Then GNUnet with file-sharing support would
 be started whenever you@ enter:
 
index 0e2adaee7ab3e99a090f60aeff0782f8f46c1503..fb6e717aeb1e30ab9b556a54f5cf226fc108d569 100644 (file)
@@ -647,7 +647,7 @@ If you want to use the @code{peerinfo} tool to connect your
 peers, you should:
 
 @itemize
-@item Set @code{FORCESTART = NO} in section @code{hostlist}
+@item Set @code{IMMEDIATE_START = NO} in section @code{hostlist}
 (to not connect to the global GNUnet)
 @item Start both peers running @command{gnunet-arm -c peer1.conf -s}
 and @command{gnunet-arm -c peer2.conf -s}
index f655f6ccd1c3da8d45a2a252b4b4b448b1829835..fc2668d44d2b590957689ce066d84b34bb03dd3e 100644 (file)
@@ -111,7 +111,7 @@ Share a directory "$HOME/gnunet\-share/":
 
  [gnunet-auto-share]
  OPTIONS = $HOME/gnunet\-share
FORCESTART = YES # start this service when the peer starts
IMMEDIATE_START = YES # start this service when the peer starts
 
 .SH FILES
 .TP
index 7fc4093c2c6e87d6454d65ad855fcdc92152abcc..88ab720712e16f1aedb2bf0cf639cad432bf88a7 100644 (file)
@@ -20,7 +20,7 @@ configuration file in section "[fcfsd]" under the name "HTTPPORT".
 
 It is possible to manage gnunet\-gns\-fcfsd using
 gnunet\-(service\-arm) by starting the daemon using "gnunet\-arm \-i
-fcfsd" or by setting "FORCESTART=YES" in the "fcfds" section of your
+fcfsd" or by setting "IMMEDIATE_START=YES" in the "fcfds" section of your
 configuration and the "-z ZONE" in as the "OPTION".
 
 An FCFS\-zone is run at http://gnunet.org/fcfs/.  GNS users are
index b0f1c152c3a95a7d139cbd556ba581fa2e749df9..3dd8c7b62d20de8b5d68567843f17a06c11a6088 100644 (file)
@@ -55,7 +55,7 @@ The following options are generic and shared by all services:
     This is usually "localhost".
 .IP BINARY
     The filename that implements the service. For example "gnunet-service-ats".
-.IP FORCESTART
+.IP IMMEDIATE_START
     Start the service always when the peer starts.  Set to YES for services
     that should always be launched, even if no other service explicitly needs
     them.
@@ -66,13 +66,13 @@ The following options are generic and shared by all services:
     Set to YES to never have ARM bind to the respective socket. This option is
     mostly for debugging in situations where ARM cannot pass the pre-bound
     socket to the child due to interference from PREFIX-commands.
-    This option is only effective in combination with FORCESTART being YES.
+    This option is only effective in combination with IMMEDIATE_START being YES.
     NO by default.
 .IP PREFIX
     PREFIX the given command (with its arguments) to the actual BINARY to be
     executed. Useful to run certain services under special supervisors (like
-    strace or valgrind).  Typically used in combination with FORCESTART and
-    NOARMBIND. Empty by default.
+    strace or valgrind).  Typically used in combination with IMMEDIATE_START
+    and NOARMBIND. Empty by default.
 .IP ACCEPT_FROM
     A semi-column separated list of IPv4 addresses that are allowed to use
     the service; usually 127.0.0.1.
index a6dccf3de83dee01af2c7520969c36fa5da5aa36..bc138e6fc66e00313af7c5e3dfec5288cf96f66c 100644 (file)
@@ -2062,7 +2062,7 @@ setup_service (void *cls,
   if (GNUNET_YES ==
       GNUNET_CONFIGURATION_get_value_yesno (cfg,
                                             section,
-                                            "FORCESTART"))
+                                            "IMMEDIATE_START"))
   {
     sl->force_start = GNUNET_YES;
     if (GNUNET_YES ==
index 8e4a8b1cf9dc1d5c653b8e8e6f27ee5fc9535b55..2f4c6a6db0e6bdab514a283234a117099ecf6d55 100644 (file)
@@ -1,5 +1,5 @@
 [cadet]
-FORCESTART = YES
+IMMEDIATE_START = YES
 START_ON_DEMAND = @START_ON_DEMAND@
 @JAVAPORT@PORT = 2096
 HOSTNAME = localhost
index 4731617d4e53da7707f30b0598e190d5acdaa0e1..5ad67fec2b273a7c6f410bf40ebed861a4be8135 100644 (file)
@@ -68,33 +68,33 @@ NO_IO = YES
 WORKBITS = 0
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [vpn]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namestore]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namecache]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [topology]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
index 42e06a66d562ffc341991a2c3893fac955a6f10c..fa42c3c1ab0484cecfa4b6903d465817e91681f4 100644 (file)
@@ -17,22 +17,22 @@ BINARY = gnunet-service-evil-consensus
 RESOURCE_DIAGNOSTICS = resource.log.${PEERID:-master}
 
 [core]
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [zonemaster]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [cadet]
 #PREFIX = valgrind
index 83928d04aad84a0de992aebf4e1ba61524477017..ad6d4dc604ac72bc30e3065a40242b169a6bad9e 100644 (file)
@@ -7,7 +7,7 @@ WAN_QUOTA_IN = 104857600
 WAN_QUOTA_OUT = 104757600
 
 [test-sts]
-FORCESTART = YES
+IMMEDIATE_START = YES
 PORT = 9252
 HOSTNAME = localhost
 BINARY = test_core_api_send_to_self
index 9ae6d630b5bcbc6bda19f398ca66bfb48f062a7f..405ef1917cc8bcc3b7096efa765dc5335ca590c1 100644 (file)
@@ -1,5 +1,5 @@
 [dht]
-FORCESTART = YES
+IMMEDIATE_START = YES
 START_ON_DEMAND = @START_ON_DEMAND@
 @JAVAPORT@PORT = 2095
 HOSTNAME = localhost
index c3621cda5b57a5778b6008f85cc28be2c05e831d..0e546cf685ad35df0b5410fecb211d7e508b28a4 100644 (file)
@@ -5,7 +5,7 @@ GNUNET_TEST_HOME = $GNUNET_TMP/test_dht_2dtorus/
 
 [dht]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [dhtcache]
 QUOTA = 1 MB
index 3a9857cff2caeefef16ae9a2e7e627a014dfc9ec..cb875fad4715970c2354d587542abd1ef8ed6b5c 100644 (file)
@@ -37,7 +37,7 @@ EXTERNAL_ADDRESS = 127.0.0.1
 
 [dht]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [nse]
 START_ON_DEMAND = YES
index 64dc243e0ec6d009a0334a69ff40e1f56472f7fa..230aa0fa487003e2881c494ba16fa5b1d912ca4c 100644 (file)
@@ -34,7 +34,7 @@ USE_LOCALADDR = NO
 
 [dht]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [nse]
 START_ON_DEMAND = YES
index 8e48b1165e323ba16e73d68884bd6c319ada5d0a..62e337ef263824cfb2e6a12d4bd2194c5ff40e89 100644 (file)
@@ -5,7 +5,7 @@ GNUNET_TEST_HOME = $GNUNET_TMP/test_dht_line/
 
 [dht]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [dhtcache]
 QUOTA = 1 MB
index 26052555e82facc7f2e03df7386d1cfc9bde3a2d..feefc2f5ec6cf8d5f470242d361a88958e69e0db 100644 (file)
@@ -32,7 +32,7 @@ RETURN_LOCAL_ADDRESSES = YES
 
 [dht]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [nse]
 START_ON_DEMAND = YES
index 72537390041ed2b2c63e7e9c86b2f3b98eed3350..ac35664c4df68ff1b11df55c601f61be613badda 100644 (file)
@@ -3,7 +3,7 @@
 
 [dht]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [dhtcache]
 QUOTA = 1 MB
index f13c9a66a236a69d1ec1836672ae5a349d3db434..05f7cc0e6392fb7d875519dd9b9618e9a8b7e33a 100644 (file)
@@ -31,7 +31,7 @@ USE_LOCALADDR = NO
 
 [dht]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [nse]
 START_ON_DEMAND = YES
@@ -118,40 +118,40 @@ START_ON_DEMAND = NO
 [sensor]
 START_ON_DEMAND = NO
 # Configuration file that can be included to prevent ANY of the usual
-# FORCESTART = YES to be set.  Also disables NSE POW calculation.
+# IMMEDIATE_START = YES to be set.  Also disables NSE POW calculation.
 #
 # This configuration is included from various configuration test files.
-# Whenever a new service is added that has FORCESTART = YES for
+# Whenever a new service is added that has IMMEDIATE_START = YES for
 # production should be disabled for (most) test suites, the option should
 # be added here instead of all over the place ;-).
 
 [core]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [dht]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [cadet]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [nse]
-FORCESTART = NO
+IMMEDIATE_START = NO
 WORKBITS = 0
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [topology]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [zonemaster]
-FORCESTART = NO
+IMMEDIATE_START = NO
index 7c483a44988f6357244f1db5db0e58f7e5a2b4d0..92bcf776db0475f57472969615e394164524a6da 100644 (file)
@@ -1,6 +1,6 @@
 [fs]
 START_ON_DEMAND = @START_ON_DEMAND@
-FORCESTART = YES
+IMMEDIATE_START = YES
 INDEXDB = $GNUNET_DATA_HOME/fs/idxinfo.lst
 RESPECT = $GNUNET_DATA_HOME/fs/credit/
 STATE_DIR = $GNUNET_DATA_HOME/fs/persistence/
@@ -61,7 +61,7 @@ MAX_CADET_CLIENTS = 128
 
 [gnunet-auto-share]
 BINARY = gnunet-auto-share
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 # Note: MUST specify path to auto-share directory and CAN specify other options
 # to gnunet-auto-share here!
index 01cac95b84395d3b9784d068a1aba177af47b31c..c996747989ecc709938b18d2c6244e9b06a2001c 100644 (file)
@@ -11,7 +11,7 @@ QUOTA = 2 GB
 #PLUGIN = heap
 #
 [fs]
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [testbed]
 OVERLAY_TOPOLOGY = CLIQUE
index addfbf14a38818cf27637ce64234a903021ce1d1..2e6a02b07c831cf0c9cc5c2ae43c7cf24134d05f 100644 (file)
@@ -1,6 +1,6 @@
 [gns]
 START_ON_DEMAND = @START_ON_DEMAND@
-FORCESTART = YES
+IMMEDIATE_START = YES
 HOSTNAME = localhost
 BINARY = gnunet-service-gns
 UNIXPATH = $GNUNET_USER_RUNTIME_DIR/gnunet-service-gns.sock
index 77cd29e73b89fa539d886b175cc24de7b8c6086c..59cc351cc1ae5a46e69cc404964f6b31b178a8a5 100644 (file)
@@ -1,5 +1,5 @@
 [hostlist]
-FORCESTART = YES
+IMMEDIATE_START = YES
 NOARMBIND = YES
 BINARY = gnunet-daemon-hostlist
 
index f3346b9fcba87a702ce1a7532efc0b859ca51ae6..00c57c1e5659bae0232316c05a0cfdcbce29b777 100644 (file)
@@ -34,11 +34,11 @@ HTTPPORT = 12980
 HOSTLISTFILE = hostlists_peer1.file
 OPTIONS = -b -p
 SERVERS = http://localhost:22981/
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [ats]
 PORT = 12971
 UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-p1-service-ats.sock
 
 [topology]
-FORCESTART = YES
\ No newline at end of file
+IMMEDIATE_START = YES
index 95fb7ea1bf2cf27eea86540659f16e7438538d14..6bcd63fe71f950f00be135977b0a10b3072b3b25 100644 (file)
@@ -34,11 +34,11 @@ HTTPPORT = 22981
 HOSTLISTFILE = hostlists_peer2.file
 OPTIONS = -b -p
 SERVERS = http://localhost:12980/
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [ats]
 PORT = 22971
 UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-p2-service-ats.sock
 
 [topology]
-FORCESTART = YES
+IMMEDIATE_START = YES
index 11c84663429cd0a50b71b838ed101d0d2929790e..3bee3c0c706cb8d8d59dbf90680056b44fa53075 100644 (file)
@@ -35,11 +35,11 @@ HOSTLISTFILE = hostlists_adv_peer.file
 OPTIONS = -p -a
 SERVERS = http://localhost:12981/
 EXTERNAL_DNS_NAME = localhost
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [ats]
 PORT = 22971
 UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-ats-p2-service-core.sock
 
 [topology]
-FORCESTART = YES
+IMMEDIATE_START = YES
index 76585dbbd3321d50f6a70dcd7244242967bbb161..0dafe630281550edf5fe574a5b8bec1760518b24 100644 (file)
@@ -34,11 +34,11 @@ HTTPPORT = 12980
 HOSTLISTFILE = hostlists_learn_peer.file
 OPTIONS = -b -e
 SERVERS = http://localhost:12981/
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [ats]
 PORT = 12971
 UNIXPATH = $GNUNET_RUNTIME_DIR/gnunet-ats-p1-service-core.sock
 
 [topology]
-FORCESTART = YES
+IMMEDIATE_START = YES
index 593744cdc32a1786d223b59b27dc178b92d03a56..dc2956dcc55ae05f0f926a290422bd15f2885bcd 100644 (file)
@@ -34,7 +34,7 @@ HTTPPORT = 32980
 HOSTLISTFILE = hostlists_learn_peer2.file
 OPTIONS = -b -e
 SERVERS = http://localhost:12981/
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [topology]
-FORCESTART = YES
+IMMEDIATE_START = YES
index 8114aeabd24b560c964edb283d8cee52d7ced4d7..3ccdc294662e8a580d2f086ded2adea9e23d084a 100644 (file)
@@ -2,7 +2,7 @@
 @INLINE@ ../../../contrib/conf/gnunet/no_autostart_above_core.conf
 
 [fs]
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [datastore]
 START_ON_DEMAND = YES
@@ -17,10 +17,10 @@ START_ON_DEMAND = YES
 START_ON_DEMAND = YES
 
 [hostlist]
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [topology]
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [peerinfo]
 USE_INCLUDED_HELLOS = NO
index c8c7b4300ce87ebda347c0e49d93ed4efcb4042c..b2f1a764b601c38d484c72467fa2022093784fe2 100644 (file)
@@ -21,36 +21,36 @@ USE_INCLUDED_HELLOS = NO
 NO_IO = YES
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [nat]
 ENABLE_UPNP = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [vpn]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namestore]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namecache]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [topology]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
index 3535d83991959191d4546b9f283094664081d636..c1ce7c63f2b987f4680df2d1c604db03f06147dd 100644 (file)
@@ -25,38 +25,38 @@ NO_IO = YES
 ID_ANNOUNCE_TIME = 5 s
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [nat]
 ENABLE_UPNP = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [vpn]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namestore]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namecache]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [topology]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [nse]
index f80e36679bf08f77d703ad5e23f6f6c9def9b858..516c0e302aaa9ec82786df54c4d37126d5a5a1ea 100644 (file)
@@ -25,38 +25,38 @@ NO_IO = YES
 ID_ANNOUNCE_TIME = 5 s
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [nat]
 ENABLE_UPNP = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [vpn]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namestore]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namecache]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [topology]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [nse]
index 7b234451cd5d7a51c37ed14352f2cde574b2aac2..f3bd90e42eaa7d0b2085a42b6275715fd7932452 100644 (file)
@@ -1,6 +1,6 @@
 [nse]
 START_ON_DEMAND = @START_ON_DEMAND@
-FORCESTART = YES
+IMMEDIATE_START = YES
 @JAVAPORT@PORT = 2097
 HOSTNAME = localhost
 BINARY = gnunet-service-nse
index 816427bac890f75e4beb55fdd9407564edd62406..d2c97567dfae937dee607375e43f1afaab0a5699 100644 (file)
@@ -14,7 +14,7 @@ SETUP_TIMEOUT = 30m
 STATS_DIR= /home/totakura/nse/test/load
 
 [nse]
-FORCESTART = YES
+IMMEDIATE_START = YES
 # Overriding network settings for faster testing (do NOT use
 # these values in production just because they are here)
 WORKDELAY = 60 s
index 4f55fe4a172e242112696352f9878475186b69c6..f702faae2dbbd5da9b020029ca8e3db5d5ad1ee9 100644 (file)
@@ -12,7 +12,7 @@ OVERLAY_RANDOM_LINKS = 1000
 OPERATION_TIMEOUT = 45 s
 
 [nse]
-FORCESTART = YES
+IMMEDIATE_START = YES
 START_ON_DEMAND = NO
 # Overriding network settings for faster testing (do NOT use
 # these values in production just because they are here)
index 8331c241c4f833af53db27d2e3117031bcdc9928..22866acfa2523c308b8176630ba399f0aaefb377 100644 (file)
@@ -3,7 +3,7 @@ GNUNET_TEST_HOME = $GNUNET_TMP/test-nse-multipeer/
 
 [nse]
 #PREFIX = valgrind --leak-check=full --log-file=valgrind_nse.%p
-FORCESTART = YES
+IMMEDIATE_START = YES
 PROOFFILE = $GNUNET_TEST_HOME/proof.nse
 # Overriding network settings for faster testing (do NOT use
 # these values in production just because they are here)
index 8b2ab963917d2e0766bcfb3804a61b8bd2d00e4e..6ff031f0d7d68a9c3cc7bdc74daf1d860cb8cd98 100644 (file)
@@ -16,13 +16,13 @@ ID_ANNOUNCE_TIME = 5 s
 ENABLE_UPNP = NO
 
 [psyc]
-FORCESTART = YES
+IMMEDIATE_START = YES
 START_ON_DEMAND = YES
 
 [multicast]
-FORCESTART = YES
+IMMEDIATE_START = YES
 START_ON_DEMAND = YES
 
 [psycstore]
-FORCESTART = YES
+IMMEDIATE_START = YES
 START_ON_DEMAND = YES
index 4fd4d8b8a54c745a7ab3b8787cded68da4b3955d..85dd081137dcf5264158425396efb87c03db6d5f 100644 (file)
@@ -11,7 +11,7 @@ START_SYSTEM_SERVICES = NO
 START_USER_SERVICES = NO
 
 [exit]
-FORCESTART = YES
+IMMEDIATE_START = YES
 IPV6ADDR = FC5A:04E1:C2BA::1
 IPV6PREFIX = 96
 IPV4ADDR = 169.254.86.1
@@ -25,19 +25,19 @@ EXIT_IFNAME = eth1
 
 [dns]
 DNS_EXIT = 8.8.8.8
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [identity]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [hostlist]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [zonemaster]
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 #[vpn]
 #PREFIX = valgrind
@@ -66,7 +66,7 @@ ZONEKEY = $GNUNET_TEST_HOME/.zonekey
 
 # Delays starting of GNS, as we need to first
 # setup the identity subsystem properly.
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [namestore]
 START_ON_DEMAND = YES
index dfe553784bdb3ffb46e23815f423148ad9d61cdf..9bee93e02574e1ee6fd51083b212a581356425f4 100644 (file)
@@ -9,7 +9,7 @@ PORT = 0
 ALLOW_SHUTDOWN = YES
 
 [exit]
-FORCESTART = YES
+IMMEDIATE_START = YES
 EXIT_IPV4 = YES
 EXIT_IPV6 = YES
 IPV6ADDR = FC5A:04E1:C2BA::1
@@ -22,7 +22,7 @@ EXIT_IFNAME = eth1
 
 [hostlist]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [nse]
 WORKBITS = 1
index fe2318286a4805395cf31b4328eaa3b5021916be..d7ad174c935fac940e68301483f9516d2884f19a 100644 (file)
@@ -1,6 +1,6 @@
 [revocation]
 START_ON_DEMAND = @START_ON_DEMAND@
-FORCESTART = YES
+IMMEDIATE_START = YES
 @JAVAPORT@PORT = 2112
 HOSTNAME = localhost
 BINARY = gnunet-service-revocation
index 14ecf60641df14f9275b4c003bef7a01ed06a3aa..3b04150c1e374d73fd3dbb02d4f91887019f4e3c 100644 (file)
@@ -6,7 +6,7 @@ SERVICEHOME=$GNUNET_TMP/test-revocation-service
 
 [revocation]
 WORKBITS = 3
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [identity]
 # Directory where we store information about our egos
index 3d856c693a0ee1fe7ac63b535349f54b994c7f38..77a0df2c5162df86904d40eaffc30f2b8738c20b 100644 (file)
@@ -5,7 +5,7 @@ UNIXPATH = $GNUNET_TMP/gnunet-service-rps.sock
 HOME = $SERVICEHOME
 # PORT = 2106
 #@UNIXONLY@ PORT = 2087
-FORCESTART = YES
+IMMEDIATE_START = YES
 START_ON_DEMAND = NO
 NOARMBIND = YES
 #OPTIONS=-l /tmp/rps_profiler_logs/rps-[]-%Y-%m-%d.log
@@ -80,44 +80,44 @@ DISABLE_TRY_CONNECT = YES
 #GLOBAL_POSTFIX=-l /tmp/rps_profiler_logs/other-[]-%Y-%m-%d.log
 
 #[statistics]
-#FORCESTART = NO
+#IMMEDIATE_START = NO
 #START_ON_DEMAND = NO
 
 [peerinfo]
 NO_IO = YES
 
 [hostlist]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [zonemaster]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namecache]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [namestore]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [topology]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [vpn]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [revocation]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [gns]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
 
 [fs]
-FORCESTART = NO
+IMMEDIATE_START = NO
 START_ON_DEMAND = NO
index df9815fd2e95aa6892d6933dc2274b2a3f9d0cd9..bc487760f3613c5145bcac3fe929874a1312a37e 100644 (file)
@@ -4,7 +4,7 @@
 GNUNET_TEST_HOME = $GNUNET_TMP/gnunet-test-social/
 
 [social]
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [transport]
 PLUGINS = tcp
index 846b894c7ab8cd3b4b5a8fe802ef6187bb985a94..ac0c9c400f576a4a6dcc0ec88aaf5f06f9681aa6 100644 (file)
@@ -13,11 +13,11 @@ PORT = 12366
 START_ON_DEMAND = NO
 PORT = 12114
 BINARY = /will/be/overwriten/in/test_testbed_api_barriers/
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [fs]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [resolver]
 HOSTNAME = localhost
@@ -25,11 +25,11 @@ START_ON_DEMAND = NO
 
 [cadet]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [dht]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [dhtcache]
 QUOTA = 1 MB
@@ -41,7 +41,7 @@ ACCEPT_FROM6 = ::1;
 ACCEPT_FROM = 127.0.0.1;
 NEIGHBOUR_LIMIT = 50
 PORT = 12365
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [ats]
 WAN_QUOTA_OUT = 3932160
@@ -50,7 +50,7 @@ WAN_QUOTA_IN = 3932160
 [core]
 PORT = 12092
 START_ON_DEMAND = YES
-FORCESTART = YES
+IMMEDIATE_START = YES
 USE_EPHEMERAL_KEYS = NO
 
 [transport-udp]
@@ -62,42 +62,42 @@ GNUNET_TEST_HOME = $GNUNET_TMP/test-testbed/
 
 [dns]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [nse]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [vpn]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [nat]
 RETURN_LOCAL_ADDRESSES = YES
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [gns-helper-service-w32]
 START_ON_DEMAND = NO
 
 [consensus]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [gns]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [statistics]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [peerinfo]
 NO_IO = YES
 
 [set]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
 
 [revocation]
 START_ON_DEMAND = NO
-FORCESTART = NO
+IMMEDIATE_START = NO
index d893ba1435d5b155302cc08a866b1e26f325de8d..381c1bd85a2f4a51892bc3ba00c9fa989704e81b 100644 (file)
@@ -18,7 +18,7 @@ PLUGINS = udp
 ACCEPT_FROM6 = ::1;
 ACCEPT_FROM = 127.0.0.1;
 NEIGHBOUR_LIMIT = 50
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 # Transport requires resolver when connecting to a peer, so enable it
 [resolver]
@@ -30,7 +30,7 @@ WAN_QUOTA_IN = 3932160
 
 [core]
 USE_EPHEMERAL_KEYS = NO
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [transport-udp]
 TIMEOUT = 300 s
index b46716cdeb058f3506ebb42c1db657e35002f46b..1916cc59de8db1f3a4f7d0589cfcc5f450227943 100644 (file)
@@ -7,7 +7,7 @@ OPERATION_TIMEOUT = 5 s
 [testbed-underlay]
 START_ON_DEMAND = NO
 DBFILE = /will/be/overwritten/by/testcase
-FORCESTART = YES
+IMMEDIATE_START = YES
 
 [dv]
 START_ON_DEMAND = NO
index 2baf7ad388731ff4c5fe41a84de3d8239f01ebac..45d8dd0c77bbd7c394c0339249e94aacf9d63a01 100644 (file)
@@ -1,5 +1,5 @@
 [topology]
-FORCESTART = YES
+IMMEDIATE_START = YES
 NOARMBIND = YES
 MINIMUM-FRIENDS = 0
 FRIENDS-ONLY = NO
index 057e43f2925c434da8bac6a1813a10734daf007a..58cfcb7ce21a6f13f805a47ae48e4b04476aaf29 100644 (file)
@@ -1,6 +1,6 @@
 [zonemaster]
 START_ON_DEMAND = @START_ON_DEMAND@
-FORCESTART = YES
+IMMEDIATE_START = YES
 HOSTNAME = localhost
 BINARY = gnunet-service-zonemaster
 UNIXPATH = $GNUNET_USER_RUNTIME_DIR/gnunet-service-zonemaster.sock
@@ -28,7 +28,7 @@ ZONE_PUBLISH_TIME_WINDOW = 4 h
 
 [zonemaster-monitor]
 START_ON_DEMAND = @START_ON_DEMAND@
-FORCESTART = YES
+IMMEDIATE_START = YES
 HOSTNAME = localhost
 BINARY = gnunet-service-zonemaster-monitor
 UNIXPATH = $GNUNET_USER_RUNTIME_DIR/gnunet-service-zonemaster-monitor.sock