diff options
author | Jasper Ras <jras@hostnet.nl> | 2025-04-30 15:14:56 +0200 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2025-04-30 15:14:56 +0200 |
commit | 4223e9afd4401bd930ca815ffa816eb76fad83f6 (patch) | |
tree | b8907fc631e2ad61b7c8741304b8cd6e6e4a53de /Using Ansible wait_for to wait until a file exists.md | |
parent | f43d0473320b9b2297b1a00880316aee9066b81a (diff) |
vault backup: 2025-04-30 15:14:56
Diffstat (limited to 'Using Ansible wait_for to wait until a file exists.md')
-rw-r--r-- | Using Ansible wait_for to wait until a file exists.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Using Ansible wait_for to wait until a file exists.md b/Using Ansible wait_for to wait until a file exists.md new file mode 100644 index 0000000..7231195 --- /dev/null +++ b/Using Ansible wait_for to wait until a file exists.md @@ -0,0 +1,11 @@ +--- +tags: + - ansible +--- +Using the wait_for module we can wait for a file to exist. + +``` +ansible.builtin.wait_for: + path: /tmp/fo + timeout: 600 +```
\ No newline at end of file |