mirror of
https://github.com/containers/podman.git
synced 2025-06-06 15:00:40 +08:00
generate systemd: wrap pod/ctr lookup errors
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
This commit is contained in:
@ -16,8 +16,8 @@ import (
|
||||
|
||||
func (ic *ContainerEngine) GenerateSystemd(ctx context.Context, nameOrID string, options entities.GenerateSystemdOptions) (*entities.GenerateSystemdReport, error) {
|
||||
// First assume it's a container.
|
||||
ctr, err := ic.Libpod.LookupContainer(nameOrID)
|
||||
if err == nil {
|
||||
ctr, ctrErr := ic.Libpod.LookupContainer(nameOrID)
|
||||
if ctrErr == nil {
|
||||
// Generate the unit for the container.
|
||||
s, err := generate.ContainerUnit(ctr, options)
|
||||
if err == nil {
|
||||
@ -28,7 +28,8 @@ func (ic *ContainerEngine) GenerateSystemd(ctx context.Context, nameOrID string,
|
||||
// If it's not a container, we either have a pod or garbage.
|
||||
pod, err := ic.Libpod.LookupPod(nameOrID)
|
||||
if err != nil {
|
||||
return nil, errors.Errorf("%q does not refer to a container or pod", nameOrID)
|
||||
err = errors.Wrap(ctrErr, err.Error())
|
||||
return nil, errors.Wrapf(err, "%s does not refer to a container or pod", nameOrID)
|
||||
}
|
||||
|
||||
// Generate the units for the pod and all its containers.
|
||||
|
@ -41,7 +41,7 @@ func filterPodFlags(command []string) []string {
|
||||
for i := 0; i < len(command); i++ {
|
||||
s := command[i]
|
||||
if s == "--pod" || s == "--pod-id-file" {
|
||||
i += 1
|
||||
i++
|
||||
continue
|
||||
}
|
||||
processed = append(processed, s)
|
||||
|
@ -99,7 +99,7 @@ func PodUnits(pod *libpod.Pod, options entities.GenerateSystemdOptions) (string,
|
||||
// Error out if the pod has no infra container, which we require to be the
|
||||
// main service.
|
||||
if !pod.HasInfraContainer() {
|
||||
return "", fmt.Errorf("error generating systemd unit files: Pod %q has no infra container", pod.Name())
|
||||
return "", errors.Errorf("error generating systemd unit files: Pod %q has no infra container", pod.Name())
|
||||
}
|
||||
|
||||
podInfo, err := generatePodInfo(pod, options)
|
||||
@ -118,7 +118,7 @@ func PodUnits(pod *libpod.Pod, options entities.GenerateSystemdOptions) (string,
|
||||
return "", err
|
||||
}
|
||||
if len(containers) == 0 {
|
||||
return "", fmt.Errorf("error generating systemd unit files: Pod %q has no containers", pod.Name())
|
||||
return "", errors.Errorf("error generating systemd unit files: Pod %q has no containers", pod.Name())
|
||||
}
|
||||
graph, err := libpod.BuildContainerGraph(containers)
|
||||
if err != nil {
|
||||
|
Reference in New Issue
Block a user