mirror of https://github.com/k3s-io/k3s
29 lines
520 B
Go
29 lines
520 B
Go
//go:build !no_stage
|
|
|
|
package static
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func Stage(dataDir string) error {
|
|
for _, name := range AssetNames() {
|
|
content, err := Asset(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
p := filepath.Join(dataDir, name)
|
|
logrus.Info("Writing static file: ", p)
|
|
os.MkdirAll(filepath.Dir(p), 0700)
|
|
if err := os.WriteFile(p, content, 0600); err != nil {
|
|
return errors.Wrapf(err, "failed to write to %s", name)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|