aboutsummaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorStonewall Jackson <stonewall@sacredheartsc.com>2023-02-11 09:02:53 -0500
committerStonewall Jackson <stonewall@sacredheartsc.com>2023-02-11 09:02:53 -0500
commit99aefa49a2dc99510f690ef1ab45ca0d3c0ca8e7 (patch)
tree7476f256e76760cd450d4e9d191b7807c0b7f4aa /roles
parent9435338c53a0f8628f45fb0808b29d6f06b8fe98 (diff)
downloadselfhosted-99aefa49a2dc99510f690ef1ab45ca0d3c0ca8e7.tar.gz
selfhosted-99aefa49a2dc99510f690ef1ab45ca0d3c0ca8e7.zip
dev_environment: add docs
Diffstat (limited to 'roles')
-rw-r--r--roles/dev_environment/README.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/roles/dev_environment/README.md b/roles/dev_environment/README.md
new file mode 100644
index 0000000..a4f8ab9
--- /dev/null
+++ b/roles/dev_environment/README.md
@@ -0,0 +1,24 @@
+Development Environment
+=======================
+
+Description
+-----------
+
+The `dev_environment` role installs various packages useful for a Linux
+development workstation.
+
+This role takes no variables. The list of installed packages can be found
+in the [vars file](vars/main.yml).
+
+
+Usage
+-----
+
+Example playbook:
+
+````yaml
+- name: install development packages
+ hosts: linux_desktops
+ roles:
+ - role: dev_environment
+````