소스 검색

Create ansible guide

DricomDragon 3 년 전
부모
커밋
f4f504f4f7
1개의 변경된 파일17개의 추가작업 그리고 0개의 파일을 삭제
  1. 17 0
      Guides/ansible.md

+ 17 - 0
Guides/ansible.md

@@ -0,0 +1,17 @@
+# Ansible
+
+## Install tool
+
+`sudo apt install ansible` or with pip
+
+## Install machine
+
+The simplest way is to manually create the ansible user to serve as an entrypoint for further installation performed with Ansible :
+
+```sh
+sudo adduser jovian
+sudo usermod -aG sudo jovian
+```
+
+Then use private playbook `setup-user.yml`.
+