%% This file is identified via the erl command line option -config File. %% Note that File should have no extension, e.g. %% erl -config .../sys (if this file is called sys.config) %% %% In this file, you can redefine application environment variables. %% This way, you don not have to modify the .app files of e.g. OTP applications. %% %% For this example, we set the kernel environment variables for %% the distributed application controller. In order to run this %% example on your machine, you must change the node names below. %% See erl -man application for a thorough description of what is %% possible to configure. %% %% Note that, since my host name has a hyphen in it, I have to quote %% the node names. If the host name does not contain 'strange' characters, %% quoting is not necessary. %% [{kernel, [{distributed, [{dist, ['n2@uwiger-laptop','n1@uwiger-laptop']}]}, {start_dist_ac, true}, {sync_nodes_optional, ['n2@uwiger-laptop','n1@uwiger-laptop']}, {sync_nodes_timeout, 10000}]}].