diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-11-09 01:43:24 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-11-09 01:47:01 +0100 |
| commit | de990dbbb6d0b852b73046e1f8c8875ae0849403 (patch) | |
| tree | 9396a5471430a6288a27342b2e92bc0e79a4bc12 /roles/vim/meta | |
| parent | aa8d8855e0a153245f2ad0832ebeea80af57cbfb (diff) | |
Add vim role w/testing
Diffstat (limited to 'roles/vim/meta')
| -rw-r--r-- | roles/vim/meta/argument_specs.yml | 10 | ||||
| -rw-r--r-- | roles/vim/meta/main.yml | 19 |
2 files changed, 29 insertions, 0 deletions
diff --git a/roles/vim/meta/argument_specs.yml b/roles/vim/meta/argument_specs.yml new file mode 100644 index 00000000..71533908 --- /dev/null +++ b/roles/vim/meta/argument_specs.yml @@ -0,0 +1,10 @@ +--- +argument_specs: + main: + short_description: "Install and configure vim" + description: "Install and configure vim" + options: + vimrc_repo_url: + type: "str" + description: "The vimrc git repo URL" + required: true diff --git a/roles/vim/meta/main.yml b/roles/vim/meta/main.yml new file mode 100644 index 00000000..50f6e28c --- /dev/null +++ b/roles/vim/meta/main.yml @@ -0,0 +1,19 @@ +--- +dependencies: + - role: "git" +galaxy_info: + author: "a14m" + description: "Install and configure vim" + company: "kartoffeln.work GmbH." + license: "MIT" + min_ansible_version: "2.18" + platforms: + - name: "ArchLinux" + versions: + - "all" + - name: "Ubuntu" + versions: + - "noble" + - name: "Debian" + versions: + - "bookworm" |
