| --- | |
| # php tasks/main.yml | |
| # | |
| # SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> | |
| # SPDX-License-Identifier: Apache-2.0 | |
| - name: include OS-specific vars | |
| include_vars: "{{ ansible_os_family }}.yml" | |
| - name: include OS-specific tasks | |
| include_tasks: "{{ ansible_os_family }}.yml" | |
| - name: Enable PHP-FPM Service | |
| service: | |
| name: "{{ php_fpm_service }}" | |
| enabled: true | |
| notify: | |
| - start-php |