Horje
ansible run a task always at the end Code Example
ansible run a task always at the end
# Use block and always, which executes its tasks no matter what happens
# in the block tasks.
- name: Always do X
   block:
     - debug:
         msg: 'I execute normally'
     - name: i force a failure
       command: /bin/false
     - debug:
         msg: 'I never execute :-('
   always:
     - debug:
         msg: "This always executes, :-)"




Shell

Related
raspberry software installeren Code Example raspberry software installeren Code Example
linux mount sd card Code Example linux mount sd card Code Example
installing Snowflake connector Code Example installing Snowflake connector Code Example
express-rate-limit github Code Example express-rate-limit github Code Example
conan set option in command line Code Example conan set option in command line Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10