// Copyright © 2019 Ettore Di Giacinto // // 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 . package cmd import ( helpers "github.com/mudler/luet/cmd/helpers" "github.com/mudler/luet/cmd/util" "github.com/mudler/luet/pkg/api/core/types" installer "github.com/mudler/luet/pkg/installer" "github.com/spf13/cobra" "github.com/spf13/viper" ) var uninstallCmd = &cobra.Command{ Use: "uninstall ...", Short: "Uninstall a package or a list of packages", Long: `Uninstall packages`, Aliases: []string{"rm", "un"}, PreRun: func(cmd *cobra.Command, args []string) { viper.BindPFlag("nodeps", cmd.Flags().Lookup("nodeps")) viper.BindPFlag("force", cmd.Flags().Lookup("force")) viper.BindPFlag("yes", cmd.Flags().Lookup("yes")) }, Run: func(cmd *cobra.Command, args []string) { toRemove := []*types.Package{} for _, a := range args { pack, err := helpers.ParsePackageStr(a) if err != nil { util.DefaultContext.Fatal("Invalid package string ", a, ": ", err.Error()) } toRemove = append(toRemove, pack) } force := viper.GetBool("force") nodeps, _ := cmd.Flags().GetBool("nodeps") full, _ := cmd.Flags().GetBool("full") checkconflicts, _ := cmd.Flags().GetBool("conflictscheck") fullClean, _ := cmd.Flags().GetBool("full-clean") yes := viper.GetBool("yes") keepProtected, _ := cmd.Flags().GetBool("keep-protected-files") util.DefaultContext.Config.ConfigProtectSkip = !keepProtected util.DefaultContext.Config.Solver.Implementation = types.SolverSingleCoreSimple util.DefaultContext.Debug("Solver", util.DefaultContext.Config.Solver.CompactString()) inst := installer.NewLuetInstaller(installer.LuetInstallerOptions{ Concurrency: util.DefaultContext.Config.General.Concurrency, SolverOptions: util.DefaultContext.Config.Solver, NoDeps: nodeps, Force: force, FullUninstall: full, FullCleanUninstall: fullClean, CheckConflicts: checkconflicts, Ask: !yes, PreserveSystemEssentialData: true, Context: util.DefaultContext, }) system := &installer.System{Database: util.SystemDB(util.DefaultContext.Config), Target: util.DefaultContext.Config.System.Rootfs} if err := inst.Uninstall(system, toRemove...); err != nil { util.DefaultContext.Fatal("Error: " + err.Error()) } }, } func init() { uninstallCmd.Flags().Bool("nodeps", false, "Don't consider package dependencies (harmful! overrides checkconflicts and full!)") uninstallCmd.Flags().Bool("force", false, "Force uninstall") uninstallCmd.Flags().Bool("full", false, "Attempts to remove as much packages as possible which aren't required (slow)") uninstallCmd.Flags().Bool("conflictscheck", true, "Check if the package marked for deletion is required by other packages") uninstallCmd.Flags().Bool("full-clean", false, "(experimental) Uninstall packages and all the other deps/revdeps of it.") uninstallCmd.Flags().Bool("solver-concurrent", false, "Use concurrent solver (experimental)") uninstallCmd.Flags().BoolP("yes", "y", false, "Don't ask questions") uninstallCmd.Flags().BoolP("keep-protected-files", "k", false, "Keep package protected files around") RootCmd.AddCommand(uninstallCmd) }