Removes SyncServersOnBoot configuration option and requires that servers are synced when the daemon boots

This commit is contained in:
Matthew Penner
2020-04-10 12:15:46 -06:00
parent 2278347b4c
commit e719c67e0b
3 changed files with 6 additions and 15 deletions

View File

@@ -84,7 +84,7 @@ func New(data []byte) (*Installer, error) {
// Create a new server instance using the configuration we wrote to the disk
// so that everything gets instantiated correctly on the struct.
s2, err := server.FromConfiguration(b, &config.Get().System, true)
s2, err := server.FromConfiguration(b, &config.Get().System)
return &Installer{
server: s2,