Delete cmd/osbuild-upload-pulp-ostree

The Pulp upload code is being deleted, so any callers must be deleted
first.

Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
Tomáš Hozza 2025-08-12 14:25:20 +02:00 committed by Simon de Vlieger
parent fe840e1ddf
commit 180fd485c1

View file

@ -1,34 +0,0 @@
package main
import (
"flag"
"fmt"
"os"
"github.com/osbuild/osbuild-composer/internal/upload/pulp"
)
func check(err error) {
if err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
}
}
func main() {
var filename, apiURL, repository, basePath, credsFile string
flag.StringVar(&filename, "archive", "", "ostree archive to upload")
flag.StringVar(&apiURL, "url", "", "server URL")
flag.StringVar(&repository, "repository", "", "repository name")
flag.StringVar(&basePath, "base-path", "", "base path for distribution (if the repository does not already exist)")
flag.StringVar(&credsFile, "credentials", "", `file containing credentials (format: {"username": "...", "password": "..."})`)
flag.Parse()
client, err := pulp.NewClientFromFile(apiURL, credsFile)
check(err)
repoURL, err := client.UploadAndDistributeCommit(filename, repository, basePath)
check(err)
fmt.Printf("The commit is available in the repository at %s\n", repoURL)
}