diff --git a/src/cloudron.js b/src/cloudron.js index 72cf07ab0..72e7424b9 100644 --- a/src/cloudron.js +++ b/src/cloudron.js @@ -342,7 +342,7 @@ function addDnsRecords() { return; } - config.set('adminDnsInSync', true); + config.set('dnsInSync', true); // send heartbeat after the dns records are done sendHeartbeat(); diff --git a/src/config.js b/src/config.js index 29316843c..6bd218e97 100644 --- a/src/config.js +++ b/src/config.js @@ -80,6 +80,7 @@ function initConfig() { accessKeyId: null, // selfhosting only secretAccessKey: null // selfhosting only }; + data.dnsInSync = false; if (exports.CLOUDRON) { data.port = 3000;