From 168c59f3eaee961d4e10229b4674c0035ebfa0cb Mon Sep 17 00:00:00 2001 From: Sebastian Palencsar Date: Wed, 6 May 2026 13:43:49 +0200 Subject: [PATCH] fix: correct YAML indentation for tasks sections - Add missing 2-space indentation before 'tasks:' keyword - Fixes Ansible YAML parsing errors --- playbooks/lemp-wordpress-ultimate.yml | 2 +- playbooks/lemp-wordpress.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/playbooks/lemp-wordpress-ultimate.yml b/playbooks/lemp-wordpress-ultimate.yml index 05e4aad..44a90a4 100755 --- a/playbooks/lemp-wordpress-ultimate.yml +++ b/playbooks/lemp-wordpress-ultimate.yml @@ -80,7 +80,7 @@ # These variables come from inventory/production.yml # wp_admin_user, wp_admin_password, wp_admin_email, wp_site_title -tasks: + tasks: # IMPORTANT: Pre-flight checks - create basic directory structure FIRST - name: Ensure /var/www exists file: diff --git a/playbooks/lemp-wordpress.yml b/playbooks/lemp-wordpress.yml index 6cce968..d8fcdc7 100755 --- a/playbooks/lemp-wordpress.yml +++ b/playbooks/lemp-wordpress.yml @@ -1,6 +1,6 @@ --- # Ubuntu/Debian LEMP WordPress installation -- name: Install LEMP stack with WordPress (Ubuntu/Debian) +- name: "Install LEMP stack with WordPress (Ubuntu/Debian)" hosts: all become: yes @@ -83,7 +83,7 @@ # Auto-Update Configuration update_cron_enabled: true -tasks: + tasks: # IMPORTANT: Pre-flight checks - create basic directory structure FIRST - name: Ensure /var/www exists file: