diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-01 10:55:42 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-01 10:55:42 +0000 |
commit | dc2a93421b184e7176a5893c515a907b542c762e (patch) | |
tree | 5003e0b2e329df57b0783d4f768e9855a33ee672 /test | |
parent | 96e72d90b8a6b1d9fb71dadfddff1ed4ccf05857 (diff) | |
parent | 9c658f49071a31cb776eade600b092868345da97 (diff) | |
download | podman-dc2a93421b184e7176a5893c515a907b542c762e.tar.gz podman-dc2a93421b184e7176a5893c515a907b542c762e.tar.bz2 podman-dc2a93421b184e7176a5893c515a907b542c762e.zip |
Merge pull request #14788 from vrothberg/rename-template
podman-play-kube template: rename to podman-kube
Diffstat (limited to 'test')
-rw-r--r-- | test/system/250-systemd.bats | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/system/250-systemd.bats b/test/system/250-systemd.bats index e251e8a6d..fc3c33975 100644 --- a/test/system/250-systemd.bats +++ b/test/system/250-systemd.bats @@ -295,12 +295,12 @@ LISTEN_FDNAMES=listen_fdnames" | sort) run_podman network rm -f $netname } -@test "podman-play-kube@.service template" { +@test "podman-kube@.service template" { skip_if_remote "systemd units do not work with remote clients" # If running from a podman source directory, build and use the source # version of the play-kube-@ unit file - unit_name="podman-play-kube@.service" + unit_name="podman-kube@.service" unit_file="contrib/systemd/system/${unit_name}" if [[ -e ${unit_file}.in ]]; then echo "# [Building & using $unit_name from source]" >&3 @@ -329,7 +329,7 @@ spec: EOF # Dispatch the YAML file - service_name="podman-play-kube@$(systemd-escape $yaml_source).service" + service_name="podman-kube@$(systemd-escape $yaml_source).service" systemctl start $service_name systemctl is-active $service_name |