Skip to content
This repository has been archived by the owner on Apr 13, 2019. It is now read-only.

Commit

Permalink
Merge pull request #7 from eugene-manuilov/release/2.0.1
Browse files Browse the repository at this point in the history
Release/2.0.1
  • Loading branch information
eugene-manuilov committed Dec 25, 2016
2 parents 1e6e0ed + 9d87a8e commit 88b0f69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Phalcon VM 2.0
# Phalcon VM 2.0.1

Phalcon VM is an open source [Vagrant](https://www.vagrantup.com/) configuration which contains wide range of tools required in modern web development. Like a Swiss Army Knife, Phalcon VM allows you to easily activate and use tools required for you project.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
define phalconvm::utils::puppet_modules( $modules ) {
$modules.each |$module, $version| {
$command = $version ? {
false => "puppet module install ${name}-${module}",
default => "puppet module install ${name}-${module} --version ${version}",
false => "/opt/puppetlabs/bin/puppet module install ${name}-${module}",
default => "/opt/puppetlabs/bin/puppet module install ${name}-${module} --version ${version}",
}

exec { "${name}-${module}":
command => $command,
creates => "/etc/puppetlabs/code/environments/production/modules/${module}/",
path => '/opt/puppetlabs/bin',
}
}
}
2 changes: 1 addition & 1 deletion www/default/app/views/layouts/index.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<header class="nav-header" layout-padding>
<h1 id="logo" class="md-heading">
<a href="/">PhalconVM</a>
<small>2.0</small>
<small>2.0.1</small>
</h1>
</header>

Expand Down

0 comments on commit 88b0f69

Please sign in to comment.