homeserver/roles/geerlingguy.dotfiles
Quotengrote 4f9baa65b1
Dotfiles + SSH Komplettumbau (#64)
* Playbook zum aufräumen der alten dotfiles-Struktur

* Rolle mgrote.dotfiles gelöscht

* Rolle geerlingguy.dotfiles hinzugefügt und ergänzt

* Playbook 5_personalisierung mit neuer Rolle aktualisiert

* GroupVars: Variablen mit neuer Rolle aktualisiert

* Variablenname ssh_pubkey angepasst

* Rolle deploy_ssh_keys gelöscht, wird durch create_users übernommen

* Bugfix: password ssh login verbieten

* Playbook: dotfiles User korrigiert

* Inventar: richtig auskommentiert

* GroupVars Docker: Housekeeping

* Variablenname ssh_pubkey angepasst

* create_users: ansible-user angelegt

* GroupVars dotfiles angepasst für geerlingguy

* Keyfile in ansible.cfg definiert

* Rolle: nickjj.ansible-user entfernt

* gitignore aktualisiert
2020-11-05 21:52:43 +01:00
..
.github Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
defaults Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
meta Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
molecule/default Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
tasks Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
.ansible-lint Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
.gitignore Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
.yamllint Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
LICENSE Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00
README.md Dotfiles + SSH Komplettumbau (#64) 2020-11-05 21:52:43 +01:00

Ansible Role: Dotfiles

CI

Installs a set of dotfiles from a given Git repository. By default, it will install my (geerlingguy's) dotfiles, but you can use any set of dotfiles you'd like, as long as they follow a conventional format.

Requirements

Requires git on the managed machine (you can easily install it with geerlingguy.git if required).

Role Variables

Available variables are listed below, along with default values (see defaults/main.yml):

dotfiles_repo: "https://github.com/geerlingguy/dotfiles.git"
dotfiles_repo_version: master

The git repository and branch/tag/commit hash to use for retrieving dotfiles. Dotfiles should generally be laid out within the root directory of the repository.

dotfiles_repo_accept_hostkey: false

Add the hostkey for the repo url if not already added. If ssh_opts contains "-o StrictHostKeyChecking=no", this parameter is ignored.

dotfiles_repo_local_destination: "~/Documents/dotfiles"

The local path where the dotfiles_repo will be cloned.

dotfiles_home: "~"

The home directory where dotfiles will be linked. Generally, the default should work, but in some circumstances, or when running the role as sudo on behalf of another user, you may want to specify the full path.

dotfiles_files:
  - .zshrc
  - .gitignore
  - .inputrc
  - .vimrc

Which files from the dotfiles repository should be linked to the dotfiles_home.

Dependencies

None

Example Playbook

- hosts: localhost
  roles:
    - { role: geerlingguy.dotfiles }

License

MIT / BSD

Author Information

This role was created in 2015 by Jeff Geerling, author of Ansible for DevOps.