47 lines
870 B
Go
47 lines
870 B
Go
package templater
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"forge.cadoles.com/pcaseiro/templatefile/pkg/utils"
|
|
)
|
|
|
|
type DebRepository struct {
|
|
Name string `json:"name"`
|
|
Type string `json:"type"`
|
|
URL string `json:"url"`
|
|
Enabled bool `json:"enabled"`
|
|
}
|
|
|
|
func (hr *DebRepository) Add() error {
|
|
//deb http://fr.archive.ubuntu.com/ubuntu/ focal main restricted
|
|
|
|
data := fmt.Sprintf("deb %s", hr.URL)
|
|
if err := os.WriteFile("/etc/apt/source.list.d", []byte(data)); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (hr *DebRepository) Update() error {
|
|
if _, stdErr, err := utils.RunSystemCommand("apt", "update", "-y"); err != nil {
|
|
return fmt.Errorf("%s [%s]", stdErr, err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (hr *DebRepository) Delete() error {
|
|
//TODO
|
|
return nil
|
|
}
|
|
func (hr *DebRepository) Manage() error {
|
|
if hr.Enabled {
|
|
return hr.Add()
|
|
} else {
|
|
return hr.Delete()
|
|
}
|
|
}
|