Database Administration & Monitoring, Database management, Non classifié(e), Operating systems, Oracle Shell and Perl in one script 05.12.2025 by Martin Bracher To run a Perl script directly like a binary from within the shell, you have to set the executable flag on the script Add the shebang line (the 1st line (#!...) specifiyng the interpreter to use) #!/usr/bin/env perl #!/usr/bin/perl(…)
Ansible Errorhandling in Ansible 18.09.2025 by Martin Bracher Errors in tasks – abort or ignore? Per default, if a task in a playbook fails, then the execution of the playbook is stopped for that host. - name: PLAY1 hosts: localhost gather_facts: no tasks: - name: let this(…)
Ansible, DevOps Parallel execution of Ansible roles 10.06.2025 by Martin Bracher Introduction You can run a playbook for specific host(s), a group of hosts, or “all” (all hosts of the inventory). Ansible will then run the tasks in parallel on the specified hosts. To avoid an overload, the parallelism –(…)
Ansible Ansible: reduce output in loops – or replace loops 23.05.2025 by Martin Bracher Reduce the output If you do a loop in Ansible, it always prints the item variable for each loop. “item” is the current list element. If you are looping over a list with small values, then the output is(…)
Oracle, Security Different types of Oracle wallets 20.05.2025 by Martin Bracher In this blog post I will explain the different types of Oracle wallet with the auto_login feature. What is an Oracle Wallet An Oracle wallet is used to store certificates for Listeners with https protocol, or it can be used(…)