art: Drop provider from c3os code

Part of: https://github.com/c3os-io/c3os/issues/68
This commit is contained in:
mudler
2022-08-10 18:56:07 +02:00
committed by Itxaka
parent b19a93e984
commit 3c6484de14
39 changed files with 26 additions and 2098 deletions

View File

@@ -9,8 +9,9 @@ import (
events "github.com/c3os-io/c3os/sdk/bus"
"github.com/c3os-io/c3os/internal/bus"
machine "github.com/c3os-io/c3os/internal/machine"
config "github.com/c3os-io/c3os/pkg/config"
machine "github.com/c3os-io/c3os/pkg/machine"
bundles "github.com/c3os-io/c3os/sdk/bundles"
"github.com/nxadm/tail"
)
@@ -61,7 +62,7 @@ func Run(opts ...Option) error {
if !machine.SentinelExist("bundles") {
opts := c.Bundles.Options()
err := machine.RunBundles(opts...)
err := bundles.RunBundles(opts...)
if !c.IgnoreBundleErrors && err != nil {
return err
}