Add local.settings.php to every instance

This commit adds a new file 'local.settings.php' to each distillery
instance. This file can be used to automatically edit global distillery
settings.
This commit is contained in:
Tom Wiesing 2024-04-01 16:41:11 +02:00
parent 6eab3ac311
commit 24ff81f7cd
No known key found for this signature in database
13 changed files with 98 additions and 42 deletions

View file

@ -23,7 +23,7 @@ import (
// Provision applies defaults to flags, to ensure some values are set
func (manager *Manager) Provision(ctx context.Context, progress io.Writer, system models.System, flags Profile) error {
// Force building and applying the system!
if err := manager.dependencies.SystemManager.Apply(ctx, progress, system, false); err != nil {
if err := manager.dependencies.SystemManager.ApplyInitial(ctx, progress, system); err != nil {
return err
}
@ -130,7 +130,7 @@ func (provision *Manager) bootstrap(ctx context.Context, progress io.Writer, fla
// Rebuild the settings file
logging.LogMessage(progress, "Rebuilding Settings")
{
if err := provision.dependencies.SystemManager.RebuildSettings(ctx, progress); err != nil {
if err := provision.dependencies.SystemManager.BuildSettings(ctx, progress); err != nil {
return err
}
}