File tree Expand file tree Collapse file tree 21 files changed +54
-54
lines changed Expand file tree Collapse file tree 21 files changed +54
-54
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ package cmd
3
3
import (
4
4
"os"
5
5
6
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
7
- "gitlab .com/bootc-org /podman-bootc/pkg/user"
8
- "gitlab .com/bootc-org /podman-bootc/pkg/utils"
9
- "gitlab .com/bootc-org /podman-bootc/pkg/vm"
6
+ "github .com/containers /podman-bootc/pkg/config"
7
+ "github .com/containers /podman-bootc/pkg/user"
8
+ "github .com/containers /podman-bootc/pkg/utils"
9
+ "github .com/containers /podman-bootc/pkg/vm"
10
10
11
11
"github.com/containers/common/pkg/report"
12
12
"github.com/sirupsen/logrus"
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import (
4
4
"fmt"
5
5
"os"
6
6
7
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
8
- "gitlab .com/bootc-org /podman-bootc/pkg/user"
9
- "gitlab .com/bootc-org /podman-bootc/pkg/utils"
10
- "gitlab .com/bootc-org /podman-bootc/pkg/vm"
7
+ "github .com/containers /podman-bootc/pkg/config"
8
+ "github .com/containers /podman-bootc/pkg/user"
9
+ "github .com/containers /podman-bootc/pkg/utils"
10
+ "github .com/containers /podman-bootc/pkg/vm"
11
11
12
12
"github.com/sirupsen/logrus"
13
13
"github.com/spf13/cobra"
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package cmd
3
3
import (
4
4
"os"
5
5
6
- "gitlab .com/bootc-org /podman-bootc/pkg/user"
6
+ "github .com/containers /podman-bootc/pkg/user"
7
7
8
8
"github.com/sirupsen/logrus"
9
9
"github.com/spf13/cobra"
Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ import (
8
8
"sync"
9
9
"time"
10
10
11
- "gitlab .com/bootc-org /podman-bootc/pkg/bootc"
12
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
13
- "gitlab .com/bootc-org /podman-bootc/pkg/user"
14
- "gitlab .com/bootc-org /podman-bootc/pkg/utils"
15
- "gitlab .com/bootc-org /podman-bootc/pkg/vm"
11
+ "github .com/containers /podman-bootc/pkg/bootc"
12
+ "github .com/containers /podman-bootc/pkg/config"
13
+ "github .com/containers /podman-bootc/pkg/user"
14
+ "github .com/containers /podman-bootc/pkg/utils"
15
+ "github .com/containers /podman-bootc/pkg/vm"
16
16
17
17
"github.com/containers/podman/v5/pkg/bindings"
18
18
"github.com/sirupsen/logrus"
Original file line number Diff line number Diff line change 1
1
package cmd
2
2
3
3
import (
4
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
5
- "gitlab .com/bootc-org /podman-bootc/pkg/user"
6
- "gitlab .com/bootc-org /podman-bootc/pkg/utils"
7
- "gitlab .com/bootc-org /podman-bootc/pkg/vm"
4
+ "github .com/containers /podman-bootc/pkg/config"
5
+ "github .com/containers /podman-bootc/pkg/user"
6
+ "github .com/containers /podman-bootc/pkg/utils"
7
+ "github .com/containers /podman-bootc/pkg/vm"
8
8
9
9
"github.com/sirupsen/logrus"
10
10
"github.com/spf13/cobra"
Original file line number Diff line number Diff line change 1
1
package cmd
2
2
3
3
import (
4
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
5
- "gitlab .com/bootc-org /podman-bootc/pkg/user"
6
- "gitlab .com/bootc-org /podman-bootc/pkg/utils"
7
- "gitlab .com/bootc-org /podman-bootc/pkg/vm"
4
+ "github .com/containers /podman-bootc/pkg/config"
5
+ "github .com/containers /podman-bootc/pkg/user"
6
+ "github .com/containers /podman-bootc/pkg/utils"
7
+ "github .com/containers /podman-bootc/pkg/vm"
8
8
9
9
"github.com/sirupsen/logrus"
10
10
"github.com/spf13/cobra"
Original file line number Diff line number Diff line change 1
- module gitlab .com/bootc-org /podman-bootc
1
+ module github .com/containers /podman-bootc
2
2
3
3
go 1.20
4
4
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ import (
13
13
"syscall"
14
14
"time"
15
15
16
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
17
- "gitlab .com/bootc-org /podman-bootc/pkg/user"
18
- "gitlab .com/bootc-org /podman-bootc/pkg/utils"
16
+ "github .com/containers /podman-bootc/pkg/config"
17
+ "github .com/containers /podman-bootc/pkg/user"
18
+ "github .com/containers /podman-bootc/pkg/utils"
19
19
20
20
"github.com/containers/podman/v5/pkg/bindings/containers"
21
21
"github.com/containers/podman/v5/pkg/bindings/images"
Original file line number Diff line number Diff line change 7
7
"os/exec"
8
8
"path/filepath"
9
9
10
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
10
+ "github .com/containers /podman-bootc/pkg/config"
11
11
)
12
12
13
13
// Generatekeys creates an ed25519 set of keys
Original file line number Diff line number Diff line change 7
7
"path/filepath"
8
8
"strconv"
9
9
10
- "gitlab .com/bootc-org /podman-bootc/pkg/config"
10
+ "github .com/containers /podman-bootc/pkg/config"
11
11
12
12
"github.com/adrg/xdg"
13
13
"github.com/containers/podman/v5/pkg/rootless"
You can’t perform that action at this time.
0 commit comments