diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2020-01-27 17:49:40 +0100 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2020-01-27 17:49:40 +0100 |
commit | 336a924911fdb6ed832c5245c7f02c2f7556dfba (patch) | |
tree | adc9b1eefb2a0aa4992cb078a0637c4bbc325b70 | |
parent | 7f7167c007a4c18331a23849e6e7e489b038f2e3 (diff) |
Set default fallback contacts to empty set
-rw-r--r-- | build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle index 3ff04f2..143bae9 100644 --- a/build.gradle +++ b/build.gradle @@ -55,7 +55,7 @@ Example: -DfallbackContacts=\{\"/uw/violet07\":[192,168,0,11]} escape at the beginning and before " */ ext.fallbackContacts = { - return System.getProperty("fallbackContacts") ?: "{\"" + zonePath() + "\":[127,0,0,1]}" + return System.getProperty("fallbackContacts") ?: "{}" } ext.ownAddr = { |