initial commit

This commit is contained in:
Lennard Brinkhaus 2022-12-11 15:52:27 +01:00
commit 9de28c79af
Signed by: lennard.brinkhaus
GPG Key ID: 286421EC53998B22
11 changed files with 210 additions and 0 deletions

19
.editorconfig Normal file
View File

@ -0,0 +1,19 @@
# EditorConfig: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Defaults for all editor files
[*]
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
# Files with a smaller indent
[*.yml]
indent_size = 2
# Jinja2 template files
[*.j2]
end_of_line = lf

20
.gitignore vendored Normal file
View File

@ -0,0 +1,20 @@
local-configure.yml
.vagrant/
docs/_build/
roles/plone.plone_server
roles/jnv.unattended-upgrades
roles/tersmitten.fail2ban
roles/ANXS.hostname
roles/ANXS.apt
._*
bin/
lib/
include/
local/
tests.out
*.retry
*.log
vbox_host.cfg
.DS_Store
*.py[co]
.idea/

38
README.md Normal file
View File

@ -0,0 +1,38 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers
roles:
- { role: username.rolename, x: 42 }
License
-------
BSD
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).

2
ansible.cfg Normal file
View File

@ -0,0 +1,2 @@
[defaults]
roles_path: ./../

6
defaults/main.yml Normal file
View File

@ -0,0 +1,6 @@
---
golang_version_check: true
golang_version: "1.19.4"
golang_home: "/var/lib/go/{{ golang_version }}"
golang_delete_old: true
golang_dl_link: "https://go.dev/dl/go{{ golang_version }}.linux-{{ golang_arch }}"

34
meta/main.yml Normal file
View File

@ -0,0 +1,34 @@
galaxy_info:
author: Lennard Brinkhaus
description: Install and manage a Golang
company: DragSE
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
# issue_tracker_url: http://example.com/issue/tracker
min_ansible_version: 2.1
# If this a Container Enabled role, provide the minimum Ansible Container version.
# min_ansible_container_version:
#
# Provide a list of supported platforms, and for each platform a list of versions.
# If you don't wish to enumerate all versions for a particular platform, use 'all'.
# To view available platforms and versions (or releases), visit:
# https://galaxy.ansible.com/api/v1/platforms/
#
platforms:
- name: Debian
versions:
- all
- name: Ubuntu
versions:
- all
galaxy_tags:
- golang
dependencies: []
# List your role dependencies here, one per line. Be sure to remove the '[]' above,
# if you add dependencies to this list.

62
tasks/install.yml Normal file
View File

@ -0,0 +1,62 @@
- block:
# TODO Check if and how you can get SHA256 checksum dynamically
- name: Download golang archive
get_url:
url: "{{ golang_dl_link }}.tar.gz"
dest: "/tmp/go{{ golang_version }}.linux-{{ golang_arch }}.tar.gz"
register: _download_archive
until: _download_archive is succeeded
retries: 5
delay: 2
- name: "Create data directory"
file:
path: "{{ golang_home }}"
state: directory
owner: "root"
group: "root"
mode: 'u=rwX,g=rX,o='
recurse: true
- name: Unpack golang binary
unarchive:
remote_src: yes
src: "/tmp/go{{ golang_version }}.linux-{{ golang_arch }}.tar.gz"
dest: "{{ golang_home }}"
mode: 0755
owner: root
group: root
- name: Create go symlink
file:
src: "{{ golang_home }}/go/bin/go"
dest: "/usr/local/bin/go"
state: link
- name: Create gofmt symlink
file:
src: "{{ golang_home }}/go/bin/gofmt"
dest: "/usr/local/bin/gofmt"
state: link
- block:
- name: Delete all files
file:
path: "/var/lib/go/{{ golang_active_version }}"
state: "absent"
# - name: Load old files
# find:
# paths: "/var/lib/go/{{ golang_active_version }}"
# recurse: true
# hidden: true
# file_type: any
# register: files_to_delete
# - name: Delete old files
# file:
# path: "{{ item.path }}"
# state: absent
# with_items: "{{ files_to_delete.files }}"
when: golang_delete_old|bool
when: (not golang_version_check|bool) or (golang_active_version != golang_version)

15
tasks/main.yml Normal file
View File

@ -0,0 +1,15 @@
---
- name: "Check golang version"
ansible.builtin.shell: "go version | cut -d' ' -f 3 | cut -d'o' -f 2"
args:
executable: /bin/bash
register: golang_active_version_sout
changed_when: false
failed_when: false
when: golang_version_check|bool
- name: "Set active version"
set_fact:
golang_active_version: "{{ golang_active_version_sout.stdout }}"
- include_tasks: install.yml

2
tests/inventory Normal file
View File

@ -0,0 +1,2 @@
192.168.1.142

5
tests/test.yml Normal file
View File

@ -0,0 +1,5 @@
---
- hosts: all
remote_user: root
roles:
- role-golang

7
vars/main.yml Normal file
View File

@ -0,0 +1,7 @@
---
golang_go_arch_map:
i386: '386'
x86_64: 'amd64'
aarch64: 'arm64'
golang_arch: "{{ golang_go_arch_map[ansible_architecture] | default(ansible_architecture) }}"