DEBSOURCES
Skip Quicknav
sources / ansible-core / 2.19.0~beta6-1 / test / integration / targets / wait_for / files / zombie.py
123456789101112
from __future__ import annotations import os import sys import time child_pid = os.fork() if child_pid > 0: time.sleep(60) else: sys.exit()