diff --git a/roles/mysql/tasks/install.yml b/roles/mysql/tasks/install.yml index 29116b500..49634a5f0 100644 --- a/roles/mysql/tasks/install.yml +++ b/roles/mysql/tasks/install.yml @@ -1,7 +1,6 @@ # Stanzas as of 2020-02-04: # -# - 4 base install -# - Remove the last 3 above, as CentOS & Fedora no longer supported ? +# - 1 base install # - 6 double timeout for slow CPUs # - 7 DB config # - 2 record as installed @@ -11,7 +10,7 @@ name: - mariadb-server - mariadb-client - - php{{ php_version }} + - php{{ php_version }} # On Ubuntu 20.04 (and prob other OS's) this forces the install of: apache2 apache2-bin apache2-data apache2-utils libapache2-mod-php{{ php_version }} ETC - php{{ php_version }}-mysql - php-pear - php{{ php_version }}-gd @@ -23,41 +22,28 @@ state: present when: is_debuntu | bool -# - name: Install package 'php{{ php_version }}-xml' (debuntu) # WAS: (ubuntu or debian 9+) +# - name: "Install packages: mysql, MySQL-python and 9 php packages (OS's other than debuntu)" # package: -# name: "php{{ php_version }}-xml" +# name: +# - MySQL-python +# - mysql +# - php +# - php-mysql +# - php-pear +# - php-gd +# - php-imap +# - php-ldap +# - php-odbc +# - php-xml +# - php-xmlrpc # state: present -# when: is_debuntu | bool -# #when: is_ubuntu or (is_debian and not is_debian_8) - -#- name: Install php-xml-parser (debian-8) -# package: -# name: php-xml-parser -# state: present -# when: is_debian_8 | bool - -- name: "Install packages: mysql, MySQL-python and 9 php packages (OS's other than debuntu)" - package: - name: - - MySQL-python - - mysql - - php - - php-mysql - - php-pear - - php-gd - - php-imap - - php-ldap - - php-odbc - - php-xml - - php-xmlrpc - state: present - when: not is_debuntu - -- include_tasks: centos.yml - when: ansible_distribution == "CentOS" - -- include_tasks: fedora.yml - when: ansible_distribution == "Fedora" +# when: not is_debuntu +# +# - include_tasks: centos.yml +# when: ansible_distribution == "CentOS" +# +# - include_tasks: fedora.yml +# when: ansible_distribution == "Fedora" # 2019-07-03 @jvonau @holta: the next 50 lines (6 stanzas) double MariaDB's