{"id":26981053,"url":"https://github.com/frozenfoxx/puppet-vundle","last_synced_at":"2025-04-09T12:42:21.321Z","repository":{"id":57664440,"uuid":"237839240","full_name":"frozenfoxx/puppet-vundle","owner":"frozenfoxx","description":"A Puppet module to dynamically install and configure Vundle for users","archived":false,"fork":false,"pushed_at":"2025-04-02T20:29:43.000Z","size":36,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-02T21:32:28.882Z","etag":null,"topics":["puppet","puppet-module","vim","vundle"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/frozenfoxx.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-02T21:26:08.000Z","updated_at":"2025-04-02T20:29:47.000Z","dependencies_parsed_at":"2022-09-10T16:11:00.538Z","dependency_job_id":null,"html_url":"https://github.com/frozenfoxx/puppet-vundle","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozenfoxx%2Fpuppet-vundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozenfoxx%2Fpuppet-vundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozenfoxx%2Fpuppet-vundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/frozenfoxx%2Fpuppet-vundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/frozenfoxx","download_url":"https://codeload.github.com/frozenfoxx/puppet-vundle/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247256093,"owners_count":20909240,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["puppet","puppet-module","vim","vundle"],"created_at":"2025-04-03T15:20:14.661Z","updated_at":"2025-04-09T12:42:21.299Z","avatar_url":"https://github.com/frozenfoxx.png","language":"Ruby","readme":"# puppet-vundle\n\n#### Table of Contents\n\n1. [Description](#description)\n2. [Setup](#setup)\n    * [What vundle affects](#what-vundle-affects)\n    * [Setup requirements](#setup-requirements)\n    * [Beginning with vundle](#beginning-with-vundle)\n3. [Usage](#usage)\n4. [Reference](#reference)\n5. [Limitations](#limitations)\n6. [Contribute](#contribute)\n\n## Description\n\nThis is a module designed to configure and install [Vundle](https://github.com/VundleVim/Vundle.vim), the plug-in manager for [Vim](http://www.vim.org).  It has been designed with Linux and Unix systems in mind for Puppet 4+.  Separate installations of Vundle for every user are easily handled which gives a great degree of flexibility.\n\nWhile not required due to the complexity of some of the options Hiera's usage is strongly encouraged.\n\n## Setup\n\n### Setup Requirements\n\n* Git\n* Vim\n* Puppet \u003e= 4.0\n* Facter \u003e= 5.0\n\n### Beginning with vundle\n\nGetting started with Vundle is as simple as including the module with the name of the user desired:\n\n```\nvundle::installation { 'username': }\n```\n\nAdditional options can be attached easily:\n```\nvundle::installation { 'username:'\n  plugins =\u003e [ 'someuser/someplugin', 'otheruser/someplugin'],\n}\n```\n\nIf using Hiera which is highly recommended you'll end up with this:\n\n*puppet code*\n```\n$vundleusers = lookup('vundleusers', { ‘merge’ =\u003e ‘hash’ })\ncreate_resources('vundle::installation', $vundleusers)\n```\n\n*hiera.yaml*\n```\n---\nvundleusers:\n  user1:\n    plugins:\n      - 'vundlemaker/vundleplugin'\n      - 'vundlemaker2/vundleplugin'\n```\n\n## Usage\n\nVundle is installed and configured on a per-user basis.  You're going to want to as a result use the defined type, `vundle::installation { 'username': }`.  To create many, it's recommend to use a hash in Hiera and use a `create_resources` call to do this, like so:\n__puppet code:__\n```\n$userList = lookup('vundle-users', { ‘merge’ =\u003e ‘hash’ })\ncreate_resources('vundle::installation', $userList)\n```\n\n__hiera file:__\n```\n---\nvundle-users:\n  'user1':\n    plugins:\n      - 'vundlemaker3/vim-someplugin'\n  'user2':\n    path:     '/home/notnormal/user2'\n    plugins:\n      - 'vundlemaker4/vim-otherplugin'\n      - 'L9'\n```\n\nIf desired, this plugin can also install Vim easily by setting `viminstall =\u003e true`.\n\n## Reference\n\n* `name`:  used as the username to install Vundle under.\n* `path`:  path to the user's home.  Default:  `/home/${name}`\n* `plugins`:  array of strings for Plugin lines in the `.vimrc`.  Default: `[]`\n* `viminstall`:  allows installing Vim directly.  Default:  `false`\n\n## Limitations\n\nThis module has only been tested on Ubuntu systems.  It will likely work with others but has not been tested at this time.\n\n## Contribute\n\n* Fork it\n* Create a topic branch\n* Improve/fix\n* Push new topic branch\n* Submit a PR\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrozenfoxx%2Fpuppet-vundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrozenfoxx%2Fpuppet-vundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrozenfoxx%2Fpuppet-vundle/lists"}