Overview

Date: 2026-05-11

Time: 15:20

Overview

This page tracks the implementation status of FTL2's example automation scripts, covering local execution, remote SSH, and multi-host scenarios. It documents which modules have been created, resolved issues (particularly around SSH authentication), and the current test status of each example set.

Key Concepts

Commands and Syntax


# Local execution
cd examples/01-local-execution
./run_examples.sh

# Remote SSH with container setup
cd examples/02-remote-ssh
./setup.sh start   # Starts container & installs Python
./run_examples.sh  # Run examples
./setup.sh stop    # Clean up

# SSH integration tests (requires running test container)
SSH_INTEGRATION_TESTS=true pytest tests/test_ssh_integration.py -xvs

Inventory structure uses groups like webservers and databases defined in inventory.yml, with SSH key paths configured per-host.

Relationships

Exam-Relevant Points