aboutsummaryrefslogtreecommitdiff
path: root/doc/documentation
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2018-02-03 12:12:41 +0000
committerng0 <ng0@n0.is>2018-02-03 12:12:41 +0000
commit5be17e758e3ae97a68341453175ef246c6367737 (patch)
treefd169fc3481d4838924a90ade6bd6c227f48e12f /doc/documentation
parent8f5b7c0a015449675667505a6efe4357efa01954 (diff)
downloadgnunet-5be17e758e3ae97a68341453175ef246c6367737.tar.gz
gnunet-5be17e758e3ae97a68341453175ef246c6367737.zip
doc: fix up a section in developer
Diffstat (limited to 'doc/documentation')
-rw-r--r--doc/documentation/chapters/developer.texi27
1 files changed, 18 insertions, 9 deletions
diff --git a/doc/documentation/chapters/developer.texi b/doc/documentation/chapters/developer.texi
index befc135b0..21c158998 100644
--- a/doc/documentation/chapters/developer.texi
+++ b/doc/documentation/chapters/developer.texi
@@ -1896,16 +1896,25 @@ subsystem.
1896@node CORE must be started 1896@node CORE must be started
1897@subsubsection CORE must be started 1897@subsubsection CORE must be started
1898 1898
1899A simple issue is #3993: Your configuration MUST somehow ensure that for 1899A uncomplicated issue is bug #3993@footnote{@uref{https://gnunet.org/bugs/view.php?id=3993, https://gnunet.org/bugs/view.php?id=3993}}:
1900each peer the CORE service is started when the peer is setup, otherwise 1900Your configuration MUST somehow ensure that for each peer the
1901TESTBED may fail to connect peers when the topology is initialized, as 1901@code{CORE} service is started when the peer is setup, otherwise
1902TESTBED will start some CORE services but not necessarily all (but it 1902@code{TESTBED} may fail to connect peers when the topology is initialized,
1903relies on all of them running). The easiest way is to set 1903as @code{TESTBED} will start some @code{CORE} services but not
1904'FORCESTART = YES' in the '[core]' section of the configuration file. 1904necessarily all (but it relies on all of them running). The easiest way
1905is to set
1906
1907@example
1908[core]
1909FORCESTART = YES
1910@end example
1911
1912@noindent
1913in the configuration file.
1905Alternatively, having any service that directly or indirectly depends on 1914Alternatively, having any service that directly or indirectly depends on
1906CORE being started with FORCESTART will also do. This issue largely arises 1915@code{CORE} being started with @code{FORCESTART} will also do.
1907if users try to over-optimize by not starting any services with 1916This issue largely arises if users try to over-optimize by not
1908FORCESTART. 1917starting any services with @code{FORCESTART}.
1909 1918
1910@c *********************************************************************** 1919@c ***********************************************************************
1911@node ATS must want the connections 1920@node ATS must want the connections