Fernando K pushed to branch main at Root / CLI / Netboxadm

Commits:

5 changed files:

Changes:

  • cmd/backup/update.go
    ... ... @@ -22,7 +22,7 @@ import (
    22 22
     	"github.com/spf13/viper"
    
    23 23
     	"gitlab.c3sl.ufpr.br/root/netboxadm/cmd/config"
    
    24 24
     	"gitlab.c3sl.ufpr.br/root/netboxadm/internal/nethuh"
    
    25
    -	"gitlab.c3sl.ufpr.br/root/services/vmbackups"
    
    25
    +	"gitlab.c3sl.ufpr.br/root/services/vmbackups.git"
    
    26 26
     )
    
    27 27
     
    
    28 28
     var UpdateCmd = &cobra.Command{
    

  • cmd/dhcp/update.go
    ... ... @@ -22,7 +22,7 @@ import (
    22 22
     	"github.com/spf13/viper"
    
    23 23
     	"gitlab.c3sl.ufpr.br/root/netboxadm/cmd/config"
    
    24 24
     	"gitlab.c3sl.ufpr.br/root/netboxadm/internal/nethuh"
    
    25
    -	"gitlab.c3sl.ufpr.br/root/services/dhcp"
    
    25
    +	"gitlab.c3sl.ufpr.br/root/services/dhcp.git"
    
    26 26
     )
    
    27 27
     
    
    28 28
     var UpdateCmd = &cobra.Command{
    

  • cmd/dns/update.go
    ... ... @@ -21,7 +21,7 @@ import (
    21 21
     	"github.com/spf13/cobra"
    
    22 22
     	"gitlab.c3sl.ufpr.br/root/netboxadm/cmd/config"
    
    23 23
     	"gitlab.c3sl.ufpr.br/root/netboxadm/internal/nethuh"
    
    24
    -	"gitlab.c3sl.ufpr.br/root/services/dns"
    
    24
    +	"gitlab.c3sl.ufpr.br/root/services/dns.git"
    
    25 25
     	"github.com/spf13/viper"
    
    26 26
     )
    
    27 27
     
    

  • go.mod
    ... ... @@ -13,17 +13,11 @@ require (
    13 13
     	github.com/seancfoley/ipaddress-go v1.7.1
    
    14 14
     	github.com/spf13/cobra v1.9.1
    
    15 15
     	github.com/spf13/viper v1.20.1
    
    16
    -	gitlab.c3sl.ufpr.br/root/services/dhcp v1.0.2
    
    17
    -	gitlab.c3sl.ufpr.br/root/services/dns v1.0.2
    
    18
    -	gitlab.c3sl.ufpr.br/root/services/vmbackups v1.0.0
    
    16
    +	gitlab.c3sl.ufpr.br/root/services/dhcp.git v0.0.0-20250731235020-74eb2ffd99ae
    
    17
    +	gitlab.c3sl.ufpr.br/root/services/dns.git v0.0.0-20250731235427-acaade9a8bd8
    
    18
    +	gitlab.c3sl.ufpr.br/root/services/vmbackups.git v0.0.0-20250726124142-dcd48f78750c
    
    19 19
     )
    
    20 20
     
    
    21
    -replace gitlab.c3sl.ufpr.br/root/services/vmbackups => gitlab.c3sl.ufpr.br/root/services/vmbackups.git v1.0.0
    
    22
    -
    
    23
    -replace gitlab.c3sl.ufpr.br/root/services/dns => gitlab.c3sl.ufpr.br/root/services/dns.git v1.0.2
    
    24
    -
    
    25
    -replace gitlab.c3sl.ufpr.br/root/services/dhcp => gitlab.c3sl.ufpr.br/root/services/dhcp.git v1.0.2
    
    26
    -
    
    27 21
     require (
    
    28 22
     	dario.cat/mergo v1.0.0 // indirect
    
    29 23
     	github.com/Microsoft/go-winio v0.6.2 // indirect
    

  • go.sum
    ... ... @@ -188,12 +188,12 @@ github.com/xanzy/ssh-agent v0.3.3 h1:+/15pJfg/RsTxqYcX6fHqOXZwwMP+2VyYWJeWM2qQFM
    188 188
     github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI1Bc68Uw=
    
    189 189
     github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e h1:JVG44RsyaB9T2KIHavMF/ppJZNG9ZpyihvCd0w101no=
    
    190 190
     github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e/go.mod h1:RbqR21r5mrJuqunuUZ/Dhy/avygyECGrLceyNeo4LiM=
    
    191
    -gitlab.c3sl.ufpr.br/root/services/dhcp.git v1.0.2 h1:Wi9gBfwattPz10KdZgUhCyO1n2wNn/LzT85qbMh30Tw=
    
    192
    -gitlab.c3sl.ufpr.br/root/services/dhcp.git v1.0.2/go.mod h1:1sv2r7hZ1dPsYwn71xBoBIzVgUlPBkhwu1McUXDnxwg=
    
    193
    -gitlab.c3sl.ufpr.br/root/services/dns.git v1.0.2 h1:8x8pNllXTwyf5G9YvztymS+n53kNIxxB60DIuSLilAM=
    
    194
    -gitlab.c3sl.ufpr.br/root/services/dns.git v1.0.2/go.mod h1:DgzAim9cbJw3WxecQh2KDPdM2/GwEuUzVwgVz0cZ7Aw=
    
    195
    -gitlab.c3sl.ufpr.br/root/services/vmbackups.git v1.0.0 h1:e5q7dA8aNDqTI0+7mXs+J8Xm3nejXItK6XVvEZbsNXg=
    
    196
    -gitlab.c3sl.ufpr.br/root/services/vmbackups.git v1.0.0/go.mod h1:eyNqTBI4DuroKzEbX7a1kjLuDB272vbp4s+TIT3xR3I=
    
    191
    +gitlab.c3sl.ufpr.br/root/services/dhcp.git v0.0.0-20250731235020-74eb2ffd99ae h1:4v2xw7+oH8sRAEPG0dlBBovMUU13HWS19pivahxexlg=
    
    192
    +gitlab.c3sl.ufpr.br/root/services/dhcp.git v0.0.0-20250731235020-74eb2ffd99ae/go.mod h1:aBn2FwsGDq6vtAL5WfD14f3IH5t057ADZ2aETXi86Jg=
    
    193
    +gitlab.c3sl.ufpr.br/root/services/dns.git v0.0.0-20250731235427-acaade9a8bd8 h1:mj/00kly7VLn3kaWpPqWeCDScL/m84j5xQ5P6T7TTlk=
    
    194
    +gitlab.c3sl.ufpr.br/root/services/dns.git v0.0.0-20250731235427-acaade9a8bd8/go.mod h1:2t5cJKuj/COXheYaMGLBhd1wyEfMzyXaCPYQ7Sjlr0M=
    
    195
    +gitlab.c3sl.ufpr.br/root/services/vmbackups.git v0.0.0-20250726124142-dcd48f78750c h1:EE7IY2DiJVS0e5yBP6/Fy556bygA9O31sF7FCNsGUVE=
    
    196
    +gitlab.c3sl.ufpr.br/root/services/vmbackups.git v0.0.0-20250726124142-dcd48f78750c/go.mod h1:eyNqTBI4DuroKzEbX7a1kjLuDB272vbp4s+TIT3xR3I=
    
    197 197
     go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=
    
    198 198
     go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
    
    199 199
     go.uber.org/multierr v1.9.0 h1:7fIwc/ZtS0q++VgcfqFDxSBZVv/Xo49/SYnDFupUwlI=