mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
870b5b4079
License: MIT
Signed-off-by: Henrique Dias <hacdias@gmail.com>
Former-commit-id: bb60ec81f56f5d761ef76b2c1e26bbe83210f434 [formerly b28f83c65e0934e138a1710549f52e0f66a158e0] [formerly 7138a3215ceb144afa0ea45be2315f30b052109f [formerly 72069207c6
]]
Former-commit-id: 0fb7ae6353f786edd93a9166141bfa446dd3dbf9 [formerly 5cb07e8c96a7cfca1aec5843123e1abc4ca8578a]
Former-commit-id: 914c0348516f072a9ccce4e105327feaaddb4cc0
31 lines
827 B
Go
31 lines
827 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/filebrowser/filebrowser/v2/storage/bolt/importer"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(upgradeCmd)
|
|
|
|
upgradeCmd.Flags().String("old.database", "", "")
|
|
upgradeCmd.Flags().String("old.config", "", "")
|
|
upgradeCmd.MarkFlagRequired("old.database")
|
|
}
|
|
|
|
var upgradeCmd = &cobra.Command{
|
|
Use: "upgrade",
|
|
Short: "Upgrades an old configuration",
|
|
Long: `Upgrades an old configuration. This command DOES NOT
|
|
import share links because they are incompatible with
|
|
this version.`,
|
|
Args: cobra.NoArgs,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
flags := cmd.Flags()
|
|
oldDB := mustGetString(flags, "old.database")
|
|
oldConf := mustGetString(flags, "old.config")
|
|
err := importer.Import(oldDB, oldConf, mustGetStringViperFlag(flags, "database"))
|
|
checkErr(err)
|
|
},
|
|
}
|