File tree 5 files changed +26
-5
lines changed
5 files changed +26
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
namespace : serversideup
3
3
name : spin
4
- version : 2.0.3
4
+ version : 2.1.0
5
5
readme : README.md
6
6
authors :
7
7
- Jay Rogers (https://x.com/jaydrogers)
Original file line number Diff line number Diff line change @@ -48,4 +48,8 @@ additional_users:
48
48
docker_user :
49
49
username : dockeruser
50
50
authorized_keys :
51
- - public_key : " ssh-ed25519 AAAAC3NzaC1anotherfakekeyIMVIzwQXBzxxD9b8Erd1FKVvu dockeruser"
51
+ - public_key : " ssh-ed25519 AAAAC3NzaC1anotherfakekeyIMVIzwQXBzxxD9b8Erd1FKVvu dockeruser"
52
+
53
+ pip_packages :
54
+ - jsondiff
55
+ - pyyaml
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ postfix_hostname: "{{ inventory_hostname }}"
34
34
# postfix_relayhost_password: "mysupersecretpassword"
35
35
36
36
# ##########################################
37
- # APT Configuration
37
+ # Install Packages Configuration
38
38
# ##########################################
39
39
40
40
# Common packages to install
@@ -58,6 +58,12 @@ common_installed_packages:
58
58
- wget
59
59
- zip
60
60
61
+ # PIP - Python Packages (examples below if you need them)
62
+
63
+ # pip_packages:
64
+ # - jsondiff
65
+ # - pyyaml
66
+
61
67
# APT - Automatic Update Configuration
62
68
apt_periodic_update_package_lists : " 1"
63
69
apt_periodic_download_upgradeable_packages : " 1"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ postfix_hostname: "{{ inventory_hostname }}"
23
23
# postfix_relayhost_password: "mysupersecretpassword"
24
24
25
25
# ##########################################
26
- # APT Configuration
26
+ # Install Packages Configuration
27
27
# ##########################################
28
28
29
29
# Common packages to install
@@ -39,7 +39,6 @@ common_installed_packages:
39
39
- ncdu
40
40
- ntp
41
41
- python3-minimal
42
- - python3-pip
43
42
- ssh
44
43
- tzdata
45
44
- ufw
@@ -48,6 +47,12 @@ common_installed_packages:
48
47
- wget
49
48
- zip
50
49
50
+ # PIP - Python Packages (examples below if you need them)
51
+
52
+ # pip_packages:
53
+ # - jsondiff
54
+ # - pyyaml
55
+
51
56
# APT - Automatic Update Configuration
52
57
apt_periodic_update_package_lists : " 1"
53
58
apt_periodic_download_upgradeable_packages : " 1"
Original file line number Diff line number Diff line change 5
5
state : latest
6
6
update_cache : yes
7
7
8
+ - name : Install Python packages (if defined).
9
+ ansible.builtin.pip :
10
+ name : " {{ pip_packages }}"
11
+ state : latest
12
+ when : pip_packages is defined
13
+
8
14
# Related GitHub issue: https://github.com/geerlingguy/docker-ubuntu2404-ansible/issues/2
9
15
- name : Ensure Python system warning is removed.
10
16
ansible.builtin.file :
You can’t perform that action at this time.
0 commit comments