Deploying the virtualisation platform oVirt can be quite cumbersome. These are my installation notes on how to set it up in self-hosted mode where the engine-server runs as a guest in a VM instead of running on the host itself – much like the vCenter server of VMWare. Pre-install tasks As my network-setup consists of … Read More →
Tag Archives: Ansible
Ansible playbook for handling perl on FreeBSD
Starting with Perl 5.20 the symlink in /usr/bin/perl has been removed. This playbook remedies that. — – name: Check if perl is installed register: perl_installed stat: path: /usr/local/bin/perl – name: Check perl version register: perl_version command: /usr/local/bin/perl -v changed_when: false when: perl_installed.stat.exists #- name: Check perl version (debug) # debug: # msg: “{{ perl_installed.stat.exists }}” … Read More →
Recent Comments