Skip to content
This repository was archived by the owner on Mar 30, 2025. It is now read-only.

Commit 3fd4b16

Browse files
author
staticdev
committed
Return image
1 parent bb78e98 commit 3fd4b16

File tree

5 files changed

+33
-10
lines changed

5 files changed

+33
-10
lines changed

.yamllint

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,31 @@
22
extends: default
33

44
rules:
5-
line-length:
6-
max: 200
7-
level: warning
8-
9-
ignore: |
10-
.github/stale.yml
5+
braces:
6+
max-spaces-inside: 1
7+
level: error
8+
brackets:
9+
max-spaces-inside: 1
10+
level: error
11+
colons:
12+
max-spaces-after: -1
13+
level: error
14+
commas:
15+
max-spaces-after: -1
16+
level: error
17+
comments: disable
18+
comments-indentation: disable
19+
document-start: disable
20+
empty-lines:
21+
max: 3
22+
level: error
23+
hyphens:
24+
level: error
25+
indentation: disable
26+
key-duplicates: enable
27+
line-length: disable
28+
new-line-at-end-of-file: disable
29+
new-lines:
30+
type: unix
31+
trailing-spaces: disable
32+
truthy: disable

molecule/default/converge.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
- name: Converge
33
hosts: all
44

5+
become: true
6+
57
pre_tasks:
68
- name: Update apt cache.
79
apt: update_cache=yes cache_valid_time=600
810
when: ansible_os_family == 'Debian'
9-
become: true
1011

1112
# roles:
1213
# - ansible-role-python-developer

molecule/default/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ driver:
77
name: docker
88
platforms:
99
- name: instance
10-
image: "${MOLECULE_IMG:-staticdev/docker-debian11-ansible:latest}"
10+
image: "${MOLECULE_IMG:-cisagov/docker-debian11-ansible:latest}"
1111
command: ${MOLECULE_DOCKER_COMMAND:-""}
1212
volumes:
1313
- /sys/fs/cgroup:/sys/fs/cgroup:ro

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
become: true
1515
with_items:
1616
- python3-pip
17-
- python3-venv
17+
- python3-virtualenv
1818

1919
- name: Check if pipx is installed
2020
command: "{{ ansible_env.HOME }}/.local/bin/pipx --version"

tasks/pycharm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
- name: Install pycharm
99
community.general.snap:
10-
name: "{{ pycharm_flavor }}"
10+
name: "pycharm-{{ pycharm_flavor }}"
1111
classic: true
1212
become: true

0 commit comments

Comments
 (0)