mirror of
https://github.com/Telmate/terraform-provider-proxmox.git
synced 2025-12-18 22:46:04 -05:00
* docs: Updated docs (removed broken commands, etc.) and added a script to get a bleeding edge version of golang #704 * docs: Added a guide to help developers who are new to this project --------- Co-authored-by: hestia <hestia@hax0rbana.org>
17 lines
614 B
YAML
17 lines
614 B
YAML
###
|
|
# This is an ansible playbook that will install the bleeding edge version of
|
|
# golang. This is needed because this project requires a newer version of go
|
|
# than is available in any stable Debian release.
|
|
#
|
|
# To run this playbook:
|
|
# sudo apt install -y ansible
|
|
# ansible-galaxy install gantsign.ansible-role-golang
|
|
# ansible-playbook go.yml
|
|
#
|
|
# Then either restart your shell, or run `. /etc/profile.d/golang.sh` to
|
|
# update your $PATH and you should be able to compile the provider with `make`
|
|
###
|
|
- name: Install and configure Golang
|
|
hosts: localhost
|
|
roles:
|
|
- role: gantsign.ansible-role-golang
|