// Copyright © 2021 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 ( "fmt" "os" "strings" "github.com/mudler/luet/pkg/api/core/types" installer "github.com/mudler/luet/pkg/installer" "github.com/mudler/luet/cmd/util" "github.com/spf13/cobra" "github.com/spf13/viper" ) var osCheckCmd = &cobra.Command{ Use: "oscheck", Short: "Checks packages integrity", Long: `List packages that are installed in the system which files are missing in the system. $ luet oscheck To reinstall packages in the list: $ luet oscheck --reinstall `, Aliases: []string{"i"}, PreRun: func(cmd *cobra.Command, args []string) { viper.BindPFlag("onlydeps", cmd.Flags().Lookup("onlydeps")) 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) { force := viper.GetBool("force") onlydeps := viper.GetBool("onlydeps") yes := viper.GetBool("yes") downloadOnly, _ := cmd.Flags().GetBool("download-only") system := &installer.System{ Database: util.SystemDB(util.DefaultContext.Config), Target: util.DefaultContext.Config.System.Rootfs, } packs := system.OSCheck(util.DefaultContext) if !util.DefaultContext.Config.General.Quiet { if len(packs) == 0 { util.DefaultContext.Success("All good!") os.Exit(0) } else { util.DefaultContext.Info("Following packages are missing files or are incomplete:") for _, p := range packs { util.DefaultContext.Info(p.HumanReadableString()) } } } else { var s []string for _, p := range packs { s = append(s, p.HumanReadableString()) } fmt.Println(strings.Join(s, " ")) } reinstall, _ := cmd.Flags().GetBool("reinstall") if reinstall { // Strip version for reinstall toInstall := types.Packages{} for _, p := range packs { new := p.Clone() new.SetVersion(">=0") toInstall = append(toInstall, new) } 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: true, Force: force, OnlyDeps: onlydeps, PreserveSystemEssentialData: true, Ask: !yes, DownloadOnly: downloadOnly, Context: util.DefaultContext, PackageRepositories: util.DefaultContext.Config.SystemRepositories, }) err := inst.Swap(packs, toInstall, system) if err != nil { util.DefaultContext.Fatal("Error: " + err.Error()) } } }, } func init() { osCheckCmd.Flags().Bool("reinstall", false, "reinstall") osCheckCmd.Flags().Bool("onlydeps", false, "Consider **only** package dependencies") osCheckCmd.Flags().Bool("force", false, "Skip errors and keep going (potentially harmful)") osCheckCmd.Flags().BoolP("yes", "y", false, "Don't ask questions") osCheckCmd.Flags().Bool("download-only", false, "Download only") RootCmd.AddCommand(osCheckCmd) }