diff options
author | binary <me@rgoncalves.se> | 2020-08-11 11:26:12 +0200 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2020-08-11 11:26:12 +0200 |
commit | d7a8eefeca0ad9cb6e5b6379be92ad4f1c109a72 (patch) | |
tree | 70bbf28fd6152786a942b0fd66a74260361c9caa /roles/setup_dotfiles/tasks | |
parent | 91b06c38d483c7f002843b8d9b538ace635c0abd (diff) | |
download | infrastructure-d7a8eefeca0ad9cb6e5b6379be92ad4f1c109a72.tar.gz |
refactored for openbsd setup
Diffstat (limited to 'roles/setup_dotfiles/tasks')
-rw-r--r-- | roles/setup_dotfiles/tasks/main.yml | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/roles/setup_dotfiles/tasks/main.yml b/roles/setup_dotfiles/tasks/main.yml deleted file mode 100644 index 47b73e4..0000000 --- a/roles/setup_dotfiles/tasks/main.yml +++ /dev/null @@ -1,49 +0,0 @@ - -# =========================================================================== # -# __ __ __ _____ __ -# _________ / /__ ____/ /___ / /_/ __(_) /__ _____ -# / ___/ __ \/ / _ \ / __ / __ \/ __/ /_/ / / _ \/ ___/ -# / / / /_/ / / __/ / /_/ / /_/ / /_/ __/ / / __(__ ) -# /_/ \____/_/\___(_) \__,_/\____/\__/_/ /_/_/\___/____/ -# -# =========================================================================== # - ---- -- name: Check installation of zsh - package: - name: zsh - state: present - -- name: Check installation of vim - package: - name: vim - state: present - -- name: Check installation of tmux - package: - name: tmux - state: present - -- name: Copy zshrc configuration file - copy: - src: zshrc - dest: /etc/zshrc - owner: root - group: root - mode: 0644 - -- name: Copy vimrc configuration file - copy: - src: vimrc.local - dest: /etc/vimrc - owner: root - group: root - mode: 0644 - -- name: Copy tmux configuration file - copy: - src: tmux.conf - dest: /etc/tmux.conf - owner: root - group: root - mode: 0644 |