1
0
Fork 0

generate: container: s/container crate/container create

Signed-off-by: Enno Tensing <tenno@suij.in>
This commit is contained in:
Enno Tensing 2025-08-07 21:00:39 +02:00
parent 62d56248df
commit ec61600b87
Signed by: tenno
GPG key ID: 95265603BD36E66C

View file

@ -675,7 +675,7 @@ class Container:
def create_container(self) -> str:
"""Generate podman container create command."""
cmd = f"# Create container {self.name}\n"
cmd += "podman container crate \\\n"
cmd += "podman container create \\\n"
cmd += f"\t--name={self.name} \\\n"
if self.privileged:
cmd += "\t--privileged \\\n"