summaryrefslogtreecommitdiffstats
path: root/modules/podman/manifests/compose.pp
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-07-22 20:37:21 -0400
committerJesse Luehrs <doy@tozt.net>2021-07-22 20:37:21 -0400
commit3257e44002cd62097c70a80368fb0228f0f86809 (patch)
treec365c0c834b04dd10bb0f00cfbd8655af1b8551f /modules/podman/manifests/compose.pp
parent3e8ef151e6b1420cbfba304bd71e1116c38e7268 (diff)
downloadpuppet-tozt-3257e44002cd62097c70a80368fb0228f0f86809.tar.gz
puppet-tozt-3257e44002cd62097c70a80368fb0228f0f86809.zip
switch back to docker
podman-compose doesn't handle networking properly yet (https://github.com/containers/podman-compose/issues/119)
Diffstat (limited to 'modules/podman/manifests/compose.pp')
-rw-r--r--modules/podman/manifests/compose.pp19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/podman/manifests/compose.pp b/modules/podman/manifests/compose.pp
deleted file mode 100644
index 56eeeef..0000000
--- a/modules/podman/manifests/compose.pp
+++ /dev/null
@@ -1,19 +0,0 @@
-class podman::compose {
- include git
- include podman
-
- package { ['python-yaml', 'python-setuptools']:
- ensure => installed,
- install_options => ["--asdeps"];
- }
-
- package::makepkg { 'podman-compose-git':
- ensure => installed,
- require => [
- Package["podman"],
- Package["python-yaml"],
- Package["git"],
- Package["python-setuptools"],
- ];
- }
-}