mirror of
https://github.com/dokku/dokku.git
synced 2026-02-23 19:50:34 +01:00
36 lines
858 B
Go
36 lines
858 B
Go
package scheduler
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/dokku/dokku/plugins/common"
|
|
)
|
|
|
|
// CommandReport displays a scheduler report for one or more apps
|
|
func CommandReport(appName string, format string, infoFlag string) error {
|
|
if len(appName) == 0 {
|
|
apps, err := common.DokkuApps()
|
|
if err != nil {
|
|
if errors.Is(err, common.NoAppsExist) {
|
|
common.LogWarn(err.Error())
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
for _, appName := range apps {
|
|
if err := ReportSingleApp(appName, format, infoFlag); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
return ReportSingleApp(appName, format, infoFlag)
|
|
}
|
|
|
|
// CommandSet set or clear a scheduler property for an app
|
|
func CommandSet(appName string, property string, value string) error {
|
|
common.CommandPropertySet("scheduler", appName, property, value, DefaultProperties, GlobalProperties)
|
|
return nil
|
|
}
|