Rename plugin name to vagrant-lxc so that it is easier to check if it is installed with Vagrant.has_plugin?
This commit is contained in:
parent
7bd738aa8e
commit
7f3f7b1558
2 changed files with 7 additions and 2 deletions
|
@ -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)
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue