ansible-convert

Use when converting shell scripts to Ansible playbooks. Use when migrating bash automation, manual procedures, or Dockerfiles to idempotent Ansible tasks.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "ansible-convert" with this command: npx skills add sigridjineth/hello-ansible-skills/sigridjineth-hello-ansible-skills-ansible-convert

Shell to Ansible Conversion

Overview

Shell scripts execute commands imperatively; Ansible declares desired state. Conversion means rethinking operations as state declarations, not translating commands line-by-line. The goal is idempotency: running twice produces identical results.

When to Use

  • Converting existing shell scripts to playbooks
  • Migrating manual server setup procedures
  • Replacing bash automation with Ansible
  • Converting Dockerfile RUN commands

Core Principle

Don't wrap shell commands in Ansible's shell module. Find the module that achieves the same end state declaratively.

# Shell: imperative
mkdir -p /opt/app
chown app:app /opt/app
# Ansible: declarative
- ansible.builtin.file:
    path: /opt/app
    state: directory
    owner: app
    group: app
    mode: '0755'

Conversion Table

Shell CommandAnsible ModuleNotes
mkdir -pansible.builtin.filestate: directory
cpansible.builtin.copyStatic files
cp with variablesansible.builtin.templateUse .j2 templates
rm -rfansible.builtin.filestate: absent
ln -sansible.builtin.filestate: link
chmod, chownInclude in file/copy/templatemode, owner, group params
apt-get installansible.builtin.aptupdate_cache: yes
yum installansible.builtin.yumOr use package for cross-platform
pip installansible.builtin.pipSpecify executable if needed
useraddansible.builtin.userHandles home, shell, groups
systemctl startansible.builtin.servicestate: started
systemctl enableansible.builtin.serviceenabled: yes
curl -Oansible.builtin.get_urlUse checksum for verification
tar -xzfansible.builtin.unarchiveremote_src: yes if already on target
echo >> fileansible.builtin.lineinfileEnsures line exists
cat > fileansible.builtin.copycontent: parameter

Control Flow Conversion

Conditionals

# Shell
if [ -f /etc/debian_version ]; then
    apt-get install nginx
fi
# Ansible
- ansible.builtin.apt:
    name: nginx
  when: ansible_os_family == "Debian"

Loops

# Shell
for user in alice bob; do
    useradd $user
done
# Ansible
- ansible.builtin.user:
    name: "{{ item }}"
  loop:
    - alice
    - bob

When Shell Module is Necessary

Use command or shell only when no module exists. Always add proper change detection:

- name: Run custom installer
  ansible.builtin.shell: /opt/app/install.sh
  args:
    creates: /opt/app/.installed  # Skip if file exists
  register: install_result
  changed_when: "'Installed' in install_result.stdout"
  failed_when: install_result.rc != 0 and 'already installed' not in install_result.stderr

Variable Extraction

Identify values to parameterize:

  • Version numbers → app_version: "1.2.3"
  • Paths → app_dir: "/opt/app"
  • Usernames → app_user: "appuser"
  • Ports → app_port: 8080

Place in defaults/main.yml for easy override.

Conversion Workflow

  1. Read entire script, identify major phases
  2. Map each command to Ansible module
  3. Extract hardcoded values as variables
  4. Order tasks for dependencies (dirs before files)
  5. Add handlers for service restarts
  6. Test with --check --diff
  7. Verify idempotency: second run shows no changes

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

ansible-playbook

No summary provided by upstream source.

Repository SourceNeeds Review
General

ansible-interactive

No summary provided by upstream source.

Repository SourceNeeds Review
General

ansible-debug

No summary provided by upstream source.

Repository SourceNeeds Review
General

kubeadm-troubleshooting

No summary provided by upstream source.

Repository SourceNeeds Review