mirror of
https://github.com/mudler/luet.git
synced 2025-07-13 07:04:19 +00:00
It holds necessary state plus additional information relative to the context which we are being run to (e.g. if we are in a terminal or not). Besides in the future we can use it also as a contextual logger to provide more smart logging capabilities. This also replace the general global configuration instance that previously was share between the core components.
103 lines
4.4 KiB
Go
103 lines
4.4 KiB
Go
// Copyright © 2019 Ettore Di Giacinto <mudler@gentoo.org>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License along
|
|
// with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/mudler/luet/cmd/util"
|
|
"github.com/mudler/luet/pkg/api/core/types"
|
|
installer "github.com/mudler/luet/pkg/installer"
|
|
"github.com/mudler/luet/pkg/solver"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var upgradeCmd = &cobra.Command{
|
|
Use: "upgrade",
|
|
Short: "Upgrades the system",
|
|
Aliases: []string{"u"},
|
|
PreRun: func(cmd *cobra.Command, args []string) {
|
|
util.BindSystemFlags(cmd)
|
|
util.BindSolverFlags(cmd)
|
|
viper.BindPFlag("force", cmd.Flags().Lookup("force"))
|
|
viper.BindPFlag("yes", cmd.Flags().Lookup("yes"))
|
|
},
|
|
Long: `Upgrades packages in parallel`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
force := viper.GetBool("force")
|
|
nodeps, _ := cmd.Flags().GetBool("nodeps")
|
|
full, _ := cmd.Flags().GetBool("full")
|
|
universe, _ := cmd.Flags().GetBool("universe")
|
|
clean, _ := cmd.Flags().GetBool("clean")
|
|
sync, _ := cmd.Flags().GetBool("sync")
|
|
yes := viper.GetBool("yes")
|
|
downloadOnly, _ := cmd.Flags().GetBool("download-only")
|
|
|
|
util.SetSystemConfig(util.DefaultContext)
|
|
opts := util.SetSolverConfig(util.DefaultContext)
|
|
|
|
util.DefaultContext.Config.GetSolverOptions().Implementation = solver.SingleCoreSimple
|
|
|
|
util.DefaultContext.Debug("Solver", opts.CompactString())
|
|
|
|
// Load config protect configs
|
|
util.DefaultContext.Config.LoadConfigProtect(util.DefaultContext)
|
|
|
|
inst := installer.NewLuetInstaller(installer.LuetInstallerOptions{
|
|
Concurrency: util.DefaultContext.Config.GetGeneral().Concurrency,
|
|
SolverOptions: *util.DefaultContext.Config.GetSolverOptions(),
|
|
Force: force,
|
|
FullUninstall: full,
|
|
NoDeps: nodeps,
|
|
SolverUpgrade: universe,
|
|
RemoveUnavailableOnUpgrade: clean,
|
|
UpgradeNewRevisions: sync,
|
|
PreserveSystemEssentialData: true,
|
|
Ask: !yes,
|
|
DownloadOnly: downloadOnly,
|
|
PackageRepositories: util.DefaultContext.Config.SystemRepositories,
|
|
Context: util.DefaultContext,
|
|
})
|
|
|
|
system := &installer.System{Database: util.DefaultContext.Config.GetSystemDB(), Target: util.DefaultContext.Config.GetSystem().Rootfs}
|
|
if err := inst.Upgrade(system); err != nil {
|
|
util.DefaultContext.Fatal("Error: " + err.Error())
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
upgradeCmd.Flags().String("system-dbpath", "", "System db path")
|
|
upgradeCmd.Flags().String("system-target", "", "System rootpath")
|
|
upgradeCmd.Flags().String("system-engine", "", "System DB engine")
|
|
|
|
upgradeCmd.Flags().String("solver-type", "", "Solver strategy ( Defaults none, available: "+types.AvailableResolvers+" )")
|
|
upgradeCmd.Flags().Float32("solver-rate", 0.7, "Solver learning rate")
|
|
upgradeCmd.Flags().Float32("solver-discount", 1.0, "Solver discount rate")
|
|
upgradeCmd.Flags().Int("solver-attempts", 9000, "Solver maximum attempts")
|
|
upgradeCmd.Flags().Bool("force", false, "Force upgrade by ignoring errors")
|
|
upgradeCmd.Flags().Bool("nodeps", false, "Don't consider package dependencies (harmful! overrides checkconflicts and full!)")
|
|
upgradeCmd.Flags().Bool("full", false, "Attempts to remove as much packages as possible which aren't required (slow)")
|
|
upgradeCmd.Flags().Bool("universe", false, "Use ONLY the SAT solver to compute upgrades (experimental)")
|
|
upgradeCmd.Flags().Bool("clean", false, "Try to drop removed packages (experimental, only when --universe is enabled)")
|
|
upgradeCmd.Flags().Bool("sync", false, "Upgrade packages with new revisions (experimental)")
|
|
upgradeCmd.Flags().Bool("solver-concurrent", false, "Use concurrent solver (experimental)")
|
|
upgradeCmd.Flags().BoolP("yes", "y", false, "Don't ask questions")
|
|
upgradeCmd.Flags().Bool("download-only", false, "Download only")
|
|
|
|
RootCmd.AddCommand(upgradeCmd)
|
|
}
|