aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/config_test.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/swarm: FUSE do not require --ipcpath (#18112)Ferenc Szabo2018-11-231-12/+12
| | | | | | | | | - Have `${DataDir}/bzzd.ipc` as IPC path default. - Respect the `--datadir` flag. - Keep only the global `--ipcpath` flag and drop the local `--ipcpath` flag as flags might overwrite each other. (Note: before global `--ipcpath` was ignored even if it was set) fixes ethersphere#795
* cmd/swarm: solve rare cases of using the same random port in tests (#17352)Janoš Guljaš2018-08-091-0/+14
|
* swarm: network rewrite mergeethersphere2018-06-221-61/+68
|
* cmd/swarm: add validation for EnsAPIs configuration parameterJanos Guljas2017-12-191-0/+95
|
* all: use gometalinter.v2, fix new gosimple issues (#15650)Zach2017-12-131-4/+4
|
* cmd/swarm: add config file (#15548)holisticode2017-12-121-0/+459
This commit adds a TOML configuration option to swarm. It reuses the TOML configuration structure used in geth with swarm customized items. The commit: * Adds a "dumpconfig" command to the swarm executable which allows printing the (default) configuration to stdout, which then can be redirected to a file in order to customize it. * Adds a "--config <file>" option to the swarm executable which will allow to load a configuration file in TOML format from the specified location in order to initialize the Swarm node The override priorities are like follows: environment variables override command line arguments override config file override default config.