Server IP : 85.214.239.14 / Your IP : 3.129.22.34 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/ovirt/ovirt/roles/repositories/tasks/ |
Upload File : |
--- - name: Check if Subscription Manager is about to be used on non RHEL system ansible.builtin.fail: msg: "Subscription manager could be used only on Red Hat Enterprise Linux" when: - ovirt_repositories_use_subscription_manager | bool - ansible_distribution != 'RedHat' - name: Backup current repositories include_tasks: backup-repos.yml when: ovirt_repositories_repos_backup - name: Setup repositories block: - name: Install Satellite CA include_tasks: install-satellite-ca.yml when: ovirt_repositories_ca_rpm_url is defined - name: Setup repositories using Subscription Manager include_tasks: rh-subscription.yml when: ovirt_repositories_org is not defined and ovirt_repositories_activationkey is not defined - name: Setup repositories using Subscription Manager - Satellite include_tasks: satellite-subscription.yml when: ovirt_repositories_org is defined and ovirt_repositories_activationkey is defined when: ovirt_repositories_use_subscription_manager | bool - name: Setup repositories using oVirt release package include_tasks: rpm.yml when: not ovirt_repositories_use_subscription_manager | bool