From 7f3f7b15589c5308e6895a04711b17da0d8d09f9 Mon Sep 17 00:00:00 2001 From: Fabio Rehm Date: Wed, 11 Sep 2013 21:16:57 -0300 Subject: [PATCH] Rename plugin name to vagrant-lxc so that it is easier to check if it is installed with Vagrant.has_plugin? --- CHANGELOG.md | 7 ++++++- lib/vagrant-lxc/plugin.rb | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f53b43..6b0e052 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ ## [0.5.1](https://github.com/fgrehm/vagrant-lxc/compare/v0.5.0...master) (unreleased) +IMPROVEMENTS: + + - Set plugin name to `vagrant-lxc` so that it is easier to check if the plugin is + installed with the newly added `Vagrant.has_plugin?` + BUG FIXES: + - Fix box package ownership on `vagrant package` [#140](https://github.com/fgrehm/vagrant-lxc/pull/140) - Fix error while compressing container's rootfs under Debian hosts [#131](https://github.com/fgrehm/vagrant-lxc/issues/131) / [#133](https://github.com/fgrehm/vagrant-lxc/issues/133) - - Fix box package ownership on `vagrant package` [#140](https://github.com/fgrehm/vagrant-lxc/pull/140) ## [0.5.0](https://github.com/fgrehm/vagrant-lxc/compare/v0.4.0...v0.5.0) (Aug 1, 2013) diff --git a/lib/vagrant-lxc/plugin.rb b/lib/vagrant-lxc/plugin.rb index 0db845b..c3222cc 100644 --- a/lib/vagrant-lxc/plugin.rb +++ b/lib/vagrant-lxc/plugin.rb @@ -3,7 +3,7 @@ require "vagrant" module Vagrant module LXC class Plugin < Vagrant.plugin("2") - name "Linux Containers (LXC) provider" + name "vagrant-lxc" description <<-EOF The LXC provider allows Vagrant to manage and control LXC-based virtual machines.