", json_encode($ret, JSON_PRETTY_PRINT));
+ die;
+ }
+ return json_encode($ret, JSON_PRETTY_PRINT);
+ }
+
+
public function OpenBranchesXml(Application $app, Request $request)
{
if (null === $mod = $request->get('mod')) {
@@ -1233,7 +1256,44 @@ class Xmlhttp implements ControllerProviderInterface
$html->appendChild($ret->createTextNode($zhtml));
}
- return new Response($zhtml, 200, ['Content-Type' => 'text/xml']);
+ return new Response($zhtml, 200, array('Content-Type' => 'text/xml'));
+ }
+
+ private function getBrancheJson($bid, $srcnode, &$ret, $depth)
+ {
+ $tid = $srcnode->getAttribute('id');
+ $nts = 0;
+ $allsy = array();
+ for ($n = $srcnode->firstChild; $n; $n = $n->nextSibling) {
+ if ($n->nodeName == 'sy') {
+ $t = $n->getAttribute('v');
+ $allsy[] = array(
+ 'id' => $n->getAttribute('id'),
+ 't' => $t,
+ 'lng' => $n->getAttribute('lng'),
+ 'bold' => (bool)$n->getAttribute('bold'),
+ );
+ } elseif ($n->nodeName == 'te') {
+ $nts++;
+ }
+ }
+
+ $nret = array(
+ 'id' => $tid,
+ 'nts' => $nts,
+ 'synonyms' => $allsy,
+ 'children' => array(),
+ );
+
+ for ($n = $srcnode->firstChild; $n; $n = $n->nextSibling) {
+ if ($n->nodeName == 'te') {
+ if ($n->getAttribute('open')) {
+ $nret['children'][] = $this->getBrancheJson($bid, $n, $ret['children'], $depth + 1);
+ }
+ }
+ }
+
+ return $nret;
}
private function getBrancheXML($bid, $srcnode, &$html, $depth)
diff --git a/lib/Alchemy/Phrasea/Core/Configuration/SessionHandlerFactory.php b/lib/Alchemy/Phrasea/Core/Configuration/SessionHandlerFactory.php
index 0fd0a62647..99dbe5c8b2 100644
--- a/lib/Alchemy/Phrasea/Core/Configuration/SessionHandlerFactory.php
+++ b/lib/Alchemy/Phrasea/Core/Configuration/SessionHandlerFactory.php
@@ -22,12 +22,10 @@ use Symfony\Component\HttpFoundation\Session\Storage\Handler\WriteCheckSessionHa
class SessionHandlerFactory
{
private $connectionFactory;
- private $root;
- public function __construct(ConnectionFactory $connectionFactory, $root = null)
+ public function __construct(ConnectionFactory $connectionFactory)
{
$this->connectionFactory = $connectionFactory;
- $this->root = __DIR__ . '/../../../../..';
}
/**
@@ -62,7 +60,7 @@ class SessionHandlerFactory
)
);
case 'file':
- return new NativeFileSessionHandler($this->root.'/tmp/sessions');
+ return new NativeFileSessionHandler(isset($options['save-path']) ? $options['save-path'] : null);
case 'redis':
return new WriteCheckSessionHandler(
new RedisSessionHandler(
diff --git a/lib/Alchemy/Phrasea/Core/Event/Subscriber/ApiOauth2ErrorsSubscriber.php b/lib/Alchemy/Phrasea/Core/Event/Subscriber/ApiOauth2ErrorsSubscriber.php
index 6cab046aa4..4d3b23553a 100644
--- a/lib/Alchemy/Phrasea/Core/Event/Subscriber/ApiOauth2ErrorsSubscriber.php
+++ b/lib/Alchemy/Phrasea/Core/Event/Subscriber/ApiOauth2ErrorsSubscriber.php
@@ -61,7 +61,9 @@ class ApiOauth2ErrorsSubscriber implements EventSubscriberInterface
$msg = json_encode(['msg' => $msg, 'code' => $code]);
$event->setResponse(new Response($msg, $code, $headers));
} else {
- $event->setResponse($this->handler->createResponseBasedOnRequest($event->getRequest(), $event->getException()));
+ $response = $this->handler->createResponseBasedOnRequest($event->getRequest(), $event->getException());
+ $response->headers->set('Content-Type', 'text/html');
+ $event->setResponse($response);
}
}
}
diff --git a/lib/Alchemy/Phrasea/Core/Provider/CacheServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/CacheServiceProvider.php
index 80dfc2cfcc..7eaecc3298 100644
--- a/lib/Alchemy/Phrasea/Core/Provider/CacheServiceProvider.php
+++ b/lib/Alchemy/Phrasea/Core/Provider/CacheServiceProvider.php
@@ -21,7 +21,9 @@ class CacheServiceProvider implements ServiceProviderInterface
{
public function register(Application $app)
{
- $app['phraseanet.cache-registry'] = $app['root.path'] . '/tmp/cache_registry.php';
+ $app['phraseanet.cache-registry'] = $app->share(function () use ($app) {
+ return $app['cache.path'].'/cache_registry.php';
+ });
$app['phraseanet.cache-compiler'] = $app->share(function () {
return new Compiler();
diff --git a/lib/Alchemy/Phrasea/Core/Provider/ConfigurationServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/ConfigurationServiceProvider.php
index e959b34ac6..d16756cba5 100644
--- a/lib/Alchemy/Phrasea/Core/Provider/ConfigurationServiceProvider.php
+++ b/lib/Alchemy/Phrasea/Core/Provider/ConfigurationServiceProvider.php
@@ -34,8 +34,8 @@ class ConfigurationServiceProvider implements ServiceProviderInterface
$app['phraseanet.configuration.compiler'] = $app->share(function (SilexApplication $app) {
return new Compiler();
});
- $app['phraseanet.configuration.config-path'] = $app['root.path'] . '/config/configuration.yml';
- $app['phraseanet.configuration.config-compiled-path'] = $app['root.path'] . '/tmp/configuration-compiled.php';
+ $app['phraseanet.configuration.config-path'] = $app['root.path'].'/config/configuration.yml';
+ $app['phraseanet.configuration.config-compiled-path'] = $app['root.path'].'/config/configuration-compiled.php';
$app['configuration.store'] = $app->share(function (SilexApplication $app) {
return new HostConfiguration(new Configuration(
diff --git a/lib/Alchemy/Phrasea/Core/Provider/JMSSerializerServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/JMSSerializerServiceProvider.php
index 07236a2b72..46d9b8c8c2 100644
--- a/lib/Alchemy/Phrasea/Core/Provider/JMSSerializerServiceProvider.php
+++ b/lib/Alchemy/Phrasea/Core/Provider/JMSSerializerServiceProvider.php
@@ -21,7 +21,10 @@ class JMSSerializerServiceProvider implements ServiceProviderInterface
{
public function register(Application $app)
{
- $app['serializer.cache-directory'] = $app['root.path'] . '/tmp/serializer/';
+ $app['serializer.cache-directory'] = $app->share(function () use ($app) {
+ return $app['cache.path'].'/serializer/';
+ });
+
$app['serializer.src_directory'] = $app['root.path'] . '/vendor/jms/serializer/src/';
$app['serializer.metadata.annotation_reader'] = $app->share(function () use ($app) {
diff --git a/lib/Alchemy/Phrasea/Core/Provider/ORMServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/ORMServiceProvider.php
index 3d3c6c1fbb..395eff6142 100644
--- a/lib/Alchemy/Phrasea/Core/Provider/ORMServiceProvider.php
+++ b/lib/Alchemy/Phrasea/Core/Provider/ORMServiceProvider.php
@@ -37,7 +37,9 @@ class ORMServiceProvider implements ServiceProviderInterface
{
public function register(Application $app)
{
- $app['EM.sql-logger.file'] = $app['root.path'] . '/logs/doctrine-log.log';
+ $app['EM.sql-logger.file'] = $app->share(function (Application $app) {
+ return $app['log.path'].'/doctrine-log.log';
+ });
$app['EM.sql-logger.max-files'] = 5;
$app['EM.sql-logger'] = $app->share(function (Application $app) {
@@ -55,7 +57,7 @@ class ORMServiceProvider implements ServiceProviderInterface
$annotationReader = new AnnotationReader();
$fileCacheReader = new FileCacheReader(
$annotationReader,
- $app['root.path']."/tmp/doctrine",
+ $app['cache.path'].'/doctrine',
$app['debug']
);
@@ -97,7 +99,7 @@ class ORMServiceProvider implements ServiceProviderInterface
$config->setMetadataDriverImpl($app['EM.driver']);
- $config->setProxyDir($app['root.path'] . '/tmp/doctrine-proxies');
+ $config->setProxyDir($app['root.path'].'/resources/proxies');
$config->setProxyNamespace('Alchemy\Phrasea\Model\Proxies');
$config->setAutoGenerateProxyClasses($app['debug']);
$config->addEntityNamespace('Phraseanet', 'Alchemy\Phrasea\Model\Entities');
diff --git a/lib/Alchemy/Phrasea/Core/Provider/SessionHandlerServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/SessionHandlerServiceProvider.php
index 6c3d9c4320..54d03b0c65 100644
--- a/lib/Alchemy/Phrasea/Core/Provider/SessionHandlerServiceProvider.php
+++ b/lib/Alchemy/Phrasea/Core/Provider/SessionHandlerServiceProvider.php
@@ -23,7 +23,7 @@ class SessionHandlerServiceProvider implements ServiceProviderInterface
public function register(Application $app)
{
$app['session.storage.handler.factory'] = $app->share(function (Application $app) {
- return new SessionHandlerFactory($app['cache.connection-factory'], $app['root.path']);
+ return new SessionHandlerFactory($app['cache.connection-factory']);
});
}
diff --git a/lib/Alchemy/Phrasea/Core/Provider/TasksServiceProvider.php b/lib/Alchemy/Phrasea/Core/Provider/TasksServiceProvider.php
index 1fa0951d2c..3d8f610783 100644
--- a/lib/Alchemy/Phrasea/Core/Provider/TasksServiceProvider.php
+++ b/lib/Alchemy/Phrasea/Core/Provider/TasksServiceProvider.php
@@ -58,7 +58,7 @@ class TasksServiceProvider implements ServiceProviderInterface
});
$app['task-manager.log-file.root'] = $app->share(function (Application $app) {
- return $app['root.path'].'/logs';
+ return $app['log.path'];
});
$app['task-manager.log-file.factory'] = $app->share(function (Application $app) {
diff --git a/lib/Alchemy/Phrasea/Core/Version.php b/lib/Alchemy/Phrasea/Core/Version.php
index 27c5909982..391b59cb4c 100644
--- a/lib/Alchemy/Phrasea/Core/Version.php
+++ b/lib/Alchemy/Phrasea/Core/Version.php
@@ -13,7 +13,7 @@ namespace Alchemy\Phrasea\Core;
class Version
{
- protected static $number = '3.9.0-alpha.18';
+ protected static $number = '3.9.0-alpha.19';
protected static $name = 'Gorgosaurus';
public static function getNumber()
diff --git a/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php b/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php
index fbfd9361ae..304d50d2b1 100644
--- a/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php
+++ b/lib/Alchemy/Phrasea/Model/Manipulator/TokenManipulator.php
@@ -205,7 +205,7 @@ class TokenManipulator implements ManipulatorInterface
switch ($token->getType()) {
case 'download':
case 'email':
- $file = $this->app['root.path'] . '/tmp/download/' . $token->getValue() . '.zip';
+ $file = $this->app['tmp.download.path'].'/' . $token->getValue() . '.zip';
if (is_file($file)) {
unlink($file);
}
diff --git a/lib/Alchemy/Phrasea/Setup/Installer.php b/lib/Alchemy/Phrasea/Setup/Installer.php
index eb4a304f3d..8a6c08cf4f 100644
--- a/lib/Alchemy/Phrasea/Setup/Installer.php
+++ b/lib/Alchemy/Phrasea/Setup/Installer.php
@@ -34,7 +34,6 @@ class Installer
$this->rollbackInstall($abConn, $dbConn);
try {
-
$this->createConfigFile($abConn, $serverName, $binaryData);
$this->createAB();
$this->populateRegistryData($serverName, $dataPath, $binaryData);
@@ -60,13 +59,16 @@ class Installer
private function populateRegistryData($serverName, $dataPath)
{
- if (null === realpath($dataPath)) {
+ if (null === $dataPath = realpath($dataPath)) {
throw new \InvalidArgumentException(sprintf('Path %s does not exist.', $dataPath));
}
- $dataPath = realpath($dataPath) . DIRECTORY_SEPARATOR;
-
- $this->app['conf']->set(['main', 'storage', 'subdefs', 'default-dir'], $dataPath);
+ $this->app['conf']->set(['main', 'storage', 'subdefs'], $dataPath);
+ $this->app['conf']->set(['main', 'storage', 'cache'], realpath(__DIR__ . '/../../../../cache'));
+ $this->app['conf']->set(['main', 'storage', 'log'], realpath(__DIR__ . '/../../../../logs'));
+ $this->app['conf']->set(['main', 'storage', 'download'], realpath(__DIR__ . '/../../../../tmp/download'));
+ $this->app['conf']->set(['main', 'storage', 'lazaret'], realpath(__DIR__ . '/../../../../tmp/lazaret'));
+ $this->app['conf']->set(['main', 'storage', 'caption'], realpath(__DIR__ . '/../../../../tmp/caption'));
$this->app['conf']->set('servername', $serverName);
$this->app['conf']->set('registry', $this->app['registry.manipulator']->getRegistryData());
}
@@ -134,7 +136,7 @@ class Installer
foreach ($appbox->tables->table as $table) {
try {
- $sql = 'DROP TABLE `' . $table['name'] . '`';
+ $sql = 'DROP TABLE IF EXISTS `' . $table['name'] . '`';
$stmt = $abConn->prepare($sql);
$stmt->execute();
$stmt->closeCursor();
@@ -145,7 +147,7 @@ class Installer
if (null !== $dbConn) {
foreach ($databox->tables->table as $table) {
try {
- $sql = 'DROP TABLE `' . $table['name'] . '`';
+ $sql = 'DROP TABLE IF EXISTS `' . $table['name'] . '`';
$stmt = $dbConn->prepare($sql);
$stmt->execute();
$stmt->closeCursor();
diff --git a/lib/Alchemy/Phrasea/Setup/Probe/FilesystemProbe.php b/lib/Alchemy/Phrasea/Setup/Probe/FilesystemProbe.php
index fb85c68556..c532a799e9 100644
--- a/lib/Alchemy/Phrasea/Setup/Probe/FilesystemProbe.php
+++ b/lib/Alchemy/Phrasea/Setup/Probe/FilesystemProbe.php
@@ -35,8 +35,8 @@ class FilesystemProbe extends FilesystemRequirements implements ProbeInterface
);
}
- if ($conf->has(['main', 'storage', 'subdefs', 'default-dir'])) {
- $paths[] = $conf->get(['main', 'storage', 'subdefs', 'default-dir']);
+ if ($conf->has(['main', 'storage', 'subdefs'])) {
+ $paths[] = $conf->get(['main', 'storage', 'subdefs']);
}
foreach ($paths as $path) {
diff --git a/lib/Alchemy/Phrasea/Setup/Requirements/FilesystemRequirements.php b/lib/Alchemy/Phrasea/Setup/Requirements/FilesystemRequirements.php
index 7a4ef3ad83..804b266ad3 100644
--- a/lib/Alchemy/Phrasea/Setup/Requirements/FilesystemRequirements.php
+++ b/lib/Alchemy/Phrasea/Setup/Requirements/FilesystemRequirements.php
@@ -31,16 +31,12 @@ class FilesystemRequirements extends RequirementCollection implements Requiremen
$baseDir . '/config/wm',
$baseDir . '/logs',
$baseDir . '/tmp',
- $baseDir . '/www/custom',
$baseDir . '/tmp/locks',
- $baseDir . '/tmp/cache_twig',
- $baseDir . '/tmp/serializer',
- $baseDir . '/tmp/doctrine',
- $baseDir . '/tmp/cache_minify',
+ $baseDir . '/tmp/caption',
$baseDir . '/tmp/lazaret',
- $baseDir . '/tmp/desc_tmp',
$baseDir . '/tmp/download',
- $baseDir . '/tmp/batches'
+ $baseDir . '/cache',
+ $baseDir . '/www/custom',
];
foreach ($paths as $path) {
diff --git a/lib/Alchemy/Phrasea/TaskManager/Job/FtpJob.php b/lib/Alchemy/Phrasea/TaskManager/Job/FtpJob.php
index d382d301f1..0cac70e0dc 100644
--- a/lib/Alchemy/Phrasea/TaskManager/Job/FtpJob.php
+++ b/lib/Alchemy/Phrasea/TaskManager/Job/FtpJob.php
@@ -190,14 +190,14 @@ class FtpJob extends AbstractJob
if ($subdef == 'caption') {
$desc = $app['serializer.caption']->serialize($record->get_caption(), CaptionSerializer::SERIALIZE_XML, $exportElement->isBusinessfields());
- $localfile = $app['root.path'] . '/tmp/' . md5($desc . time() . mt_rand());
+ $localfile = sys_get_temp_dir().'/' . md5($desc . time() . mt_rand());
if (file_put_contents($localfile, $desc) === false) {
throw new \Exception('Impossible de creer un fichier temporaire');
}
} elseif ($subdef == 'caption-yaml') {
$desc = $app['serializer.caption']->serialize($record->get_caption(), CaptionSerializer::SERIALIZE_YAML, $exportElement->isBusinessfields());
- $localfile = $app['root.path'] . '/tmp/' . md5($desc . time() . mt_rand());
+ $localfile = sys_get_temp_dir().'/' . md5($desc . time() . mt_rand());
if (file_put_contents($localfile, $desc) === false) {
throw new \Exception('Impossible de creer un fichier temporaire');
}
@@ -272,7 +272,7 @@ class FtpJob extends AbstractJob
$buffer .= $root . '/' . $folder . $filename . "\n";
}
- $tmpfile = $app['root.path'] . '/tmp/tmpftpbuffer' . $date->format('U') . '.txt';
+ $tmpfile = sys_get_temp_dir().'/tmpftpbuffer' . $date->format('U') . '.txt';
file_put_contents($tmpfile, $buffer);
diff --git a/lib/Alchemy/Phrasea/Utilities/CachedTranslator.php b/lib/Alchemy/Phrasea/Utilities/CachedTranslator.php
index 5fdd162322..fe1a42c2cf 100644
--- a/lib/Alchemy/Phrasea/Utilities/CachedTranslator.php
+++ b/lib/Alchemy/Phrasea/Utilities/CachedTranslator.php
@@ -45,11 +45,17 @@ class CachedTranslator extends Translator
return;
}
- if (null === $this->options['cache_dir']) {
+ if (is_callable($this->options['cache_dir'])) {
+ $cache_dir = call_user_func($this->options['cache_dir'], $this->app);
+ } else {
+ $cache_dir = $this->options['cache_dir'];
+ }
+
+ if (null === $cache_dir) {
return parent::loadCatalogue($locale);
}
- $cache = new ConfigCache($this->options['cache_dir'].'/catalogue.'.$locale.'.php', $this->options['debug']);
+ $cache = new ConfigCache($cache_dir.'/catalogue.'.$locale.'.php', $this->options['debug']);
if (!$cache->isFresh()) {
parent::loadCatalogue($locale);
diff --git a/lib/Alchemy/Phrasea/Utilities/CrossDomainDumper.php b/lib/Alchemy/Phrasea/Utilities/CrossDomainDumper.php
new file mode 100644
index 0000000000..f14bd5e2c3
--- /dev/null
+++ b/lib/Alchemy/Phrasea/Utilities/CrossDomainDumper.php
@@ -0,0 +1,107 @@
+'.PHP_EOL;
+ $xml .= ''.PHP_EOL;
+ $xml .= '' . PHP_EOL;
+ $xml .= $this->getSiteControl($configuration);
+ $xml .= $this->getAllowAccess($configuration);
+ $xml .= $this->getAllowIdentity($configuration);
+ $xml .= $this->getAllowHeader($configuration);
+ $xml .= "";
+
+ return $xml;
+ }
+
+ private function getSiteControl(array $conf)
+ {
+ $xml = '';
+
+ if (isset($conf['site-control'])) {
+ $xml = "\t".''.PHP_EOL;
+ }
+
+ return $xml;
+ }
+
+ private function getAllowAccess(array $conf)
+ {
+ $xml = '';
+ if (!isset($conf['allow-access-from'])) {
+ return $xml;
+ }
+ $allowAccess = $conf['allow-access-from'];
+ if (!is_array($allowAccess)) {
+ return $xml;
+ }
+
+ foreach ($allowAccess as $access) {
+ // domain is mandatory
+ if (!isset($access['domain'])) {
+ continue;
+ }
+
+ $domain = $access['domain'];
+ $secure = isset($access['secure']) ? $access['secure'] : false;
+ $ports = isset($access['to-ports']) ? $access['to-ports'] : false;
+
+ $xml .= "\t".''.PHP_EOL;
+ }
+
+ return $xml;
+ }
+
+ private function getAllowIdentity(array $conf)
+ {
+ $xml = '';
+ if (!isset($conf['allow-access-from-identity'])) {
+ return $xml;
+ }
+ $allowAccess = $conf['allow-access-from-identity'];
+ if (!is_array($allowAccess)) {
+ return $xml;
+ }
+ foreach ($allowAccess as $access) {
+ $algorithm = isset($access['fingerprint-algorithm']) ? $access['fingerprint-algorithm'] : false;
+ $fingerprint = isset($access['fingerprint']) ? $access['fingerprint'] : false;
+
+ // both are mandatory
+ if (!$algorithm || !$fingerprint) {
+ continue;
+ }
+
+ $xml .= "\t".''.PHP_EOL;
+ }
+
+ return $xml;
+ }
+
+ private function getAllowHeader(array $conf)
+ {
+ $xml = '';
+ if (!isset($conf['allow-http-request-headers-from'])) {
+ return $xml;
+ }
+ $allowHeaders = $conf['allow-http-request-headers-from'];
+ if (!is_array($allowHeaders)) {
+ return $xml;
+ }
+ foreach ($allowHeaders as $access) {
+ // domain & headers are mandatory
+ if (!isset($access['domain']) && !isset($access['headers'])) {
+ continue;
+ }
+ $secure = isset($access['secure']) ? $access['secure'] : false;
+
+ $xml .= "\t".''.PHP_EOL;
+ }
+
+ return $xml;
+ }
+}
diff --git a/lib/Alchemy/Phrasea/Utilities/CrossDomainParser.php b/lib/Alchemy/Phrasea/Utilities/CrossDomainParser.php
new file mode 100644
index 0000000000..8bf775c4a0
--- /dev/null
+++ b/lib/Alchemy/Phrasea/Utilities/CrossDomainParser.php
@@ -0,0 +1,73 @@
+{"site-control"})) {
+ $sc = $xml->{"site-control"};
+ foreach ($sc->attributes() as $k => $v) {
+ if ($k === 'permitted-cross-domain-policies') {
+ $conf['site-control'] = (string) $v;
+ }
+ }
+ }
+ if (isset($xml->{"allow-access-from"})) {
+ if (count($xml->{"allow-access-from"}) > 0) {
+ $conf['allow-access-from'] = array();
+ foreach ($xml->{"allow-access-from"} as $el) {
+ $opt = array();
+ foreach ($el->attributes() as $k => $v) {
+ $opt[$k] = (string) $v;
+ }
+ $conf['allow-access-from'][] = $opt;
+ }
+ }
+ }
+ if (isset($xml->{"signatory"})) {
+ if (count($xml->{"signatory"}) > 0) {
+ $conf['allow-access-from-identity'] = array();
+ foreach ($xml->{"signatory"} as $el) {
+ if (isset($el->{"certificate"})) {
+ $c = array();
+ foreach ($el->{"certificate"}->attributes() as $k => $v) {
+ $c[$k] = (string) $v;
+ }
+ $conf['allow-access-from-identity'][] = $c;
+ }
+ }
+ }
+ }
+ if (isset($xml->{"allow-http-request-headers-from"})) {
+ if (count($xml->{"allow-http-request-headers-from"}) > 0) {
+ $conf['allow-http-request-headers-from'] = array();
+ foreach ($xml->{"allow-http-request-headers-from"} as $el) {
+ $opt = array();
+ foreach ($el->attributes() as $k => $v) {
+ $opt[$k] = (string) $v;
+ }
+ $conf['allow-http-request-headers-from'][] = $opt;
+ }
+ }
+ }
+
+ return $conf;
+ }
+}
diff --git a/lib/classes/Setup/Upgrade.php b/lib/classes/Setup/Upgrade.php
index a65863cd2e..d796f9aece 100644
--- a/lib/classes/Setup/Upgrade.php
+++ b/lib/classes/Setup/Upgrade.php
@@ -17,9 +17,9 @@ class Setup_Upgrade
{
/**
*
- * @var appbox
+ * @var Applications
*/
- private $appbox;
+ private $app;
/**
*
@@ -30,16 +30,16 @@ class Setup_Upgrade
public function __construct(Application $app, $force = false)
{
if ($force) {
- self::remove_lock_file();
+ $this->remove_lock_file();
}
- if (self::lock_exists()) {
+ if ($this->lock_exists()) {
throw new Exception_Setup_UpgradeAlreadyStarted('The upgrade is already started');
}
- $this->appbox = $app['phraseanet.appbox'];
+ $this->app = $app;
- if (version_compare($this->appbox->get_version(), '3.9', '<')
+ if (version_compare($this->app['phraseanet.appbox']->get_version(), '3.9', '<')
&& count(MailChecker::getWrongEmailUsers($app)) > 0) {
throw new \Exception_Setup_FixBadEmailAddresses('Please fix the database before starting');
}
@@ -55,7 +55,7 @@ class Setup_Upgrade
*/
public function __destruct()
{
- self::remove_lock_file();
+ $this->remove_lock_file();
return;
}
@@ -93,9 +93,9 @@ class Setup_Upgrade
'last_update' => $date_obj->format(DATE_ATOM),
], 1);
- if (!file_put_contents(self::get_lock_file(), $datas))
+ if (!file_put_contents($this->get_lock_file(), $datas))
throw new Exception_Setup_CannotWriteLockFile(
- sprintf('Cannot write lock file to %s', self::get_lock_file())
+ sprintf('Cannot write lock file to %s', $this->get_lock_file())
);
return $this;
@@ -106,11 +106,11 @@ class Setup_Upgrade
*
* @return boolean
*/
- private static function lock_exists()
+ private function lock_exists()
{
clearstatcache();
- return file_exists(self::get_lock_file());
+ return file_exists($this->get_lock_file());
}
/**
@@ -118,19 +118,19 @@ class Setup_Upgrade
*
* @return string
*/
- private static function get_lock_file()
+ private function get_lock_file()
{
- return __DIR__ . '/../../../tmp/upgrade.lock';
+ return $this->app['tmp.path'].'/locks/upgrade.lock';
}
/**
*
* @return Void
*/
- private static function remove_lock_file()
+ private function remove_lock_file()
{
- if (self::lock_exists()) {
- unlink(self::get_lock_file());
+ if ($this->lock_exists()) {
+ unlink($this->get_lock_file());
}
return;
diff --git a/lib/classes/appbox.php b/lib/classes/appbox.php
index 7561d33c21..9fae1cbaf0 100644
--- a/lib/classes/appbox.php
+++ b/lib/classes/appbox.php
@@ -288,30 +288,33 @@ class appbox extends base
$app['phraseanet.pre-schema-upgrader']->apply($app);
$finder = new Finder();
- $finder->in([
- $this->app['root.path'] . '/tmp/cache_minify/',
- $this->app['root.path'] . '/tmp/cache_twig/',
- $this->app['root.path'] . '/tmp/translations/',
- $this->app['root.path'] . '/tmp/cache/profiler/',
- $this->app['root.path'] . '/tmp/doctrine/',
- $this->app['root.path'] . '/tmp/serializer/',
- ])
+ $in = [];
+ foreach ($app['cache.paths'] as $path) {
+ $in[] = $path.'/minify/';
+ $in[] = $path.'/twig/';
+ $in[] = $path.'/translations/';
+ $in[] = $path.'/profiler/';
+ $in[] = $path.'/doctrine/';
+ $in[] = $path.'/serializer/';
+ };
+ $finder->in(array_filter($in, function($path) {
+ return is_dir($path);
+ }))
->depth(0)
->ignoreVCS(true)
->ignoreDotFiles(true);
- foreach ($finder as $file) {
- $app['filesystem']->remove($file);
- }
+
+ $app['filesystem']->remove($finder);
foreach ([
- 'config/custom_files/' => 'www/custom/',
- 'config/minilogos/' => 'www/custom/minilogos/',
- 'config/stamp/' => 'www/custom/stamp/',
- 'config/status/' => 'www/custom/status/',
- 'config/wm/' => 'www/custom/wm/',
+ 'config/custom_files/' => 'www/custom/',
+ 'config/minilogos/' => 'www/custom/minilogos/',
+ 'config/stamp/' => 'www/custom/stamp/',
+ 'config/status/' => 'www/custom/status/',
+ 'config/wm/' => 'www/custom/wm/',
] as $source => $target) {
- $app['filesystem']->mirror($this->app['root.path'] . '/' . $source, $this->app['root.path'] . '/' . $target);
+ $app['filesystem']->mirror($this->app['root.path'] . '/' . $source, $this->app['root.path'] . '/' . $target, null, array('override' => true));
}
$advices = $this->upgradeDB(true, $app);
diff --git a/lib/classes/base.php b/lib/classes/base.php
index 094c9c3075..771ab8cd85 100644
--- a/lib/classes/base.php
+++ b/lib/classes/base.php
@@ -412,7 +412,7 @@ abstract class base implements cache_cacheableInterface
{
$field_stmt = $defaults_stmt = [];
- $create_stmt = "CREATE TABLE `" . $table['name'] . "` (";
+ $create_stmt = "CREATE TABLE IF NOT EXISTS `" . $table['name'] . "` (";
foreach ($table->fields->field as $field) {
$isnull = trim($field->null) == "" ? "NOT NULL" : "NULL";
diff --git a/lib/classes/connection/pdoStatement.php b/lib/classes/connection/pdoStatement.php
new file mode 100644
index 0000000000..7386c54837
--- /dev/null
+++ b/lib/classes/connection/pdoStatement.php
@@ -0,0 +1,37 @@
+statement = $statement;
+
+ return $this;
+ }
+
+ public function getQueryString()
+ {
+ return $this->statement->queryString;
+ }
+
+ public function execute($params = array())
+ {
+ return $this->statement->execute($params);
+ }
+
+ public function __call($function_name, $parameters)
+ {
+ return call_user_func_array(array($this->statement, $function_name), $parameters);
+ }
+}
diff --git a/lib/classes/connection/pdoStatementReconnectable.php b/lib/classes/connection/pdoStatementReconnectable.php
new file mode 100644
index 0000000000..4216d55af1
--- /dev/null
+++ b/lib/classes/connection/pdoStatementReconnectable.php
@@ -0,0 +1,52 @@
+statement = $statement;
+ $this->conn = $conn;
+
+ return $this;
+ }
+
+ public function getQueryString()
+ {
+ return $this->statement->getQueryString();
+ }
+
+ public function execute($params = array())
+ {
+ try {
+ return $this->statement->execute($params);
+ } catch (\Exception $e) {
+ $unreachable = ($e->getCode() === 2006) || (false !== strpos($e->getMessage(), 'MySQL server has gone away')) || (false !== strpos($e->getMessage(), 'errno=32 Broken pipe'));
+ if (!$unreachable) {
+ throw $e;
+ }
+ $this->conn->connect();
+ }
+ // retry query with update statement
+ $this->statement = $this->conn->prepare($this->getQueryString());
+
+ return $this->statement->execute($params);
+ }
+
+ public function __call($function_name, $parameters)
+ {
+ return call_user_func_array(array($this->statement, $function_name), $parameters);
+ }
+}
diff --git a/lib/classes/connection/statement.php b/lib/classes/connection/statement.php
new file mode 100644
index 0000000000..12317cf259
--- /dev/null
+++ b/lib/classes/connection/statement.php
@@ -0,0 +1,16 @@
+get_connection()->prepare($sql);
$stmt->execute();
$rs = $stmt->fetchAll(PDO::FETCH_ASSOC);
$stmt->closeCursor();
- $ret = ['xml_indexed' => 0, 'thesaurus_indexed' => 0];
+ $ret = array(
+ 'xml_indexed' => 0,
+ 'thesaurus_indexed' => 0,
+ 'jeton_subdef' => array()
+ );
+
foreach ($rs as $row) {
$status = $row['status'];
if ($status & 1)
@@ -435,6 +439,21 @@ class databox extends base
$ret['thesaurus_indexed'] += $row['n'];
}
+ $sql = "SELECT type, jeton, COUNT(record_id) AS n FROM record WHERE jeton & ".JETON_MAKE_SUBDEF." GROUP BY type, jeton";
+ $stmt = $this->get_connection()->prepare($sql);
+ $stmt->execute();
+ $rs = $stmt->fetchAll(PDO::FETCH_ASSOC);
+ $stmt->closeCursor();
+
+ foreach ($rs as $row) {
+ if(!array_key_exists($row['type'], $ret['jeton_subdef'])) {
+ $ret['jeton_subdef'][$row['type']] = 0;
+ }
+ if((int)$row['jeton'] & JETON_MAKE_SUBDEF) {
+ $ret['jeton_subdef'][$row['type']] += (int)$row['n'];
+ }
+ }
+
return $ret;
}
@@ -575,7 +594,7 @@ class databox extends base
$databox = $app['phraseanet.appbox']->get_databox($sbas_id);
$databox->insert_datas();
$databox->setNewStructure(
- $data_template, $app['conf']->get(['main', 'storage', 'subdefs', 'default-dir'])
+ $data_template, $app['conf']->get(['main', 'storage', 'subdefs'])
);
return $databox;
@@ -915,7 +934,7 @@ class databox extends base
$contents = str_replace(
["{{basename}}", "{{datapathnoweb}}"]
- , [$this->dbname, $path_doc]
+ , [$this->dbname, rtrim($path_doc, '/').'/']
, $contents
);
diff --git a/lib/classes/module/console/sphinxGenerateSuggestion.php b/lib/classes/module/console/sphinxGenerateSuggestion.php
index a5fa5e435c..5453d8a994 100644
--- a/lib/classes/module/console/sphinxGenerateSuggestion.php
+++ b/lib/classes/module/console/sphinxGenerateSuggestion.php
@@ -42,7 +42,7 @@ class module_console_sphinxGenerateSuggestion extends Command
)
));
- $tmp_file = $this->container['root.path'] . '/tmp/dict' . $index . '.txt';
+ $tmp_file = sys_get_temp_dir().'/dict' . $index . '.txt';
$databox = $this->getService('phraseanet.appbox')->get_databox($sbas_id);
diff --git a/lib/classes/module/console/systemClearCache.php b/lib/classes/module/console/systemClearCache.php
index 7b670a2bbc..5950053f75 100644
--- a/lib/classes/module/console/systemClearCache.php
+++ b/lib/classes/module/console/systemClearCache.php
@@ -31,21 +31,16 @@ class module_console_systemClearCache extends Command
{
$finder = new Finder();
+ $in = [];
+ foreach ($this->container['cache.paths'] as $path) {
+ $in[] = $path;
+ };
$finder
->exclude('.git')
->exclude('.svn')
- ->in([
- $this->container['root.path'] . '/tmp/cache_minify/',
- $this->container['root.path'] . '/tmp/cache_twig/',
- $this->container['root.path'] . '/tmp/translations/',
- $this->container['root.path'] . '/tmp/cache/profiler/',
- $this->container['root.path'] . '/tmp/doctrine/',
- $this->container['root.path'] . '/tmp/serializer/',
- ]);
+ ->in($in);
- $filesystem = new Filesystem();
-
- $filesystem->remove($finder);
+ $this->container['filesystem']->remove($finder);
if ($this->container['phraseanet.configuration-tester']->isInstalled()) {
$this->getService('phraseanet.cache-service')->flushAll();
diff --git a/lib/classes/module/report/activity.php b/lib/classes/module/report/activity.php
index dffa49eee6..542e52d2fe 100644
--- a/lib/classes/module/report/activity.php
+++ b/lib/classes/module/report/activity.php
@@ -641,8 +641,9 @@ class module_report_activity extends module_report
INNER JOIN log_colls FORCE INDEX (couple) ON (log.id = log_colls.log_id)
WHERE log.site = :site_id
AND log_date.action = 'download'
- AND (" . $datefilter['sql'] . ")
- AND (" . $collfilter['sql'] . ")
+ AND (" . $datefilter['sql'] . ")" .
+ (('' !== $collfilter['sql']) ? "AND (" . $collfilter['sql'] . ")" : '')
+ . "
) AS tt
LEFT JOIN subdef AS s ON (s.record_id = tt.record_id)
WHERE s.name = tt.final
@@ -715,9 +716,9 @@ class module_report_activity extends module_report
SELECT DISTINCT(log_date.id), log_date.date AS heures
FROM log AS log_date FORCE INDEX (date_site)
INNER JOIN log_colls FORCE INDEX (couple) ON (log_date.id = log_colls.log_id)
- WHERE " . $datefilter['sql'] . "
- AND " . $collfilter['sql'] . "
- AND log_date.site = :site_id
+ WHERE " . $datefilter['sql'] . "" .
+ (('' !== $collfilter['sql']) ? "AND (" . $collfilter['sql'] . ")" : '')
+ . " AND log_date.site = :site_id
) AS tt";
$stmt = $conn->prepare($sql);
@@ -747,12 +748,10 @@ class module_report_activity extends module_report
{
$databox = $app['phraseanet.appbox']->get_databox($sbas_id);
$conn = $databox->get_connection();
- $result = [];
- $res = [];
- $datefilter =
- module_report_sqlfilter::constructDateFilter($dmin, $dmax);
- $collfilter =
- module_report_sqlfilter::constructCollectionFilter($app, $list_coll_id);
+ $result = array();
+ $res = array();
+ $datefilter = module_report_sqlfilter::constructDateFilter($dmin, $dmax);
+ $collfilter = module_report_sqlfilter::constructCollectionFilter($app, $list_coll_id);
$params = [':site_id' => $app['conf']->get(['main', 'key'])];
$params = array_merge($params, $datefilter['params'], $collfilter['params']);
@@ -763,9 +762,9 @@ class module_report_activity extends module_report
SELECT DISTINCT(log_date.id), DATE_FORMAT( log_date.date, '%Y-%m-%d' ) AS ddate
FROM log AS log_date FORCE INDEX (date_site) INNER JOIN log_colls FORCE INDEX (couple) ON (log_date.id = log_colls.log_id)
WHERE " . $datefilter['sql'] . "
- AND log_date.site = :site_id
- AND (" . $collfilter['sql'] . ")
- ) AS tt
+ AND log_date.site = :site_id" .
+ (('' !== $collfilter['sql']) ? (" AND (" . $collfilter['sql'] . ")") : '')
+ . ") AS tt
GROUP by tt.ddate
ORDER BY tt.ddate ASC";
@@ -807,9 +806,9 @@ class module_report_activity extends module_report
INNER JOIN log AS log_date FORCE INDEX (date_site) ON (log_search.log_id = log_date.id)
INNER JOIN log_colls FORCE INDEX (couple) ON (log_date.id = log_colls.log_id)
WHERE " . $datefilter['sql'] . "
- AND log_date.site = :site_id
- AND (" . $collfilter['sql'] . ")
- ) AS tt
+ AND log_date.site = :site_id" .
+ (('' !== $collfilter['sql']) ? " AND (" . $collfilter['sql'] . ")" : '')
+ . ") AS tt
GROUP BY tt.usrid
ORDER BY nb DESC";
@@ -848,9 +847,9 @@ class module_report_activity extends module_report
INNER JOIN log AS log_date FORCE INDEX (date_site) ON (log_search.log_id = log_date.id)
INNER JOIN log_colls FORCE INDEX (couple) ON (log_date.id = log_colls.log_id)
WHERE " . $datefilter['sql'] . "
- AND log_date.site = :site_id
- AND (" . $collfilter['sql'] . ")
- ) AS tt
+ AND log_date.site = :site_id" .
+ (('' !== $collfilter['sql']) ? " AND (" . $collfilter['sql'] . ")" : '')
+ . ") AS tt
GROUP BY tt.search
ORDER BY nb DESC";
@@ -889,9 +888,9 @@ class module_report_activity extends module_report
FROM (log_view)
INNER JOIN log AS log_date FORCE INDEX (date_site) ON (log_view.log_id = log_date.id)
INNER JOIN log_colls FORCE INDEX (couple) ON (log_date.id = log_colls.log_id)
- WHERE " . $datefilter['sql'] . "
- AND (" . $collfilter['sql'] . ")
- ) AS tt
+ WHERE " . $datefilter['sql'] . "" .
+ (('' !== $collfilter['sql']) ? " AND (" . $collfilter['sql'] . ")" : '')
+ . ") AS tt
GROUP BY referrer
ORDER BY nb_view DESC ";
@@ -933,8 +932,9 @@ class module_report_activity extends module_report
FROM (log_docs AS log_date)
INNER JOIN log FORCE INDEX (date_site) ON (log_date.log_id = log.id)
INNER JOIN log_colls FORCE INDEX (couple) ON (log.id = log_colls.log_id)
- WHERE " . $datefilter['sql'] . " AND log_date.action = 'add'
- AND (" . $collfilter['sql'] . ")
+ WHERE " . $datefilter['sql'] . " AND log_date.action = 'add' " .
+ (('' !== $collfilter['sql']) ? " AND (" . $collfilter['sql'] . ")" : '')
+ . "
) AS tt
GROUP BY tt.ddate
ORDER BY activity ASC ";
@@ -969,9 +969,9 @@ class module_report_activity extends module_report
FROM (log_docs AS log_date)
INNER JOIN log FORCE INDEX (date_site) ON (log_date.log_id = log.id)
INNER JOIN log_colls FORCE INDEX (couple) ON (log.id = log_colls.log_id)
- WHERE " . $datefilter['sql'] . " AND log_date.action = 'edit'
- AND (" . $collfilter['sql'] . ")
- ) AS tt
+ WHERE " . $datefilter['sql'] . " AND log_date.action = 'edit'" .
+ (('' !== $collfilter['sql']) ? " AND (" . $collfilter['sql'] . ")" : '')
+ . ") AS tt
GROUP BY tt.ddate
ORDER BY activity ASC ";
@@ -1006,9 +1006,9 @@ class module_report_activity extends module_report
FROM (log_docs AS log_date)
INNER JOIN log FORCE INDEX (date_site) ON (log_date.log_id = log.id)
INNER JOIN log_colls FORCE INDEX (couple) ON (log.id = log_colls.log_id)
- WHERE " . $datefilter['sql'] . " AND log_date.action = 'add'
- AND (" . $collfilter['sql'] . ")
- ) AS tt
+ WHERE " . $datefilter['sql'] . " AND log_date.action = 'add'" .
+ (('' !== $collfilter['sql']) ? " AND (" . $collfilter['sql'] . ")" : '')
+ . ") AS tt
GROUP BY tt.usrid
ORDER BY nb ASC ";
diff --git a/lib/classes/module/report/sqlfilter.php b/lib/classes/module/report/sqlfilter.php
index 00f287b8c0..fef31471f7 100644
--- a/lib/classes/module/report/sqlfilter.php
+++ b/lib/classes/module/report/sqlfilter.php
@@ -50,7 +50,11 @@ class module_report_sqlfilter
$coll_filter[] = 'log_colls.coll_id = ' . $val;
}
}
- $ret['sql'] = ' (' . implode(' OR ', array_unique($coll_filter)) . ') ';
+ $collections = array_unique($coll_filter);
+
+ if (count($collections) > 0) {
+ $ret['sql'] = ' (' . implode(' OR ', $collections) . ') ';
+ }
return $ret;
}
@@ -66,15 +70,15 @@ class module_report_sqlfilter
$params = [':log_site' => $this->app['conf']->get(['main', 'key'])];
- if ($this->filter['date']) {
+ if ($this->filter['date'] && $this->filter['date']['sql'] !== '') {
$finalfilter .= $this->filter['date']['sql'] . ' AND ';
$params = array_merge($params, $this->filter['date']['params']);
}
- if ($this->filter['user']) {
+ if ($this->filter['user'] && $this->filter['user']['sql'] !== '') {
$finalfilter .= $this->filter['user']['sql'] . ' AND ';
$params = array_merge($params, $this->filter['user']['params']);
}
- if ($this->filter['collection']) {
+ if ($this->filter['collection'] && $this->filter['collection']['sql'] !== '') {
$finalfilter .= $this->filter['collection']['sql'] . ' AND ';
$params = array_merge($params, $this->filter['collection']['params']);
}
@@ -174,9 +178,12 @@ class module_report_sqlfilter
$n ++;
}
- $filter_user = ['sql' => implode(' AND ', $filter), 'params' => $params];
- $this->filter['user'] = $filter_user;
+ if (count($filter) > 0) {
+ $filter_user = array('sql' => implode(' AND ', $filter), 'params' => $params);
+ $this->filter['user'] = $filter_user;
+ }
+
}
return;
@@ -201,7 +208,11 @@ class module_report_sqlfilter
}
}
- $this->filter['collection'] = ['sql' => ' (' . implode(' OR ', array_unique($coll_filter)) . ') ', 'params' => []];
+ $collections = array_unique($coll_filter);
+
+ if (count($collections) > 0) {
+ $this->filter['collection'] = array('sql' => ' (' . implode(' OR ', array_unique($coll_filter)) . ') ', 'params' => array());
+ }
}
return;
@@ -219,7 +230,9 @@ class module_report_sqlfilter
$params[":record_fil" . $n] = phrasea::collFromBas($this->app, $val);
$n ++;
}
- $this->filter['record'] = ['sql' => implode(' OR ', $dl_coll_filter), 'params' => $params];
+ if (count($dl_coll_filter) > 0) {
+ $this->filter['record'] = array('sql' => implode(' OR ', $dl_coll_filter), 'params' => $params);
+ }
}
return;
diff --git a/lib/classes/patch/370alpha7a.php b/lib/classes/patch/370alpha7a.php
index 28adca9436..89515dd2e7 100644
--- a/lib/classes/patch/370alpha7a.php
+++ b/lib/classes/patch/370alpha7a.php
@@ -89,7 +89,7 @@ class patch_370alpha7a extends patchAbstract
$i = 0;
foreach ($rs as $row) {
- $filePath = $app['root.path'] . '/tmp/lazaret/' . $row['filepath'];
+ $filePath = $app['tmp.lazaret.path'].'/'.$row['filepath'];
if (null === $user = $this->loadUser($app['EM'], $row['usr_id'])) {
continue;
}
@@ -100,7 +100,7 @@ class patch_370alpha7a extends patchAbstract
$spec->setResizeMode(ImageSpec::RESIZE_MODE_INBOUND_FIXEDRATIO);
$spec->setDimensions(375, 275);
- $thumbPath = $app['root.path'] . '/tmp/lazaret/' . sprintf("thumb_%s", $row['filepath']);
+ $thumbPath = $app['tmp.lazaret.path'].'/'.sprintf("thumb_%s", $row['filepath']);
try {
$app['media-alchemyst']->turnInto($filePath, $thumbPath, $spec);
diff --git a/lib/classes/patch/380alpha16a.php b/lib/classes/patch/380alpha16a.php
index 3570f9faa1..dd1d40be12 100644
--- a/lib/classes/patch/380alpha16a.php
+++ b/lib/classes/patch/380alpha16a.php
@@ -63,11 +63,11 @@ class patch_380alpha16a extends patchAbstract
}
$xsendfile['mapping'][] = [
- 'directory' => $app['root.path'] . '/tmp/lazaret/',
+ 'directory' => $app['tmp.lazaret.path'],
'mount-point' => '/lazaret/',
];
$xsendfile['mapping'][] = [
- 'directory' => $app['root.path'] . '/tmp/download/',
+ 'directory' => $app['tmp.download.path'],
'mount-point' => '/download/',
];
diff --git a/lib/classes/patch/386alpha2a.php b/lib/classes/patch/386alpha2a.php
new file mode 100644
index 0000000000..151c90983a
--- /dev/null
+++ b/lib/classes/patch/386alpha2a.php
@@ -0,0 +1,85 @@
+release;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function require_all_upgrades()
+ {
+ return false;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function concern()
+ {
+ return $this->concern;
+ }
+
+ /**
+ * Returns doctrine migrations needed for the patch.
+ *
+ * @return array
+ */
+ public function getDoctrineMigrations()
+ {
+ return array();
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function apply(base $appbox, Application $app)
+ {
+ $config = $app['phraseanet.configuration']->getConfig();
+
+ $parser = new CrossDomainParser();
+ try {
+ $crossDomainConfig = $parser->parse($app['root.path'].'/www/crossdomain.xml');
+ } catch (RuntimeException $e) {
+ $crossDomainConfig = array(
+ 'allow-access-from' => array(
+ array(
+ 'domain' => '*.cooliris.com',
+ 'secure' => 'false',
+ )
+ )
+ );
+ }
+
+ $config['crossdomain'] = $crossDomainConfig;
+
+ $app['phraseanet.configuration']->setConfig($config);
+
+ return true;
+ }
+}
diff --git a/lib/classes/patch/390alpha19a.php b/lib/classes/patch/390alpha19a.php
new file mode 100644
index 0000000000..a4ad1f1eac
--- /dev/null
+++ b/lib/classes/patch/390alpha19a.php
@@ -0,0 +1,100 @@
+release;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function require_all_upgrades()
+ {
+ return false;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function concern()
+ {
+ return $this->concern;
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function getDoctrineMigrations()
+ {
+ return [];
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function apply(base $appbox, Application $app)
+ {
+ $storage = $app['conf']->get(['main', 'storage']);
+ $storage['cache'] = $app['root.path'].'/cache';
+ $storage['log'] = $app['root.path'].'/logs';
+ $storage['download'] = $app['root.path'].'/tmp/download';
+ $storage['lazaret'] = $app['root.path'].'/tmp/lazaret';
+ $storage['caption'] = $app['root.path'].'/tmp/caption';
+ $app['conf']->set(['main', 'storage'], $storage);
+
+ // update file structure
+ $this->removeDirectory($app, $app['root.path'].'/tmp/cache_twig');
+ $this->removeDirectory($app, $app['root.path'].'/tmp/doctrine');
+ $this->removeDirectory($app, $app['root.path'].'/tmp/profiler');
+ $this->removeDirectory($app, $app['root.path'].'/tmp/serializer');
+ $this->removeDirectory($app, $app['root.path'].'/tmp/translations');
+ $this->removeDirectory($app, $app['root.path'].'/tmp/cache_minify');
+ $this->removeDirectory($app, $app['root.path'].'/features');
+ $this->removeDirectory($app, $app['root.path'].'/hudson');
+ $this->removeDirectory($app, $app['root.path'].'/locales');
+ $this->removeDirectory($app, $app['root.path'].'/vagrant');
+ $this->removeDirectory($app, $app['root.path'].'/tmp/doctrine-proxies');
+
+
+ $this->copyFile($app, $app['root.path'].'/tmp/cache_registry.php', $app['cache.path'].'/cache_registry.php');
+ $this->copyFile($app, $app['root.path'].'/tmp/configuration-compiled.php', $app['root.path'].'/config/configuration-compiled.php');
+
+ return true;
+ }
+
+ private function removeDirectory(Application $app, $originDir)
+ {
+ if (is_dir($originDir)) {
+ $app['filesystem']->remove($originDir);
+ }
+ }
+
+ private function copyFile(Application $app, $originFile, $targetFile)
+ {
+ if ($app['filesystem']->exists($originFile)) {
+ $app['filesystem']->copy($originFile, $targetFile);
+ }
+ }
+}
diff --git a/lib/classes/patch/390alpha9b.php b/lib/classes/patch/390alpha9b.php
index 58856fda34..978a3a483a 100644
--- a/lib/classes/patch/390alpha9b.php
+++ b/lib/classes/patch/390alpha9b.php
@@ -165,7 +165,7 @@ class patch_390alpha9b extends patchAbstract
'GV_smtp_secure' => ['registry', 'email', 'smtp-secure-mode'],
'GV_smtp_user' => ['registry', 'email', 'smtp-user'],
'GV_smtp_password' => ['registry', 'email', 'smtp-password'],
- 'GV_base_datapath_noweb' => ['main', 'storage', 'subdefs', 'default-dir'],
+ 'GV_base_datapath_noweb' => ['main', 'storage', 'subdefs'],
'GV_youtube_api' => ['main', 'bridge', 'youtube', 'enabled'],
'GV_youtube_client_id' => ['main', 'bridge', 'youtube', 'client_id'],
'GV_youtube_client_secret' => ['main', 'bridge', 'youtube', 'client_secret'],
diff --git a/lib/classes/random.php b/lib/classes/random.php
index 07a0980a88..9b6ea4fa29 100644
--- a/lib/classes/random.php
+++ b/lib/classes/random.php
@@ -41,7 +41,7 @@ class random
switch ($row['type']) {
case 'download':
case 'email':
- $file = $this->app['root.path'] . '/tmp/download/' . $row['value'] . '.zip';
+ $file = $this->app['tmp.download.path'].'/'.$row['value'].'.zip';
if (is_file($file))
unlink($file);
break;
diff --git a/lib/classes/set/export.php b/lib/classes/set/export.php
index 1ba6a71f33..6ba4432a2f 100644
--- a/lib/classes/set/export.php
+++ b/lib/classes/set/export.php
@@ -631,8 +631,7 @@ class set_export extends set_abstract
$files[$id]["export_name"] = $tmp_name;
if (in_array('caption', $subdefs)) {
- $caption_dir = $this->app['root.path'] . '/tmp/desc_tmp/'
- . time() . $this->app['authentication']->getUser()->getId() . '/';
+ $caption_dir = $this->app['tmp.caption.path'].'/'.time().$this->app['authentication']->getUser()->getId().'/';
$filesystem->mkdir($caption_dir, 0750);
@@ -653,8 +652,7 @@ class set_export extends set_abstract
}
if (in_array('caption-yaml', $subdefs)) {
- $caption_dir = $this->app['root.path'] . '/tmp/desc_tmp/'
- . time() . $this->app['authentication']->getUser()->getId() . '/';
+ $caption_dir = $this->app['tmp.caption.path'].'/'.time().$this->app['authentication']->getUser()->getId().'/';
$filesystem->mkdir($caption_dir, 0750);
diff --git a/lib/conf.d/bases_structure.xml b/lib/conf.d/bases_structure.xml
index f1ad2be4f4..f87ffc59ba 100644
--- a/lib/conf.d/bases_structure.xml
+++ b/lib/conf.d/bases_structure.xml
@@ -2350,14 +2350,22 @@
-
- completed
- tinyint(4)
-
-
- -1
-
-
+
+ todo
+ int(11)
+
+
+ 0
+
+
+
+ done
+ int(11)
+
+
+ 0
+
+ runnerchar(20)
diff --git a/lib/conf.d/configuration.yml b/lib/conf.d/configuration.yml
index 62be55a741..355ae28797 100644
--- a/lib/conf.d/configuration.yml
+++ b/lib/conf.d/configuration.yml
@@ -72,8 +72,12 @@ main:
swftools_timeout: 60
unoconv_timeout: 60
storage:
- subdefs:
- default-dir: null
+ subdefs: null
+ cache: null
+ log : null
+ download: null
+ lazaret: null
+ caption: null
bridge:
youtube:
enabled: false
@@ -199,3 +203,8 @@ session:
idle: 0
# 1 week
lifetime: 604800
+crossdomain:
+ allow-access-from:
+ -
+ domain: '*.cooliris.com'
+ secure: 'false'
diff --git a/logs/.gitignore b/logs/.gitignore
deleted file mode 100644
index d6b7ef32c8..0000000000
--- a/logs/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-*
-!.gitignore
diff --git a/logs/.gitkeep b/logs/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/lib/Fixtures/exampleImportUsers.csv b/resources/examples/example_import_users.csv
similarity index 100%
rename from lib/Fixtures/exampleImportUsers.csv
rename to resources/examples/example_import_users.csv
diff --git a/lib/Fixtures/Fields.rtf b/resources/examples/fields.rtf
similarity index 100%
rename from lib/Fixtures/Fields.rtf
rename to resources/examples/fields.rtf
diff --git a/config/personnalisation_sample/topics (sample).xml b/resources/examples/topics_sample.xml
similarity index 100%
rename from config/personnalisation_sample/topics (sample).xml
rename to resources/examples/topics_sample.xml
diff --git a/features/bootstrap/FeatureContext.php b/resources/features/bootstrap/FeatureContext.php
similarity index 100%
rename from features/bootstrap/FeatureContext.php
rename to resources/features/bootstrap/FeatureContext.php
diff --git a/features/bootstrap/GuiContext.php b/resources/features/bootstrap/GuiContext.php
similarity index 100%
rename from features/bootstrap/GuiContext.php
rename to resources/features/bootstrap/GuiContext.php
diff --git a/features/login/change_password.feature b/resources/features/login/change_password.feature
similarity index 100%
rename from features/login/change_password.feature
rename to resources/features/login/change_password.feature
diff --git a/features/login/forgot_password.feature b/resources/features/login/forgot_password.feature
similarity index 100%
rename from features/login/forgot_password.feature
rename to resources/features/login/forgot_password.feature
diff --git a/features/login/guest_access.feature b/resources/features/login/guest_access.feature
similarity index 100%
rename from features/login/guest_access.feature
rename to resources/features/login/guest_access.feature
diff --git a/features/login/locale.feature b/resources/features/login/locale.feature
similarity index 100%
rename from features/login/locale.feature
rename to resources/features/login/locale.feature
diff --git a/features/login/login.feature b/resources/features/login/login.feature
similarity index 100%
rename from features/login/login.feature
rename to resources/features/login/login.feature
diff --git a/features/login/register.feature b/resources/features/login/register.feature
similarity index 100%
rename from features/login/register.feature
rename to resources/features/login/register.feature
diff --git a/hudson/InstallDBs.yml b/resources/hudson/InstallDBs.yml
similarity index 100%
rename from hudson/InstallDBs.yml
rename to resources/hudson/InstallDBs.yml
diff --git a/hudson/_GV.php b/resources/hudson/_GV.php
similarity index 100%
rename from hudson/_GV.php
rename to resources/hudson/_GV.php
diff --git a/hudson/ant.xml b/resources/hudson/ant.xml
similarity index 94%
rename from hudson/ant.xml
rename to resources/hudson/ant.xml
index deb47cf7d4..44563e47b1 100644
--- a/hudson/ant.xml
+++ b/resources/hudson/ant.xml
@@ -1,5 +1,5 @@
-
+
diff --git a/hudson/build.properties b/resources/hudson/build.properties
similarity index 100%
rename from hudson/build.properties
rename to resources/hudson/build.properties
diff --git a/hudson/cleanupSubdefs.php b/resources/hudson/cleanupSubdefs.php
similarity index 77%
rename from hudson/cleanupSubdefs.php
rename to resources/hudson/cleanupSubdefs.php
index ca0c55444e..17592f444f 100644
--- a/hudson/cleanupSubdefs.php
+++ b/resources/hudson/cleanupSubdefs.php
@@ -1,8 +1,8 @@
get_databoxes() as $databox) {
$structure = $databox->get_subdef_structure();
diff --git a/hudson/config.json b/resources/hudson/config.json
similarity index 100%
rename from hudson/config.json
rename to resources/hudson/config.json
diff --git a/hudson/connexion.inc b/resources/hudson/connexion.inc
similarity index 100%
rename from hudson/connexion.inc
rename to resources/hudson/connexion.inc
diff --git a/hudson/fixtures.sql b/resources/hudson/fixtures.sql
similarity index 100%
rename from hudson/fixtures.sql
rename to resources/hudson/fixtures.sql
diff --git a/hudson/run-qunit.js b/resources/hudson/run-qunit.js
similarity index 100%
rename from hudson/run-qunit.js
rename to resources/hudson/run-qunit.js
diff --git a/hudson/testJS.sh b/resources/hudson/testJS.sh
similarity index 100%
rename from hudson/testJS.sh
rename to resources/hudson/testJS.sh
diff --git a/resources/proxies/.gitkeep b/resources/proxies/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/vagrant/config/nginx/php5-fpm-www.conf b/resources/vagrant/config/nginx/php5-fpm-www.conf
similarity index 100%
rename from vagrant/config/nginx/php5-fpm-www.conf
rename to resources/vagrant/config/nginx/php5-fpm-www.conf
diff --git a/resources/vagrant/config/phraseanet/configuration.yml b/resources/vagrant/config/phraseanet/configuration.yml
new file mode 100644
index 0000000000..826d002bb1
--- /dev/null
+++ b/resources/vagrant/config/phraseanet/configuration.yml
@@ -0,0 +1,210 @@
+servername: 'http://local.phrasea/'
+languages:
+ available: []
+ default: 'fr'
+main:
+ maintenance: false
+ key: ''
+ database:
+ host: 'sql-host'
+ port: 3306
+ user: 'sql-user'
+ password: 'sql-password'
+ dbname: ab_phraseanet
+ driver: pdo_mysql
+ charset: UTF8
+ database-test:
+ driver: pdo_sqlite
+ path: '/tmp/db.sqlite'
+ charset: UTF8
+ cache:
+ type: ArrayCache
+ options: []
+ opcodecache:
+ type: ArrayCache
+ options: []
+ search-engine:
+ type: Alchemy\Phrasea\SearchEngine\Phrasea\PhraseaEngine
+ options: []
+ task-manager:
+ status: started
+ enabled: true
+ logger:
+ max-files: 10
+ enabled: true
+ level: INFO
+ listener:
+ protocol: tcp
+ host: 127.0.0.1
+ port: 6660
+ linger: 500
+ websocket-server:
+ host: local.phrasea
+ port: 9090
+ ip: 0.0.0.0
+ subscriber:
+ protocol: tcp
+ host: 127.0.0.1
+ port: 13598
+ session:
+ type: 'redis'
+ options:
+ host: localhost
+ port: 6379
+ ttl: 86400
+ binaries:
+ ghostscript_binary: null
+ php_binary: null
+ swf_extract_binary: null
+ pdf2swf_binary: null
+ swf_render_binary: null
+ unoconv_binary: null
+ ffmpeg_binary: null
+ ffprobe_binary: null
+ mp4box_binary: null
+ pdftotext_binary: null
+ recess_binary: null
+ phraseanet_indexer: null
+ ffmpeg_timeout: 3600
+ ffprobe_timeout: 60
+ gs_timeout: 60
+ mp4box_timeout: 60
+ swftools_timeout: 60
+ unoconv_timeout: 60
+ storage:
+ subdefs: null
+ cache: /tmp/phraseanet/cache
+ log : /tmp/phraseanet/log
+ download: /var/www/phraseanet/tmp/download
+ lazaret: /var/www/phraseanet/tmp/lazaret
+ caption: /var/www/phraseanet/tmp/caption
+ bridge:
+ youtube:
+ enabled: false
+ client_id: null
+ client_secret: null
+ developer_key: null
+ flickr:
+ enabled: false
+ client_id: null
+ client_secret: null
+ dailymotion:
+ enabled: false
+ client_id: null
+ client_secret: null
+trusted-proxies: ['127.0.0.1']
+debugger:
+ allowed-ips: ['192.168.56.1']
+border-manager:
+ enabled: true
+ extension-mapping: { }
+ checkers:
+ -
+ type: Checker\Sha256
+ enabled: true
+ -
+ type: Checker\UUID
+ enabled: true
+ -
+ type: Checker\Colorspace
+ enabled: false
+ options:
+ colorspaces: [cmyk, grayscale, rgb]
+ -
+ type: Checker\Dimension
+ enabled: false
+ options:
+ width: 80
+ height: 160
+ -
+ type: Checker\Extension
+ enabled: false
+ options:
+ extensions: [jpg, jpeg, bmp, tif, gif, png, pdf, doc, odt, mpg, mpeg, mov, avi, xls, flv, mp3, mp2]
+ -
+ type: Checker\Filename
+ enabled: false
+ options:
+ sensitive: true
+ -
+ type: Checker\MediaType
+ enabled: false
+ options:
+ mediatypes: [Audio, Document, Flash, Image, Video]
+authentication:
+ auto-create:
+ templates: { }
+ captcha:
+ enabled: true
+ trials-before-display: 9
+ providers:
+ facebook:
+ enabled: false
+ options:
+ app-id: ''
+ secret: ''
+ twitter:
+ enabled: false
+ options:
+ consumer-key: ''
+ consumer-secret: ''
+ google-plus:
+ enabled: false
+ options:
+ client-id: ''
+ client-secret: ''
+ github:
+ enabled: false
+ options:
+ client-id: ''
+ client-secret: ''
+ viadeo:
+ enabled: false
+ options:
+ client-id: ''
+ client-secret: ''
+ linkedin:
+ enabled: false
+ options:
+ client-id: ''
+ client-secret: ''
+registration-fields:
+ -
+ name: company
+ required: true
+ -
+ name: lastname
+ required: true
+ -
+ name: firstname
+ required: true
+ -
+ name: geonameid
+ required: true
+xsendfile:
+ enabled: false
+ type: nginx
+ mapping: []
+h264-pseudo-streaming:
+ enabled: false
+ type: nginx
+ mapping: []
+plugins: []
+api_cors:
+ enabled: false
+ allow_credentials: false
+ allow_origin: []
+ allow_headers: []
+ allow_methods: []
+ expose_headers: []
+ max_age: 0
+ hosts: []
+session:
+ idle: 0
+ # 1 week
+ lifetime: 604800
+crossdomain:
+ allow-access-from:
+ -
+ domain: '*.cooliris.com'
+ secure: 'false'
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/.gitattributes b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/.gitattributes
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/.gitattributes
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/.gitattributes
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml
similarity index 93%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml
index e288891824..bae47fc8ff 100644
--- a/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml
@@ -26,12 +26,12 @@ vagrantfile-local:
cpus: 1
provision:
puppet:
- manifests_path: vagrant/vms/phraseanet-php54-nginx/puphpet/puppet
+ manifests_path: resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet
manifest_file: manifest.pp
- module_path: vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules
+ module_path: resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules
options:
- '--verbose'
- - '--hiera_config /vagrant/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml'
+ - '--hiera_config /vagrant/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml'
- '--parser future'
synced_folder:
KaPfJ4CzfgFk:
@@ -150,12 +150,11 @@ nginx:
proxy_buffers: '4 256k'
vhosts:
issDOx17O4bn:
- server_name: nginx.phraseanet
+ server_name: phraseanet-php54-nginx
server_aliases:
- - nginx.phrasea.net
- - nginx.alchemyasp.com
+ - nginx.phraseanet.php54
www_root: /var/www/phraseanet/www
- listen_port: '8080'
+ listen_port: '80'
index_files:
- index.html
- index.htm
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_aliases b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_aliases
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_aliases
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_aliases
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_git b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_git
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_git
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.bash_git
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.vimrc b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.vimrc
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.vimrc
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.vimrc
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/.gitignore b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/.gitignore
new file mode 100644
index 0000000000..b1394f8ce6
--- /dev/null
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/.gitignore
@@ -0,0 +1,3 @@
+*
+!.gitignore
+!insecure_private_key
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/insecure_private_key b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/insecure_private_key
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/insecure_private_key
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/ssh/insecure_private_key
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/.gitkeep b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup
similarity index 64%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup
index 33b4febd88..5188d5180c 100755
--- a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-always/setup
@@ -9,14 +9,6 @@ sudo iptables -I INPUT -p tcp --dport 9200 -j ACCEPT
# open mysql ports
sudo iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
-#closure
-echo 'export JS_COMPILER=$HOME/closure/compiler.jar' >> ~/.bashrc
-source ~/.bashrc
-
-# java
-echo 'export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/jre/' >> ~/.bashrc
-source ~/.bashrc
-
# locales
export LANGUAGE=fr_FR.UTF-8
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/.gitkeep b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup
similarity index 70%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup
index 1265fe50e0..4978d42fce 100644
--- a/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/exec-once/setup
@@ -5,7 +5,6 @@ sudo sh -c 'echo "Europe/Paris" > /etc/timezone'
sudo dpkg-reconfigure -f noninteractive tzdata
# locales
-
export LANGUAGE=fr_FR.UTF-8
export LANG=fr_FR.UTF-8
export LC_ALL=fr_FR.UTF-8
@@ -31,14 +30,19 @@ sudo npm install -g grunt-cli
sudo npm install -g bower
# python tools
-
sudo easy_install -U taschenmesser scour boto
# closure compiler
cd /tmp
wget –quiet http://dl.google.com/closure-compiler/compiler-latest.zip
unzip compiler-latest.zip -d closure
-mv closure $HOME
+mv /tmp/closure /home/vagrant
+sudo sh -c "echo 'JS_COMPILER=/home/vagrant/closure/compiler.jar' >> /etc/environment"
+export JS_COMPILER=/home/vagrant/closure/compiler.jar
+
+# java
+sudo sh -c "echo 'JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/jre/' >> /etc/environment"
+export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64/jre/
#twig
cd /tmp
@@ -102,7 +106,25 @@ fi
sudo sh -c 'echo "RUN=yes" > /etc/default/cachefilesd'
# copy www.conf
-sudo sh -c "cat /vagrant/vagrant/config/nginx/php5-fpm-www.conf > /etc/php5/fpm/pool.d/www.conf"
+sudo sh -c "cat /vagrant/resources/vagrant/config/nginx/php5-fpm-www.conf > /etc/php5/fpm/pool.d/www.conf"
-# restart mysql to get new date system
+#setup phraseanet
+if [ ! -f /var/www/phraseanet/config/configuration.yml ]
+then
+ #copy configuration template
+ mv /var/www/phraseanet/lib/conf.d/configuration.yml /var/www/phraseanet/lib/conf.d/configuration.yml.bkp
+ cp /vagrant/resources/vagrant/config/phraseanet/configuration.yml /var/www/phraseanet/lib/conf.d/configuration.yml
+ cd /var/www/phraseanet
+ composer install -n --prefer-source --dev
+ npm install
+ grunt install-assets
+ bin/developer assets:compile-less
+ rm -f /var/www/phraseanet/lib/conf.d/configuration.yml
+ mv /var/www/phraseanet/lib/conf.d/configuration.yml.bkp /var/www/phraseanet/lib/conf.d/configuration.yml
+fi
+
+# restart services
sudo service mysql restart
+sudo service php5-fpm restart
+sudo service nginx restart
+
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/startup-always/.gitkeep b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/startup-always/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/startup-once/.gitkeep b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/startup-once/.gitkeep
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/Puppetfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/Puppetfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/Puppetfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/Puppetfile
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml
new file mode 100644
index 0000000000..99bde24b12
--- /dev/null
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/hiera.yaml
@@ -0,0 +1,7 @@
+---
+:backends: yaml
+:yaml:
+ :datadir: '/vagrant/resources/vagrant/vms/phraseanet-php54-nginx/puphpet'
+:hierarchy:
+ - config
+:logger: console
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/manifest.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/manifest.pp
similarity index 99%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/manifest.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/manifest.pp
index 9b15bc3bb8..8ddc804dd7 100644
--- a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/manifest.pp
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/manifest.pp
@@ -40,10 +40,10 @@ file { "/home/${::ssh_username}":
# copy dot files to ssh user's home directory
exec { 'dotfiles':
cwd => "/home/${::ssh_username}",
- command => "cp -r /vagrant/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.[a-zA-Z0-9]* /home/${::ssh_username}/ \
+ command => "cp -r /vagrant/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.[a-zA-Z0-9]* /home/${::ssh_username}/ \
&& chown -R ${::ssh_username} /home/${::ssh_username}/.[a-zA-Z0-9]* \
- && cp -r /vagrant/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.[a-zA-Z0-9]* /root/",
- onlyif => 'test -d /vagrant/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot',
+ && cp -r /vagrant/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot/.[a-zA-Z0-9]* /root/",
+ onlyif => 'test -d /vagrant/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/files/dot',
returns => [0, 1],
require => User[$::ssh_username]
}
@@ -372,7 +372,7 @@ if is_hash($firewall_values['rules']) and count($firewall_values['rules']) > 0 {
## Begin Apache manifest
if $yaml_values == undef {
- $yaml_values = loadyaml('/vagrant/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml')
+ $yaml_values = loadyaml('/vagrant/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/config.yaml')
} if $apache_values == undef {
$apache_values = $yaml_values['apache']
} if $php_values == undef {
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.puppet-lint.rc b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.puppet-lint.rc
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.puppet-lint.rc
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.puppet-lint.rc
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CONTRIBUTING.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CONTRIBUTING.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CONTRIBUTING.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/CONTRIBUTING.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.passenger.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.passenger.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.passenger.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/README.passenger.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/files/httpd b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/files/httpd
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/files/httpd
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/files/httpd
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/a2mod.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/a2mod.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/a2mod.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/a2mod.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/gentoo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/gentoo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/gentoo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/gentoo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/modfix.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/modfix.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/modfix.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/modfix.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/redhat.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/redhat.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/redhat.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/provider/a2mod/redhat.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/type/a2mod.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/type/a2mod.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/type/a2mod.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/lib/puppet/type/a2mod.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancer.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancer.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancer.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancer.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancermember.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancermember.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancermember.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/balancermember.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/confd/no_accf.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/confd/no_accf.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/confd/no_accf.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/confd/no_accf.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_confd_files.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_confd_files.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_confd_files.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_confd_files.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods/load.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods/load.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods/load.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/default_mods/load.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/dev.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/dev.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/dev.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/dev.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/listen.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/listen.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/listen.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/listen.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/actions.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/actions.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/actions.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/actions.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/alias.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/alias.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/alias.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/alias.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_basic.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_basic.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_basic.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_basic.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_kerb.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_kerb.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_kerb.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/auth_kerb.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/authnz_ldap.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/authnz_ldap.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/authnz_ldap.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/authnz_ldap.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/autoindex.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/autoindex.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/autoindex.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/autoindex.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cache.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cache.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cache.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cache.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgi.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgi.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgi.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgi.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgid.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgid.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgid.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/cgid.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_fs.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_fs.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_fs.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_fs.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_svn.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_svn.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_svn.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dav_svn.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/deflate.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/deflate.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/deflate.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/deflate.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dev.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dev.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dev.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dev.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dir.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dir.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dir.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/dir.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/disk_cache.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/disk_cache.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/disk_cache.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/disk_cache.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/event.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/event.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/event.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/event.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/expires.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/expires.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/expires.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/expires.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fastcgi.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fastcgi.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fastcgi.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fastcgi.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fcgid.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fcgid.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fcgid.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/fcgid.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/headers.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/headers.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/headers.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/headers.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/include.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/include.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/include.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/include.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/info.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/info.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/info.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/info.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/itk.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/itk.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/itk.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/itk.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ldap.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ldap.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ldap.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ldap.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime_magic.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime_magic.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime_magic.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/mime_magic.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/negotiation.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/negotiation.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/negotiation.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/negotiation.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/nss.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/nss.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/nss.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/nss.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/pagespeed.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/pagespeed.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/pagespeed.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/pagespeed.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/passenger.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/passenger.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/passenger.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/passenger.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/perl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/perl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/perl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/perl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/peruser.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/peruser.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/peruser.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/peruser.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/php.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/php.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/php.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/php.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/prefork.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/prefork.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/prefork.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/prefork.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_ajp.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_ajp.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_ajp.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_ajp.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_balancer.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_balancer.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_balancer.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_balancer.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_html.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_html.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_html.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_html.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_http.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_http.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_http.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/proxy_http.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/python.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/python.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/python.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/python.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/reqtimeout.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/reqtimeout.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/reqtimeout.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/reqtimeout.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rewrite.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rewrite.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rewrite.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rewrite.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rpaf.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rpaf.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rpaf.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/rpaf.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/setenvif.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/setenvif.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/setenvif.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/setenvif.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/speling.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/speling.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/speling.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/speling.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ssl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ssl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ssl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/ssl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/status.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/status.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/status.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/status.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suexec.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suexec.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suexec.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suexec.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suphp.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suphp.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suphp.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/suphp.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/userdir.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/userdir.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/userdir.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/userdir.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/vhost_alias.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/vhost_alias.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/vhost_alias.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/vhost_alias.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/worker.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/worker.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/worker.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/worker.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/wsgi.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/wsgi.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/wsgi.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/wsgi.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/xsendfile.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/xsendfile.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/xsendfile.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mod/xsendfile.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mpm.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mpm.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mpm.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/mpm.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/namevirtualhost.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/namevirtualhost.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/namevirtualhost.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/namevirtualhost.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/package.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/package.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/package.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/package.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/multiplexer.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/multiplexer.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/multiplexer.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/multiplexer.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/processor.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/processor.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/processor.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/peruser/processor.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/php.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/php.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/php.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/php.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/proxy.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/proxy.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/proxy.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/proxy.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/python.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/python.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/python.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/python.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/ssl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/ssl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/ssl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/ssl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/version.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/version.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/version.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/version.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/vhost.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/vhost.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/vhost.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/manifests/vhost.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_parameters_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_parameters_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_parameters_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_parameters_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_ssl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_ssl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_ssl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/apache_ssl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/basic_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/basic_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/basic_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/basic_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/class_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/class_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/class_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/class_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/default_mods_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/default_mods_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/default_mods_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/default_mods_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/itk_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/itk_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/itk_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/itk_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_dav_svn_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_dav_svn_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_dav_svn_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_dav_svn_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_deflate_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_deflate_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_deflate_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_deflate_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_fcgid_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_fcgid_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_fcgid_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_fcgid_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_mime_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_mime_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_mime_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_mime_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_pagespeed_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_pagespeed_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_pagespeed_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_pagespeed_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_passenger_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_passenger_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_passenger_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_passenger_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_php_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_php_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_php_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_php_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_proxy_html_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_proxy_html_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_proxy_html_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_proxy_html_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_suphp_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_suphp_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_suphp_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/mod_suphp_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-59-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-59-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-59-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-59-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-65-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-65-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-65-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/centos-65-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-607-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-607-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-607-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-607-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-70rc1-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-70rc1-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-70rc1-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-70rc1-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-i386.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-i386.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-i386.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-i386.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/debian-73-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/fedora-18-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/fedora-18-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/fedora-18-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/fedora-18-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/sles-11sp1-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/sles-11sp1-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/sles-11sp1-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/sles-11sp1-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/prefork_worker_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/prefork_worker_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/prefork_worker_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/prefork_worker_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/service_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/service_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/service_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/service_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/unsupported_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/unsupported_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/unsupported_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/unsupported_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/vhost_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/vhost_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/vhost_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/acceptance/vhost_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/apache_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/apache_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/apache_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/apache_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/dev_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/dev_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/dev_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/dev_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/auth_kerb_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/auth_kerb_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/auth_kerb_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/auth_kerb_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/authnz_ldap_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/authnz_ldap_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/authnz_ldap_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/authnz_ldap_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dav_svn_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dav_svn_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dav_svn_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dav_svn_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/deflate_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/deflate_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/deflate_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/deflate_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dev_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dev_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dev_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dev_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dir_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dir_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dir_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/dir_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/event_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/event_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/event_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/event_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fastcgi_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fastcgi_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fastcgi_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fastcgi_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fcgid_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fcgid_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fcgid_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/fcgid_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/info_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/info_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/info_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/info_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/itk_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/itk_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/itk_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/itk_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_magic_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_magic_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_magic_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_magic_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/mime_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/pagespeed_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/pagespeed_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/pagespeed_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/pagespeed_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/passenger_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/passenger_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/passenger_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/passenger_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/perl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/perl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/perl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/perl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/peruser_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/peruser_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/peruser_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/peruser_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/php_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/php_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/php_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/php_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/prefork_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/prefork_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/prefork_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/prefork_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/proxy_html_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/proxy_html_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/proxy_html_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/proxy_html_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/python_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/python_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/python_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/python_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/rpaf_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/rpaf_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/rpaf_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/rpaf_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/speling_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/speling_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/speling_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/speling_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/ssl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/ssl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/ssl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/ssl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/status_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/status_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/status_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/status_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/suphp_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/suphp_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/suphp_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/suphp_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/worker_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/worker_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/worker_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/worker_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/wsgi_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/wsgi_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/wsgi_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/mod/wsgi_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/service_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/service_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/service_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/classes/service_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/mod_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/mod_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/mod_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/mod_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/vhost_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/vhost_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/vhost_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/defines/vhost_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/files/spec b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/files/spec
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/files/spec
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/files/spec
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/fixtures/modules/site_apache/templates/fake.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/unit/provider/a2mod/gentoo_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/unit/provider/a2mod/gentoo_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/unit/provider/a2mod/gentoo_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/spec/unit/provider/a2mod/gentoo_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/confd/no-accf.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/confd/no-accf.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/confd/no-accf.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/confd/no-accf.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/httpd.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/httpd.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/httpd.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/httpd.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/listen.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/listen.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/listen.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/listen.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/alias.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/alias.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/alias.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/alias.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/authnz_ldap.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/authnz_ldap.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/authnz_ldap.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/authnz_ldap.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/autoindex.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/autoindex.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/autoindex.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/autoindex.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/cgid.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/cgid.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/cgid.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/cgid.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dav_fs.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dav_fs.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dav_fs.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dav_fs.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/deflate.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/deflate.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/deflate.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/deflate.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dir.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dir.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dir.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/dir.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/disk_cache.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/disk_cache.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/disk_cache.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/disk_cache.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/event.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/event.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/event.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/event.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fastcgi.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fastcgi.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fastcgi.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fastcgi.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fcgid.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fcgid.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fcgid.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/fcgid.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/info.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/info.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/info.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/info.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/itk.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/itk.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/itk.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/itk.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ldap.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ldap.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ldap.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ldap.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/load.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/load.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/load.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/load.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime_magic.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime_magic.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime_magic.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mime_magic.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mpm_event.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mpm_event.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mpm_event.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/mpm_event.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/negotiation.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/negotiation.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/negotiation.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/negotiation.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/nss.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/nss.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/nss.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/nss.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/pagespeed.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/pagespeed.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/pagespeed.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/pagespeed.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/passenger.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/passenger.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/passenger.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/passenger.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/peruser.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/peruser.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/peruser.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/peruser.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/php5.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/php5.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/php5.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/php5.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/prefork.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/prefork.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/prefork.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/prefork.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy_html.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy_html.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy_html.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/proxy_html.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/reqtimeout.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/reqtimeout.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/reqtimeout.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/reqtimeout.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/rpaf.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/rpaf.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/rpaf.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/rpaf.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/setenvif.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/setenvif.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/setenvif.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/setenvif.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ssl.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ssl.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ssl.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/ssl.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/status.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/status.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/status.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/status.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/suphp.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/suphp.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/suphp.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/suphp.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/userdir.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/userdir.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/userdir.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/userdir.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/worker.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/worker.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/worker.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/worker.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/wsgi.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/wsgi.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/wsgi.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/mod/wsgi.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/namevirtualhost.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/namevirtualhost.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/namevirtualhost.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/namevirtualhost.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/ports_header.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/ports_header.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/ports_header.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/ports_header.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_action.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_action.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_action.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_action.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_aliases.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_aliases.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_aliases.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_aliases.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_block.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_block.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_block.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_block.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_custom_fragment.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_custom_fragment.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_custom_fragment.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_custom_fragment.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_directories.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_directories.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_directories.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_directories.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_error_document.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_error_document.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_error_document.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_error_document.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_fastcgi.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_fastcgi.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_fastcgi.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_fastcgi.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_header.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_header.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_header.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_header.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_itk.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_itk.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_itk.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_itk.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_php_admin.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_php_admin.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_php_admin.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_php_admin.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_proxy.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_proxy.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_proxy.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_proxy.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rack.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rack.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rack.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rack.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_redirect.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_redirect.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_redirect.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_redirect.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_requestheader.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_requestheader.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_requestheader.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_requestheader.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rewrite.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rewrite.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rewrite.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_rewrite.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_scriptalias.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_scriptalias.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_scriptalias.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_scriptalias.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_serveralias.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_serveralias.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_serveralias.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_serveralias.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_setenv.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_setenv.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_setenv.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_setenv.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_ssl.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_ssl.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_ssl.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_ssl.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suexec.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suexec.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suexec.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suexec.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suphp.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suphp.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suphp.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_suphp.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_wsgi.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_wsgi.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_wsgi.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/templates/vhost/_wsgi.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/apache.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/apache.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/apache.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/apache.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/dev.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/dev.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/dev.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/dev.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mod_load_params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mod_load_params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mod_load_params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mod_load_params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods_custom.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods_custom.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods_custom.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/mods_custom.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/php.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/php.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/php.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/php.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_directories.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_directories.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_directories.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_directories.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ip_based.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ip_based.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ip_based.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ip_based.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ssl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ssl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ssl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhost_ssl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhosts_without_listen.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhosts_without_listen.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhosts_without_listen.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apache/tests/vhosts_without_listen.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.project b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.project
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.project
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.project
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.puppet-lint.rc b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.puppet-lint.rc
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.puppet-lint.rc
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.puppet-lint.rc
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/backports.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/backports.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/backports.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/backports.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/builddep.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/builddep.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/builddep.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/builddep.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/conf.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/conf.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/conf.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/conf.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/testing.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/testing.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/testing.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/testing.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/unstable.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/unstable.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/unstable.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/debian/unstable.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/force.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/force.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/force.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/force.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/key.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/key.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/key.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/key.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/pin.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/pin.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/pin.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/pin.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/ppa.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/ppa.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/ppa.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/ppa.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/release.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/release.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/release.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/release.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/source.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/source.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/source.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/source.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/unattended_upgrades.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/unattended_upgrades.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/unattended_upgrades.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/unattended_upgrades.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/update.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/update.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/update.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/manifests/update.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_builddep_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_builddep_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_builddep_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_builddep_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_key_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_key_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_key_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_key_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_ppa_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_ppa_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_ppa_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_ppa_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_source_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_source_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_source_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_source_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/apt_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/backports_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/backports_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/backports_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/backports_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/class_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/class_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/class_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/class_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/conf_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/conf_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/conf_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/conf_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/force_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/force_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/force_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/force_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/debian-70rc1-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/pin_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/pin_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/pin_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/pin_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/release_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/release_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/release_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/release_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unattended_upgrade_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unattended_upgrade_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unattended_upgrade_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unattended_upgrade_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unsupported_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unsupported_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unsupported_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/acceptance/unsupported_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/apt_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/apt_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/apt_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/apt_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/backports_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/backports_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/backports_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/backports_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_testing_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_testing_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_testing_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_testing_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_unstable_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_unstable_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_unstable_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/debian_unstable_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/release_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/release_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/release_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/release_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/unattended_upgrades_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/unattended_upgrades_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/unattended_upgrades_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/classes/unattended_upgrades_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/builddep_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/builddep_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/builddep_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/builddep_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/conf_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/conf_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/conf_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/conf_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/force_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/force_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/force_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/force_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/key_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/key_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/key_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/key_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/pin_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/pin_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/pin_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/pin_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/ppa_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/ppa_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/ppa_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/ppa_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/source_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/source_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/source_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/defines/source_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/10periodic.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/10periodic.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/10periodic.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/10periodic.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/50unattended-upgrades.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/50unattended-upgrades.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/50unattended-upgrades.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/50unattended-upgrades.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/pin.pref.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/pin.pref.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/pin.pref.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/pin.pref.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/source.list.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/source.list.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/source.list.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/templates/source.list.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/builddep.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/builddep.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/builddep.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/builddep.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/testing.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/testing.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/testing.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/testing.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/unstable.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/unstable.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/unstable.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/debian/unstable.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/force.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/force.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/force.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/force.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/key.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/key.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/key.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/key.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/pin.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/pin.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/pin.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/pin.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/ppa.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/ppa.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/ppa.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/ppa.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/release.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/release.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/release.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/release.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/source.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/source.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/source.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/source.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/unattended_upgrades.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/unattended_upgrades.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/unattended_upgrades.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/apt/tests/unattended_upgrades.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/run-tests.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/run-tests.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/run-tests.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/run-tests.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/defines/config_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/defines/config_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/defines/config_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/defines/config_spec.rb
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/manifests/site.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/manifests/site.pp
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/debian/beanstalkd_default.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/debian/beanstalkd_default.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/debian/beanstalkd_default.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/debian/beanstalkd_default.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/fixtures/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/debian/beanstalkd_default.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/debian/beanstalkd_default.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/debian/beanstalkd_default.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/debian/beanstalkd_default.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/beanstalkd/templates/redhat/beanstalkd_sysconfig.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/lib/facter/composer_home.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/lib/facter/composer_home.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/lib/facter/composer_home.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/lib/facter/composer_home.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/exec.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/exec.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/exec.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/exec.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/project.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/project.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/project.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/manifests/project.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/classes/composer_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_exec_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_exec_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_exec_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_exec_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_project_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_project_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_project_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/defines/composer_project_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/fixtures/manifests/site.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/fixtures/manifests/site.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/fixtures/manifests/site.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/fixtures/manifests/site.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/templates/exec.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/templates/exec.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/templates/exec.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/templates/exec.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/project.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/project.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/project.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/composer/tests/project.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.gitattributes b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.gitattributes
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.gitattributes
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.gitattributes
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/CHANGELOG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/CHANGELOG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/CHANGELOG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/CHANGELOG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/files/concatfragments.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/lib/facter/concat_basedir.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/lib/facter/concat_basedir.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/lib/facter/concat_basedir.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/lib/facter/concat_basedir.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/fragment.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/fragment.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/fragment.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/fragment.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/setup.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/setup.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/setup.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/manifests/setup.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/backup_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/backup_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/backup_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/backup_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/concat_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/concat_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/concat_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/concat_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/deprecation_warnings_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/deprecation_warnings_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/deprecation_warnings_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/deprecation_warnings_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/empty_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/empty_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/empty_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/empty_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/fragment_source_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/fragment_source_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/fragment_source_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/fragment_source_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/newline_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/newline_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/newline_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/newline_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/aix-71-vcloud.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/aix-71-vcloud.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/aix-71-vcloud.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/aix-71-vcloud.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-59-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-607-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-70rc1-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-73-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-73-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-73-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/debian-73-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/fedora-18-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/sles-11sp1-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/order_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/order_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/order_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/order_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/quoted_paths_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/quoted_paths_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/quoted_paths_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/quoted_paths_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/replace_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/replace_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/replace_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/replace_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/symbolic_name_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/symbolic_name_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/symbolic_name_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/symbolic_name_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/warn_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/warn_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/warn_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/acceptance/warn_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/classes/concat_setup_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/classes/concat_setup_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/classes/concat_setup_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/classes/concat_setup_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_fragment_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_fragment_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_fragment_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_fragment_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/defines/concat_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/facts/concat_basedir_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/facts/concat_basedir_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/facts/concat_basedir_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/spec/unit/facts/concat_basedir_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/fragment.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/fragment.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/fragment.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/fragment.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/concat/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/Puppetfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/Puppetfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/Puppetfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/Puppetfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/README b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/README
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/README
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/README
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/apt.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/apt.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/apt.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/apt.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dis.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dis.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dis.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dis.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/dl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/en.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/en.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/en.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/en.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git/drush.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git/drush.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git/drush.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/git/drush.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/make.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/make.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/make.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/make.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/run.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/run.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/run.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/run.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/status.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/status.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/status.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/manifests/status.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/.module b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/.module
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/.module
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/.module
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/Vagrantfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/Vagrantfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/Vagrantfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/Vagrantfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/test.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/test.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/test.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/test.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/vagrant_test.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/vagrant_test.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/vagrant_test.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/.ci/vagrant_test.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/apt.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/apt.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/apt.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/apt.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/defaults.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/defaults.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/defaults.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/defaults.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dis.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dis.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dis.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dis.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/dl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/en.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/en.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/en.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/en.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git/drush.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git/drush.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git/drush.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/git/drush.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/make.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/make.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/make.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/make.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/run.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/run.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/run.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/run.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/status.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/status.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/status.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/drush/tests/status.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CHANGELOG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CHANGELOG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CHANGELOG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CHANGELOG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTING.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTING.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTING.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTING.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTORS b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTORS
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTORS
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/CONTRIBUTORS
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/java.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/java.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/java.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/java.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/package.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/package.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/package.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/package.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/plugin.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/plugin.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/plugin.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/plugin.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/python.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/python.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/python.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/python.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/ruby.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/ruby.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/ruby.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/ruby.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/service/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/template.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/template.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/template.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/manifests/template.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/001_elasticsearch_init_debian_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/001_elasticsearch_init_debian_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/001_elasticsearch_init_debian_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/001_elasticsearch_init_debian_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/002_elasticsearch_init_redhat_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/002_elasticsearch_init_redhat_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/002_elasticsearch_init_redhat_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/002_elasticsearch_init_redhat_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/003_elasticsearch_init_unknown_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/003_elasticsearch_init_unknown_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/003_elasticsearch_init_unknown_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/003_elasticsearch_init_unknown_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/004_elasticsearch_init_config_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/004_elasticsearch_init_config_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/004_elasticsearch_init_config_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/004_elasticsearch_init_config_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/005_elasticsearch_java_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/005_elasticsearch_java_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/005_elasticsearch_java_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/classes/005_elasticsearch_java_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/001_elasticsearch_python_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/001_elasticsearch_python_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/001_elasticsearch_python_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/001_elasticsearch_python_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/002_elasticsearch_ruby_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/002_elasticsearch_ruby_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/002_elasticsearch_ruby_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/002_elasticsearch_ruby_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/003_elasticsearch_template_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/003_elasticsearch_template_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/003_elasticsearch_template_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/003_elasticsearch_template_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/004_elasticsearch_plugin_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/004_elasticsearch_plugin_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/004_elasticsearch_plugin_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/defines/004_elasticsearch_plugin_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/parser_validate_task.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/parser_validate_task.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/parser_validate_task.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/parser_validate_task.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/template_check_task.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/template_check_task.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/template_check_task.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/lib/template_check_task.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/elasticsearch/elasticsearch.yml.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/elasticsearch/elasticsearch.yml.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/elasticsearch/elasticsearch.yml.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/elasticsearch/elasticsearch.yml.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.Debian.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.Debian.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.Debian.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.Debian.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/init.d/elasticsearch.RedHat.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/elasticsearch/templates/etc/sysconfig/defaults.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._files b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._files
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._files
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._files
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._lib b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._lib
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._lib
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._lib
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._manifests b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._manifests
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._manifests
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._manifests
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._spec b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._spec
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._spec
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._spec
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._tests b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._tests
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._tests
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/._tests
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-5 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-5
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-5
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-5
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-6 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-6
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-6
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-6
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-7 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-7
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-7
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/._RPM-GPG-KEY-EPEL-7
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-5 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-5
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-5
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-5
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-6 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-6
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-6
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-6
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-7 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-7
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-7
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/files/RPM-GPG-KEY-EPEL-7
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/._facter b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/._facter
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/._facter
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/._facter
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/._os_maj_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/._os_maj_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/._os_maj_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/._os_maj_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/os_maj_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/os_maj_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/os_maj_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/lib/facter/os_maj_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._rpm_gpg_key.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._rpm_gpg_key.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._rpm_gpg_key.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/._rpm_gpg_key.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/rpm_gpg_key.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/rpm_gpg_key.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/rpm_gpg_key.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/manifests/rpm_gpg_key.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._classes b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._classes
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._classes
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._classes
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._defines b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._defines
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._defines
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._defines
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper_system.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper_system.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper_system.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._spec_helper_system.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._system b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._system
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._system
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._system
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._unit b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._unit
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._unit
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/._unit
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._epel_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._epel_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._epel_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._epel_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_base.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_base.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_base.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_base.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_debuginfo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_debuginfo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_debuginfo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_debuginfo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_gpgkey.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_gpgkey.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_gpgkey.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_gpgkey.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_source.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_source.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_source.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_source.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_debuginfo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_debuginfo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_debuginfo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_debuginfo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_source.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_source.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_source.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/._shared_testing_source.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/epel_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/epel_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/epel_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/epel_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_base.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_base.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_base.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_base.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_debuginfo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_debuginfo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_debuginfo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_debuginfo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_gpgkey.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_gpgkey.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_gpgkey.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_gpgkey.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_source.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_source.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_source.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_source.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_debuginfo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_debuginfo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_debuginfo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_debuginfo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_source.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_source.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_source.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/classes/shared_testing_source.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/._rpm_gpg_key_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/._rpm_gpg_key_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/._rpm_gpg_key_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/._rpm_gpg_key_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/rpm_gpg_key_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/rpm_gpg_key_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/rpm_gpg_key_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/defines/rpm_gpg_key_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper_system.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper_system.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper_system.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/spec_helper_system.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._basic_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._basic_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._basic_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._basic_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._usage_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._usage_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._usage_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/._usage_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/basic_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/basic_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/basic_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/basic_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/usage_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/usage_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/usage_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/system/usage_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/._facter b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/._facter
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/._facter
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/._facter
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/._os_maj_version_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/._os_maj_version_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/._os_maj_version_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/._os_maj_version_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/os_maj_version_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/os_maj_version_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/os_maj_version_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/spec/unit/facter/os_maj_version_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/._init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/._init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/._init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/._init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/epel/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.rspec b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.rspec
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.rspec
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.rspec
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile.lock b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile.lock
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile.lock
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Gemfile.lock
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/apt.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/apt.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/apt.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/apt.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/yum.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/yum.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/yum.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/manifests/repo/yum.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/classes/erlang_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/classes/erlang_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/classes/erlang_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/classes/erlang_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper_system.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper_system.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper_system.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/spec_helper_system.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/system/erlang_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/system/erlang_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/system/erlang_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/erlang/spec/system/erlang_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CONTRIBUTING.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CONTRIBUTING.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CONTRIBUTING.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/CONTRIBUTING.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/ip6tables_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/ip6tables_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/ip6tables_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/ip6tables_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_persistent_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_persistent_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_persistent_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_persistent_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/facter/iptables_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/ip6tables.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/ip6tables.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/ip6tables.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/ip6tables.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/iptables.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/iptables.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/iptables.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewall/iptables.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewallchain/iptables_chain.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewallchain/iptables_chain.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewallchain/iptables_chain.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/provider/firewallchain/iptables_chain.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewall.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewall.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewall.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewall.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewallchain.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewallchain.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewallchain.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/type/firewallchain.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/firewall.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/firewall.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/firewall.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/firewall.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/ipcidr.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/ipcidr.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/ipcidr.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/lib/puppet/util/ipcidr.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/archlinux.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/archlinux.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/archlinux.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/archlinux.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/debian.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/debian.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/debian.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/debian.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/redhat.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/redhat.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/redhat.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/manifests/linux/redhat.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/change_source_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/change_source_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/change_source_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/change_source_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/class_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/class_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/class_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/class_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connlimit_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connlimit_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connlimit_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connlimit_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connmark_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connmark_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connmark_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/connmark_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewall_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewall_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewall_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewall_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewallchain_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewallchain_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewallchain_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/firewallchain_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/ip6_fragment_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/ip6_fragment_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/ip6_fragment_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/ip6_fragment_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/isfragment_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/isfragment_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/isfragment_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/isfragment_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-59-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-fusion.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-607-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/debian-70rc1-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/fedora-18-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/sles-11sp1-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/purge_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/purge_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/purge_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/purge_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/resource_cmd_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/resource_cmd_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/resource_cmd_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/resource_cmd_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/rules_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/rules_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/rules_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/rules_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/socket_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/socket_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/socket_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/socket_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/standard_usage_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/standard_usage_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/standard_usage_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/acceptance/standard_usage_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/ip6tables/conversion_hash.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/ip6tables/conversion_hash.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/ip6tables/conversion_hash.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/ip6tables/conversion_hash.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/iptables/conversion_hash.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/iptables/conversion_hash.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/iptables/conversion_hash.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/fixtures/iptables/conversion_hash.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_archlinux_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_archlinux_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_archlinux_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_archlinux_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_debian_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_debian_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_debian_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_debian_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_redhat_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_redhat_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_redhat_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_redhat_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_linux_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/classes/firewall_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_persistent_version_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_persistent_version_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_persistent_version_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_persistent_version_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/facter/iptables_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_chain_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_chain_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_chain_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_chain_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/provider/iptables_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewall_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewall_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewall_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewall_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewallchain_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewallchain_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewallchain_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/type/firewallchain_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/firewall_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/firewall_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/firewall_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/firewall_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/ipcidr_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/ipcidr_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/ipcidr_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/firewall/spec/unit/puppet/util/ipcidr_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/CHANGELOG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/CHANGELOG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/CHANGELOG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/CHANGELOG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/files/subtree/bash_completion.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/files/subtree/bash_completion.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/files/subtree/bash_completion.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/files/subtree/bash_completion.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_exec_path.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_exec_path.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_exec_path.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_exec_path.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/lib/facter/git_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/gitosis.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/gitosis.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/gitosis.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/gitosis.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/subtree.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/subtree.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/subtree.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/manifests/subtree.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/classes/git_subtree_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/classes/git_subtree_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/classes/git_subtree_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/classes/git_subtree_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/gitosis.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/gitosis.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/gitosis.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/gitosis.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/git/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/package.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/package.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/package.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/package.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/classes/mailcatcher_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/classes/mailcatcher_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/classes/mailcatcher_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/classes/mailcatcher_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/templates/etc/init/mailcatcher.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/templates/etc/init/mailcatcher.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/templates/etc/init/mailcatcher.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/templates/etc/init/mailcatcher.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mailcatcher/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/CHANGELOG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/CHANGELOG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/CHANGELOG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/CHANGELOG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/parser/functions/mongodb_password.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/parser/functions/mongodb_password.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/parser/functions/mongodb_password.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/parser/functions/mongodb_password.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_database/mongodb.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_database/mongodb.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_database/mongodb.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_database/mongodb.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_replset/mongo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_replset/mongo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_replset/mongo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_replset/mongo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_user/mongodb.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_user/mongodb.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_user/mongodb.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/provider/mongodb_user/mongodb.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_database.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_database.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_database.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_database.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_replset.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_replset.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_replset.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_replset.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_user.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_user.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_user.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/lib/puppet/type/mongodb_user.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/client/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/db.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/db.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/db.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/db.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/globals.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/globals.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/globals.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/globals.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/replset.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/replset.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/replset.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/replset.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/apt.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/apt.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/apt.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/apt.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/yum.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/yum.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/yum.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/repo/yum.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/manifests/server/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-6-vcloud.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-6-vcloud.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-6-vcloud.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-6-vcloud.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/fedora-18-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/fedora-18-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/fedora-18-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/fedora-18-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-6-vcloud.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-6-vcloud.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-6-vcloud.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-6-vcloud.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/multi-centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/sles-11-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/sles-11-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/sles-11-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/sles-11-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/replset_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/replset_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/replset_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/replset_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/acceptance/server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/client_install_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/client_install_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/client_install_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/client_install_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/repo_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/repo_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/repo_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/repo_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_config_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_config_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_config_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_config_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_install_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_install_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_install_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_install_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/classes/server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/defines/db_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/defines/db_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/defines/db_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/defines/db_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_system.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_system.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_system.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/spec_helper_system.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/mongodb_password_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/mongodb_password_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/mongodb_password_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/mongodb_password_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_database/mongodb_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_database/mongodb_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_database/mongodb_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_database/mongodb_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_replset/mongodb_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_replset/mongodb_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_replset/mongodb_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_replset/mongodb_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_user/mongodb_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_user/mongodb_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_user/mongodb_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/provider/mongodb_user/mongodb_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_database_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_database_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_database_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_database_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_replset_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_replset_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_replset_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_replset_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_user_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_user_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_user_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/spec/unit/puppet/type/mongodb_user_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/templates/mongodb.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/templates/mongodb.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/templates/mongodb.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/templates/mongodb.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/globals.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/globals.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/globals.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/globals.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/replicaset.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/replicaset.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/replicaset.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/replicaset.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mongodb/tests/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/TODO b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/TODO
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/TODO
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/TODO
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/files/mysqltuner.pl b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/files/mysqltuner.pl
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/files/mysqltuner.pl
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/files/mysqltuner.pl
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_deepmerge.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_deepmerge.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_deepmerge.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_deepmerge.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_password.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_password.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_password.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_password.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_strip_hash.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_strip_hash.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_strip_hash.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/parser/functions/mysql_strip_hash.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database/mysql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database/mysql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database/mysql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database/mysql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_grant/mysql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_grant/mysql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_grant/mysql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_grant/mysql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_user/mysql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_user/mysql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_user/mysql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/database_user/mysql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_database/mysql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_database/mysql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_database/mysql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_database/mysql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_grant/mysql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_grant/mysql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_grant/mysql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_grant/mysql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_user/mysql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_user/mysql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_user/mysql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/provider/mysql_user/mysql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_grant.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_grant.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_grant.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_grant.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_user.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_user.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_user.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/database_user.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_database.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_database.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_database.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_database.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_grant.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_grant.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_grant.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_grant.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_user.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_user.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_user.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/lib/puppet/type/mysql_user.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/backup.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/backup.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/backup.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/backup.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/java.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/java.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/java.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/java.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/perl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/perl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/perl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/perl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/php.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/php.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/php.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/php.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/python.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/python.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/python.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/python.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/ruby.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/ruby.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/ruby.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/bindings/ruby.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/client/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/db.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/db.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/db.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/db.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/account_security.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/account_security.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/account_security.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/account_security.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/backup.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/backup.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/backup.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/backup.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/monitor.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/monitor.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/monitor.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/monitor.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/mysqltuner.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/mysqltuner.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/mysqltuner.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/mysqltuner.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/providers.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/providers.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/providers.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/providers.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/root_password.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/root_password.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/root_password.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/root_password.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/manifests/server/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_account_delete_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_account_delete_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_account_delete_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_account_delete_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_backup_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_backup_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_backup_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_backup_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_bindings_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_bindings_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_bindings_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_bindings_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_db_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_db_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_db_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_db_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_config_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_config_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_config_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_config_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_monitor_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_monitor_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_monitor_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_monitor_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_root_password_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_root_password_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_root_password_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_root_password_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/mysql_server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/fedora-18-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/fedora-18-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/fedora-18-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/fedora-18-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/sles-11-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/sles-11-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/sles-11-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/sles-11-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_database_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_database_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_database_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_database_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_user_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_user_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_user_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/types/mysql_user_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/unsupported_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/unsupported_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/unsupported_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/acceptance/unsupported_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_bindings_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_bindings_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_bindings_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_bindings_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_client_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_client_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_client_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_client_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_account_security_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_account_security_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_account_security_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_account_security_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_backup_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_backup_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_backup_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_backup_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_monitor_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_monitor_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_monitor_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_monitor_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_mysqltuner_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_mysqltuner_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_mysqltuner_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_mysqltuner_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/classes/mysql_server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/defines/mysql_db_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/defines/mysql_db_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/defines/mysql_db_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/defines/mysql_db_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_system.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_system.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_system.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/spec_helper_system.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_account_delete_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_account_delete_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_account_delete_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_account_delete_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_backup_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_backup_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_backup_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_backup_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_bindings_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_bindings_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_bindings_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_bindings_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_db_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_db_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_db_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_db_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_monitor_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_monitor_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_monitor_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_monitor_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_root_password_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_root_password_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_root_password_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_root_password_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/mysql_server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_user_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_user_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_user_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/system/types/mysql_user_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/mysql_password_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/mysql_password_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/mysql_password_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/mysql_password_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/functions/mysql_deepmerge_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/functions/mysql_deepmerge_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/functions/mysql_deepmerge_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/functions/mysql_deepmerge_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database/mysql_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database/mysql_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database/mysql_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database/mysql_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_grant/mysql_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_grant/mysql_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_grant/mysql_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_grant/mysql_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_user/mysql_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_user/mysql_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_user/mysql_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/database_user/mysql_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_database/mysql_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_database/mysql_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_database/mysql_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_database/mysql_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_user/mysql_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_user/mysql_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_user/mysql_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/provider/mysql_user/mysql_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_database_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_database_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_database_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_database_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_user_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_user_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_user_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/spec/unit/puppet/type/mysql_user_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.pass.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.pass.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.pass.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.cnf.pass.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.conf.cnf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.conf.cnf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.conf.cnf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/my.conf.cnf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/mysqlbackup.sh.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/mysqlbackup.sh.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/mysqlbackup.sh.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/templates/mysqlbackup.sh.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/backup.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/backup.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/backup.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/backup.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/bindings.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/bindings.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/bindings.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/bindings.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/java.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/java.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/java.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/java.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_database.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_database.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_database.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_database.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_grant.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_grant.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_grant.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_grant.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_user.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_user.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_user.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/mysql_user.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/perl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/perl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/perl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/perl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/python.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/python.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/python.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/python.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/ruby.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/ruby.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/ruby.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/ruby.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/account_security.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/account_security.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/account_security.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/account_security.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/mysql/tests/server/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/.travis/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile.lock b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile.lock
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile.lock
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Puppetfile.lock
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/composer.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/composer.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/composer.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/composer.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/debian.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/debian.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/debian.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/debian.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/redhat.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/redhat.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/redhat.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/redhat.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/solaris.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/solaris.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/solaris.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/solaris.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/suse.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/suse.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/suse.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/package/suse.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/location.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/location.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/location.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/location.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/mailhost.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/mailhost.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/mailhost.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/mailhost.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/upstream.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/upstream.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/upstream.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/upstream.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/vhost.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/vhost.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/vhost.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/resource/vhost.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/manifests/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/config_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/config_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/config_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/config_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/nginx_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/nginx_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/nginx_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/nginx_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/package_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/package_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/package_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/package_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/service_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/service_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/service_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/classes/service_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_location_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_location_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_location_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_location_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_mailhost_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_mailhost_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_mailhost_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_mailhost_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_upstream_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_upstream_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_upstream_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_upstream_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_vhost_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_vhost_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_vhost_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/defines/resource_vhost_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper_system.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper_system.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper_system.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/spec_helper_system.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/basic_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/basic_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/basic_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/basic_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/class_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/class_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/class_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/class_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_mail_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_mail_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_mail_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_mail_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_proxy_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_proxy_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_proxy_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_proxy_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_vhost_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_vhost_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_vhost_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/spec/system/nginx_vhost_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/nginx.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/nginx.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/nginx.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/nginx.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/proxy.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/proxy.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/proxy.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/proxy.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/upstream.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/upstream.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/upstream.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/conf.d/upstream.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost_ssl.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost_ssl.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost_ssl.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/mailhost/mailhost_ssl.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/fastcgi_params.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/fastcgi_params.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/fastcgi_params.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/fastcgi_params.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_footer.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_footer.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_footer.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_footer.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_header.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_header.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_header.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_header.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_alias.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_alias.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_alias.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_alias.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_directory.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_directory.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_directory.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_directory.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_empty.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_empty.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_empty.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_empty.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_fastcgi.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_fastcgi.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_fastcgi.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_fastcgi.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_proxy.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_proxy.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_proxy.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_proxy.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_stub_status.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_stub_status.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_stub_status.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_location_stub_status.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_footer.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_footer.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_footer.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_footer.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_header.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_header.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_header.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/templates/vhost/vhost_ssl_header.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/location_alias.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/location_alias.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/location_alias.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/location_alias.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/upstream.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/upstream.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/upstream.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/upstream.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost_ssl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost_ssl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost_ssl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/nginx/tests/vhost_ssl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CONTRIBUTING.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CONTRIBUTING.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CONTRIBUTING.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/CONTRIBUTING.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/manifests/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/class_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/class_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/class_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/class_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-65-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-65-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-65-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/centos-65-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/fedora-18-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/fedora-18-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/fedora-18-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/fedora-18-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/sles-11-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/sles-11-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/sles-11-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/sles-11-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_config_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_config_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_config_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_config_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_install_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_install_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_install_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_install_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_parameters_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_parameters_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_parameters_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_parameters_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_service_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_service_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_service_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/ntp_service_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/preferred_servers_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/preferred_servers_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/preferred_servers_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/preferred_servers_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/restrict_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/restrict_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/restrict_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/restrict_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/unsupported_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/unsupported_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/unsupported_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/acceptance/unsupported_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/classes/ntp_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/classes/ntp_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/classes/ntp_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/classes/ntp_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/fixtures/modules/my_ntp/templates/ntp.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/provider/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/provider/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/provider/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/provider/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/type/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/type/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/type/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/spec/unit/puppet/type/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/templates/ntp.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/templates/ntp.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/templates/ntp.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/templates/ntp.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/ntp/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.project b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.project
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.project
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.project
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_extension_dir.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_extension_dir.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_extension_dir.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_extension_dir.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/lib/facter/php_fact_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/augeas.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/augeas.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/augeas.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/augeas.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/conf.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/conf.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/conf.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/conf.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/devel.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/devel.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/devel.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/devel.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/ini.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/ini.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/ini.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/ini.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/module.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/module.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/module.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/module.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/module.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/module.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/module.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pear/module.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/module.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/module.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/module.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/pecl/module.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/spec.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/spec.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/spec.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/manifests/spec.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/classes/php_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/classes/php_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/classes/php_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/classes/php_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_module_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_module_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_module_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_module_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_pear_module_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_pear_module_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_pear_module_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/defines/php_pear_module_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/extra-ini.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/extra-ini.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/extra-ini.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/extra-ini.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/spec.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/spec.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/spec.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/php/templates/spec.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.project b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.project
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.project
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.project
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/NOTICE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/NOTICE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/NOTICE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/NOTICE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/RPM-GPG-KEY-PGDG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/RPM-GPG-KEY-PGDG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/RPM-GPG-KEY-PGDG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/RPM-GPG-KEY-PGDG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/validate_postgresql_connection.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/validate_postgresql_connection.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/validate_postgresql_connection.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/files/validate_postgresql_connection.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_acls_to_resources_hash.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_acls_to_resources_hash.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_acls_to_resources_hash.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_acls_to_resources_hash.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_escape.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_escape.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_escape.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_escape.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_password.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_password.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_password.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/parser/functions/postgresql_password.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_conf/parsed.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_conf/parsed.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_conf/parsed.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_conf/parsed.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_psql/ruby.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_psql/ruby.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_psql/ruby.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/provider/postgresql_psql/ruby.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_conf.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_conf.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_conf.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_conf.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_psql.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_psql.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_psql.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/lib/puppet/type/postgresql_psql.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/client.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/client.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/client.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/client.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/globals.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/globals.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/globals.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/globals.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/devel.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/devel.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/devel.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/devel.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/java.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/java.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/java.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/java.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/python.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/python.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/python.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/lib/python.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/apt_postgresql_org.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/apt_postgresql_org.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/apt_postgresql_org.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/apt_postgresql_org.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/yum_postgresql_org.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/yum_postgresql_org.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/yum_postgresql_org.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/repo/yum_postgresql_org.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config_entry.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config_entry.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config_entry.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/config_entry.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/contrib.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/contrib.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/contrib.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/contrib.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database_grant.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database_grant.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database_grant.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/database_grant.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/db.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/db.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/db.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/db.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/firewall.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/firewall.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/firewall.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/firewall.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/grant.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/grant.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/grant.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/grant.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/initdb.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/initdb.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/initdb.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/initdb.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/passwd.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/passwd.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/passwd.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/passwd.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/pg_hba_rule.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/pg_hba_rule.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/pg_hba_rule.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/pg_hba_rule.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/plperl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/plperl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/plperl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/plperl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/reload.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/reload.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/reload.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/reload.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/role.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/role.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/role.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/role.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/table_grant.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/table_grant.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/table_grant.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/table_grant.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/tablespace.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/tablespace.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/tablespace.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/server/tablespace.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/validate_db_connection.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/validate_db_connection.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/validate_db_connection.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/manifests/validate_db_connection.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/client_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/client_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/client_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/client_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/common_patterns_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/common_patterns_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/common_patterns_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/common_patterns_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/contrib_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/contrib_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/contrib_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/contrib_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/devel_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/devel_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/devel_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/devel_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/java_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/java_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/java_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/java_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/python_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/python_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/python_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/lib/python_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-510-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-510-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-510-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-510-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-59-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-59-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-59-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-59-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-607-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-607-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-607-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-607-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-73-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-73-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-73-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/debian-73-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/postgresql_psql_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/postgresql_psql_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/postgresql_psql_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/postgresql_psql_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/config_entry_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/config_entry_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/config_entry_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/config_entry_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/database_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/db_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/db_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/db_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/db_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/pg_hba_rule_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/pg_hba_rule_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/pg_hba_rule_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/pg_hba_rule_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/plperl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/plperl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/plperl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/plperl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/role_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/role_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/role_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/role_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/table_grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/table_grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/table_grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/table_grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/tablespace_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/tablespace_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/tablespace_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server/tablespace_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/unsupported_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/unsupported_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/unsupported_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/unsupported_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/validate_db_connection_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/validate_db_connection_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/validate_db_connection_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/acceptance/validate_db_connection_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/client_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/client_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/client_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/client_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/globals_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/globals_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/globals_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/globals_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/devel_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/devel_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/devel_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/devel_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/java_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/java_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/java_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/java_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/python_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/python_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/python_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/lib/python_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/repo_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/repo_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/repo_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/repo_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/contrib_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/contrib_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/contrib_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/contrib_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/initdb_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/initdb_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/initdb_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/initdb_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/plperl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/plperl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/plperl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server/plperl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/classes/server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/config_entry_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/config_entry_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/config_entry_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/config_entry_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/database_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/db_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/db_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/db_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/db_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/pg_hba_rule_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/pg_hba_rule_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/pg_hba_rule_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/pg_hba_rule_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/role_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/role_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/role_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/role_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/table_grant_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/table_grant_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/table_grant_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/table_grant_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/tablespace_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/tablespace_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/tablespace_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/server/tablespace_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/validate_db_connection_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/validate_db_connection_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/validate_db_connection_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/defines/validate_db_connection_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_acls_to_resources_hash_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_acls_to_resources_hash_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_acls_to_resources_hash_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_acls_to_resources_hash_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_escape_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_escape_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_escape_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_escape_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_password_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_password_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_password_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/functions/postgresql_password_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/provider/postgresql_conf/parsed_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/provider/postgresql_conf/parsed_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/provider/postgresql_conf/parsed_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/provider/postgresql_conf/parsed_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/provider/postgresql_psql/ruby_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/provider/postgresql_psql/ruby_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/provider/postgresql_psql/ruby_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/provider/postgresql_psql/ruby_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/type/postgresql_psql_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/type/postgresql_psql_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/type/postgresql_psql_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/puppet/type/postgresql_psql_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/type/postgresql_conf_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/spec/unit/type/postgresql_conf_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/templates/pg_hba_rule.conf b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/templates/pg_hba_rule.conf
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/templates/pg_hba_rule.conf
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/postgresql/templates/pg_hba_rule.conf
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/files/xdebug_cli_alias.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/files/xdebug_cli_alias.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/files/xdebug_cli_alias.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/files/xdebug_cli_alias.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_equals.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_equals.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_equals.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_equals.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_true.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_true.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_true.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/hash_key_true.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/value_true.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/value_true.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/value_true.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/lib/puppet/parser/functions/value_true.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/adminer.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/adminer.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/adminer.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/adminer.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modpagespeed.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modpagespeed.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modpagespeed.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modpagespeed.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modspdy.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modspdy.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modspdy.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/apache/modspdy.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/hhvm.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/hhvm.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/hhvm.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/hhvm.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ini.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ini.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ini.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ini.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/mariadb.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/mariadb.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/mariadb.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/mariadb.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/nginx.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/nginx.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/nginx.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/nginx.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/extra_repos.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/extra_repos.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/extra_repos.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/extra_repos.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/module.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/module.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/module.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/module.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pear.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pear.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pear.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pear.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pecl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pecl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pecl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/php/pecl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/phpmyadmin.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/phpmyadmin.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/phpmyadmin.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/phpmyadmin.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/python/pip.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/python/pip.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/python/pip.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/python/pip.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ssl_cert.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ssl_cert.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ssl_cert.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/ssl_cert.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xdebug.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xdebug.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xdebug.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xdebug.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xhprof.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xhprof.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xhprof.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/manifests/xhprof.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/custom_fragment.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/custom_fragment.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/custom_fragment.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/custom_fragment.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/hhvm-httpd.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/hhvm-httpd.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/hhvm-httpd.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/hhvm-httpd.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/php-wrapper.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/php-wrapper.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/php-wrapper.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/php-wrapper.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/spdy_conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/spdy_conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/spdy_conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/apache/mod/spdy/spdy_conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/nginx/default_conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/nginx/default_conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/nginx/default_conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puphpet/templates/nginx/default_conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.project b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.project
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.project
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.project
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_check.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_check.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_check.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_check.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_deploy.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_deploy.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_deploy.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_deploy.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_info.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_info.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_info.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_info.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_log.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_log.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_log.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/README_log.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/composer.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/composer.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/composer.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/composer.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme-default b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme-default
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme-default
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/info/readme/readme-default
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mailpuppicheck b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mailpuppicheck
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mailpuppicheck
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mailpuppicheck
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/mc-puppi b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/mc-puppi
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/mc-puppi
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/mc-puppi
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.ddl b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.ddl
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.ddl
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.ddl
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppi.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppicheck b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppicheck
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppicheck
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppicheck
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppideploy b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppideploy
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppideploy
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/mcollective/puppideploy
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/archive.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/archive.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/archive.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/archive.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/check_project.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/check_project.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/check_project.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/check_project.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/checkwardir.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/checkwardir.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/checkwardir.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/checkwardir.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/clean_filelist.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/clean_filelist.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/clean_filelist.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/clean_filelist.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/database.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/database.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/database.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/database.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/delete.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/delete.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/delete.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/delete.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy_files.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy_files.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy_files.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/deploy_files.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/execute.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/execute.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/execute.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/execute.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/firewall.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/firewall.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/firewall.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/firewall.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/functions b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/functions
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/functions
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/functions
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_file.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_file.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_file.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_file.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_filesfromlist.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_filesfromlist.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_filesfromlist.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_filesfromlist.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_maven_files.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_maven_files.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_maven_files.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_maven_files.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_metadata.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_metadata.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_metadata.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/get_metadata.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/git.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/git.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/git.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/git.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/header b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/header
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/header
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/header
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy_tar.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy_tar.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy_tar.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/predeploy_tar.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mail.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mail.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mail.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mail.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mongo.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mongo.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mongo.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/report_mongo.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/service.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/service.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/service.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/service.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/svn.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/svn.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/svn.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/svn.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/wait.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/wait.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/wait.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/wait.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yant.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yant.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yant.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yant.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yum.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yum.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yum.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/files/scripts/yum.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/last_run.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/last_run.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/last_run.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/last_run.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/puppi_projects.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/puppi_projects.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/puppi_projects.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/puppi_projects.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/windows_common_appdata.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/windows_common_appdata.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/windows_common_appdata.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/facter/windows_common_appdata.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/any2bool.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/any2bool.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/any2bool.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/any2bool.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/bool2ensure.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/bool2ensure.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/bool2ensure.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/bool2ensure.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_class_args.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_class_args.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_class_args.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_class_args.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_magicvar.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_magicvar.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_magicvar.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_magicvar.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_module_path.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_module_path.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_module_path.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/get_module_path.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/nslookup.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/nslookup.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/nslookup.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/nslookup.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/options_lookup.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/options_lookup.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/options_lookup.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/options_lookup.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/params_lookup.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/params_lookup.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/params_lookup.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/params_lookup.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/url_parse.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/url_parse.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/url_parse.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/lib/puppet/parser/functions/url_parse.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/check.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/check.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/check.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/check.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/configure.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/configure.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/configure.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/configure.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/dependencies.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/dependencies.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/dependencies.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/dependencies.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/deploy.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/deploy.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/deploy.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/deploy.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/extras.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/extras.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/extras.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/extras.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helper.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helper.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helper.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helper.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helpers.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helpers.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helpers.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/helpers.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/instance.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/instance.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/instance.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/instance.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/module.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/module.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/module.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/module.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/readme.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/readme.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/readme.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/info/readme.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/initialize.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/initialize.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/initialize.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/initialize.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/install_packages.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/install_packages.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/install_packages.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/install_packages.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/log.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/log.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/log.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/log.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/client.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/client.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/client.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/client.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/mcollective/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/netinstall.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/netinstall.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/netinstall.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/netinstall.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/one.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/one.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/one.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/one.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/README b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/README
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/README
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/README
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/archive.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/archive.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/archive.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/archive.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/builder.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/builder.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/builder.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/builder.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/dir.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/dir.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/dir.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/dir.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/files.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/files.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/files.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/files.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/git.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/git.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/git.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/git.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/maven.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/maven.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/maven.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/maven.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/mysql.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/mysql.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/mysql.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/mysql.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/svn.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/svn.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/svn.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/svn.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/tar.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/tar.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/tar.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/tar.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/war.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/war.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/war.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/war.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/y4maven.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/y4maven.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/y4maven.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/y4maven.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/yum.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/yum.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/yum.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/project/yum.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/report.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/report.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/report.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/report.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/rollback.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/rollback.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/rollback.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/rollback.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/run.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/run.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/run.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/run.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/runscript.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/runscript.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/runscript.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/runscript.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/skel.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/skel.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/skel.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/skel.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/todo.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/todo.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/todo.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/todo.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/two.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/two.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/two.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/two.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/ze.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/ze.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/ze.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/manifests/ze.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/classes/puppi_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/classes/puppi_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/classes/puppi_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/classes/puppi_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_check_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_check_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_check_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_check_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_deploy_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_deploy_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_deploy_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_deploy_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_helper_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_helper_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_helper_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_helper_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_info_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_info_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_info_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_info_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_initialize_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_initialize_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_initialize_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_initialize_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_log_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_log_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_log_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_log_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_project_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_project_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_project_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_project_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_report_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_report_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_report_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_report_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_rollback_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_rollback_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_rollback_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_rollback_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_run_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_run_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_run_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_run_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_todo_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_todo_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_todo_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_todo_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_ze_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_ze_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_ze_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/defines/puppi_ze_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/any2bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/any2bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/any2bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/any2bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/bool2ensure_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/bool2ensure_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/bool2ensure_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/bool2ensure_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/url_parse_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/url_parse_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/url_parse_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/functions/url_parse_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/helpers/standard.yml.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/helpers/standard.yml.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/helpers/standard.yml.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/helpers/standard.yml.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/instance.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/instance.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/instance.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/instance.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/module.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/module.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/module.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/module.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/puppet.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/puppet.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/puppet.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/puppet.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/readme.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/readme.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/readme.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/info/readme.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/install_packages.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/install_packages.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/install_packages.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/install_packages.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/log.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/log.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/log.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/log.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/project/config.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/project/config.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/project/config.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/project/config.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi_clean.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi_clean.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi_clean.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/puppi_clean.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/todo.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/todo.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/todo.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/puppi/templates/todo.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/CHANGELOG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/CHANGELOG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/CHANGELOG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/CHANGELOG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/TODO b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/TODO
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/TODO
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/TODO
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/amqp_client-2.3.1.ez b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/amqp_client-2.3.1.ez
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/amqp_client-2.3.1.ez
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/amqp_client-2.3.1.ez
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/rabbit_stomp-2.3.1.ez b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/rabbit_stomp-2.3.1.ez
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/rabbit_stomp-2.3.1.ez
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/files/plugins/rabbit_stomp-2.3.1.ez
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/facter/rabbitmq_erlang_cookie.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/facter/rabbitmq_erlang_cookie.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/facter/rabbitmq_erlang_cookie.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/facter/rabbitmq_erlang_cookie.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_exchange/rabbitmqadmin.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_exchange/rabbitmqadmin.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_exchange/rabbitmqadmin.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_exchange/rabbitmqadmin.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_plugin/rabbitmqplugins.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_plugin/rabbitmqplugins.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_plugin/rabbitmqplugins.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_plugin/rabbitmqplugins.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user/rabbitmqctl.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user/rabbitmqctl.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user/rabbitmqctl.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user/rabbitmqctl.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user_permissions/rabbitmqctl.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user_permissions/rabbitmqctl.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user_permissions/rabbitmqctl.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_user_permissions/rabbitmqctl.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_vhost/rabbitmqctl.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_vhost/rabbitmqctl.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_vhost/rabbitmqctl.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/provider/rabbitmq_vhost/rabbitmqctl.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_exchange.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_exchange.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_exchange.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_exchange.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_plugin.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_plugin.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_plugin.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_plugin.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user_permissions.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user_permissions.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user_permissions.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_user_permissions.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_vhost.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_vhost.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_vhost.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/lib/puppet/type/rabbitmq_vhost.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install/rabbitmqadmin.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install/rabbitmqadmin.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install/rabbitmqadmin.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/install/rabbitmqadmin.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/management.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/management.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/management.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/management.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/policy.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/policy.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/policy.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/policy.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/apt.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/apt.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/apt.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/apt.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/rhel.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/rhel.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/rhel.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/repo/rhel.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/manifests/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/class_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/class_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/class_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/class_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/clustering_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/clustering_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/clustering_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/clustering_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/delete_guest_user_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/delete_guest_user_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/delete_guest_user_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/delete_guest_user_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1310-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/nodesets/ubuntu-server-1404-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/rabbitmqadmin_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/rabbitmqadmin_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/rabbitmqadmin_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/rabbitmqadmin_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/server_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/server_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/server_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/acceptance/server_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/classes/rabbitmq_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/classes/rabbitmq_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/classes/rabbitmq_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/classes/rabbitmq_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/facts/rabbitmq_erlang_cookie_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/facts/rabbitmq_erlang_cookie_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/facts/rabbitmq_erlang_cookie_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/facts/rabbitmq_erlang_cookie_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_exchange/rabbitmqadmin_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_exchange/rabbitmqadmin_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_exchange/rabbitmqadmin_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_exchange/rabbitmqadmin_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user/rabbitmqctl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user/rabbitmqctl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user/rabbitmqctl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user/rabbitmqctl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user_permissions/rabbitmqctl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user_permissions/rabbitmqctl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user_permissions/rabbitmqctl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_user_permissions/rabbitmqctl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_vhost/rabbitmqctl_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_vhost/rabbitmqctl_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_vhost/rabbitmqctl_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/provider/rabbitmq_vhost/rabbitmqctl_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_exchange_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_exchange_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_exchange_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_exchange_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_permissions_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_permissions_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_permissions_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_permissions_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_user_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_vhost_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_vhost_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_vhost_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/spec/unit/puppet/type/rabbitmq_vhost_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq-env.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq-env.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq-env.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq-env.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq.config.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq.config.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq.config.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/templates/rabbitmq.config.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/erlang_deps.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/erlang_deps.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/erlang_deps.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/erlang_deps.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/full.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/full.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/full.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/full.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/permissions/add.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/permissions/add.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/permissions/add.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/permissions/add.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/plugin.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/plugin.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/plugin.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/plugin.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/repo/apt.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/repo/apt.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/repo/apt.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/repo/apt.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/site.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/site.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/site.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/site.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/user/add.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/user/add.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/user/add.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/user/add.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/vhosts/add.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/vhosts/add.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/vhosts/add.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/rabbitmq/tests/vhosts/add.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/CHANGELOG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/CHANGELOG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/CHANGELOG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/CHANGELOG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Vagrantfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Vagrantfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Vagrantfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/Vagrantfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.debian.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.debian.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.debian.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.debian.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.logrotate.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.logrotate.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.logrotate.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.logrotate.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.rhel.conf.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.rhel.conf.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.rhel.conf.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/templates/redis.rhel.conf.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/redis/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/db.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/db.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/db.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/db.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sqlite/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Vagrantfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Vagrantfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Vagrantfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/Vagrantfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/deploy.html b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/deploy.html
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/deploy.html
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/deploy.html
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/extract.html b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/extract.html
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/extract.html
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/extract.html
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/file.html b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/file.html
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/file.html
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/file.html
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/init.html b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/init.html
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/init.html
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/docs/init.html
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.bz2 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.bz2
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.bz2
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.bz2
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.gz b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.gz
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.gz
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/files/sample.tar.gz
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_http_get.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_http_get.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_http_get.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_http_get.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_windir.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_windir.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_windir.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/facter/staging_windir.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/scope_defaults.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/scope_defaults.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/scope_defaults.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/scope_defaults.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/staging_parse.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/staging_parse.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/staging_parse.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/lib/puppet/parser/functions/staging_parse.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/deploy.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/deploy.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/deploy.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/deploy.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/extract.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/extract.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/extract.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/extract.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/file.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/file.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/file.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/file.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_deploy_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_deploy_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_deploy_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_deploy_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_extract_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_extract_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_extract_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_extract_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_file_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_file_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_file_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/defines/staging_file_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/fixtures/hiera.yaml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/fixtures/hiera.yaml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/fixtures/hiera.yaml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/fixtures/hiera.yaml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/scope_defaults_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/scope_defaults_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/scope_defaults_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/scope_defaults_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/staging_parse_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/staging_parse_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/staging_parse_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/spec/unit/puppet/parser/functions/staging_parse_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/deploy.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/deploy.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/deploy.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/deploy.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/extract.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/extract.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/extract.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/extract.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/file.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/file.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/file.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/file.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/scope_defaults.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/scope_defaults.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/scope_defaults.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/scope_defaults.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/staging_parse.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/staging_parse.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/staging_parse.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/staging/tests/staging_parse.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CHANGELOG.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CHANGELOG.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CHANGELOG.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CHANGELOG.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CONTRIBUTING.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CONTRIBUTING.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CONTRIBUTING.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/CONTRIBUTING.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile.lock b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile.lock
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile.lock
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Gemfile.lock
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_DEVELOPER.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_DEVELOPER.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_DEVELOPER.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_DEVELOPER.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_SPECS.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_SPECS.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_SPECS.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/README_SPECS.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/RELEASE_PROCESS.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/RELEASE_PROCESS.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/RELEASE_PROCESS.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/RELEASE_PROCESS.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/facter_dot_d.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/facter_dot_d.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/pe_version.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/pe_version.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/pe_version.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/pe_version.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/puppet_vardir.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/puppet_vardir.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/root_home.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/root_home.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/root_home.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/root_home.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/util/puppet_settings.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/util/puppet_settings.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/util/puppet_settings.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/facter/util/puppet_settings.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/abs.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/abs.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/abs.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/abs.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/any2array.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/any2array.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/any2array.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/any2array.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/base64.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/base64.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/base64.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/base64.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/bool2num.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/bool2num.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/bool2num.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/bool2num.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/capitalize.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/capitalize.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/capitalize.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/capitalize.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chomp.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chomp.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chomp.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chomp.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chop.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chop.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chop.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/chop.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/concat.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/concat.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/concat.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/concat.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/count.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/count.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/count.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/count.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/deep_merge.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/deep_merge.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/deep_merge.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/deep_merge.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/defined_with_params.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/defined_with_params.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/defined_with_params.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/defined_with_params.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_at.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_at.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_at.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_at.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_undef_values.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_undef_values.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_undef_values.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_undef_values.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_values.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_values.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_values.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/delete_values.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/difference.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/difference.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/difference.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/difference.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/dirname.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/dirname.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/dirname.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/dirname.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/downcase.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/downcase.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/downcase.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/downcase.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/empty.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/empty.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/empty.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/empty.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_packages.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_packages.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_packages.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_packages.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_resource.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_resource.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_resource.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/ensure_resource.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/flatten.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/flatten.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/flatten.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/flatten.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/floor.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/floor.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/floor.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/floor.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/fqdn_rotate.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/fqdn_rotate.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/fqdn_rotate.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/fqdn_rotate.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/get_module_path.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/get_module_path.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/get_module_path.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/get_module_path.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getparam.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getparam.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getparam.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getparam.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getvar.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getvar.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getvar.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/getvar.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/grep.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/grep.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/grep.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/grep.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_interface_with.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_interface_with.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_interface_with.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_interface_with.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_address.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_address.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_address.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_address.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_network.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_network.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_network.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_ip_network.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_key.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_key.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_key.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/has_key.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/hash.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/hash.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/hash.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/hash.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/intersection.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/intersection.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/intersection.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/intersection.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_array.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_array.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_array.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_array.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_bool.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_bool.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_bool.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_bool.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_domain_name.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_domain_name.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_domain_name.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_domain_name.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_float.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_float.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_float.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_float.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_function_available.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_function_available.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_function_available.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_function_available.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_hash.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_hash.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_hash.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_hash.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_integer.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_integer.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_integer.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_integer.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_ip_address.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_ip_address.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_ip_address.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_ip_address.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_mac_address.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_mac_address.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_mac_address.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_mac_address.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_numeric.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_numeric.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_numeric.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_numeric.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_string.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_string.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_string.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/is_string.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join_keys_to_values.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join_keys_to_values.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join_keys_to_values.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/join_keys_to_values.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/keys.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/keys.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/keys.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/keys.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/loadyaml.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/loadyaml.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/loadyaml.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/loadyaml.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/lstrip.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/lstrip.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/lstrip.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/lstrip.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/max.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/max.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/max.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/max.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/member.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/member.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/member.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/member.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/merge.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/merge.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/merge.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/merge.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/min.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/min.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/min.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/min.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/num2bool.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/num2bool.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/num2bool.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/num2bool.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parsejson.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parsejson.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parsejson.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parsejson.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parseyaml.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parseyaml.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parseyaml.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/parseyaml.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick_default.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick_default.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick_default.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/pick_default.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/prefix.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/prefix.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/prefix.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/prefix.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/range.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/range.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/range.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/range.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reject.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reject.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reject.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reject.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reverse.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reverse.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reverse.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/reverse.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/rstrip.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/rstrip.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/rstrip.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/rstrip.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/shuffle.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/shuffle.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/shuffle.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/shuffle.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/size.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/size.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/size.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/size.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/sort.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/sort.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/sort.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/sort.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/squeeze.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/squeeze.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/squeeze.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/squeeze.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2bool.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2bool.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2bool.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2bool.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/str2saltedsha512.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strftime.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strftime.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strftime.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strftime.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strip.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strip.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strip.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/strip.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/suffix.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/suffix.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/suffix.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/suffix.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/swapcase.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/swapcase.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/swapcase.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/swapcase.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/time.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/time.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/time.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/time.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/to_bytes.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/to_bytes.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/to_bytes.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/to_bytes.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/type.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/type.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/type.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/type.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/union.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/union.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/union.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/union.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/unique.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/unique.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/unique.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/unique.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/upcase.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/upcase.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/upcase.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/upcase.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/uriescape.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/uriescape.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/uriescape.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/uriescape.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_absolute_path.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_absolute_path.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_absolute_path.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_absolute_path.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_array.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_array.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_array.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_array.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_augeas.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_augeas.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_augeas.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_augeas.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_bool.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_bool.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_bool.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_bool.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_cmd.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_hash.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_hash.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_hash.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_hash.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv4_address.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv4_address.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv4_address.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv4_address.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv6_address.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv6_address.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv6_address.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_ipv6_address.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_re.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_re.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_re.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_re.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_slength.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_slength.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_slength.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_slength.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_string.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_string.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_string.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/validate_string.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values_at.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values_at.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values_at.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/values_at.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/zip.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/zip.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/zip.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/parser/functions/zip.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/provider/file_line/ruby.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/provider/file_line/ruby.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/provider/file_line/ruby.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/provider/file_line/ruby.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/anchor.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/anchor.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/anchor.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/anchor.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/file_line.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/file_line.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/file_line.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/lib/puppet/type/file_line.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/stages.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/stages.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/stages.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/manifests/stages.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/abs_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/abs_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/abs_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/abs_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/any2array_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/any2array_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/any2array_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/any2array_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/base64_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/base64_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/base64_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/base64_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/bool2num_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/bool2num_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/bool2num_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/bool2num_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/build_csv.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/build_csv.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/build_csv.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/build_csv.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/capitalize_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/capitalize_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/capitalize_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/capitalize_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chomp_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chomp_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chomp_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chomp_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chop_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chop_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chop_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/chop_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/concat_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/concat_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/concat_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/concat_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/count_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/count_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/count_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/count_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/deep_merge_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/deep_merge_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/deep_merge_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/deep_merge_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/defined_with_params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/defined_with_params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/defined_with_params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/defined_with_params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_at_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_at_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_at_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_at_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_undef_values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_undef_values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_undef_values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_undef_values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/delete_values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/difference_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/difference_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/difference_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/difference_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/dirname_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/dirname_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/dirname_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/dirname_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/downcase_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/downcase_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/downcase_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/downcase_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/empty_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/empty_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/empty_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/empty_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_packages_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_packages_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_packages_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_packages_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_resource_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_resource_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_resource_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/ensure_resource_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/flatten_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/flatten_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/flatten_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/flatten_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/floor_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/floor_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/floor_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/floor_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/fqdn_rotate_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/fqdn_rotate_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/fqdn_rotate_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/fqdn_rotate_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/get_module_path_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/get_module_path_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/get_module_path_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/get_module_path_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getvar_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getvar_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getvar_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/getvar_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/grep_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/grep_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/grep_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/grep_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_interface_with_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_interface_with_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_interface_with_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_interface_with_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_network_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_network_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_network_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_ip_network_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_key_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_key_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_key_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/has_key_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/hash_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/hash_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/hash_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/hash_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/intersection_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/intersection_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/intersection_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/intersection_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_array_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_array_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_array_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_array_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_domain_name_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_domain_name_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_domain_name_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_domain_name_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_float_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_float_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_float_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_float_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_function_available_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_function_available_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_function_available_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_function_available_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_hash_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_hash_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_hash_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_hash_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_integer_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_integer_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_integer_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_integer_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_ip_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_ip_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_ip_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_ip_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_mac_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_mac_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_mac_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_mac_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_numeric_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_numeric_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_numeric_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_numeric_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_string_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_string_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_string_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/is_string_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_keys_to_values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_keys_to_values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_keys_to_values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_keys_to_values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/join_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/keys_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/keys_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/keys_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/keys_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/loadyaml_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/loadyaml_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/loadyaml_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/loadyaml_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/lstrip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/lstrip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/lstrip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/lstrip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/max_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/max_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/max_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/max_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/member_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/member_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/member_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/member_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/merge_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/merge_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/merge_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/merge_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/min_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/min_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/min_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/min_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-6-vcloud.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-6-vcloud.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-6-vcloud.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-6-vcloud.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64-pe.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64-pe.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64-pe.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64-pe.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/centos-64-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/fedora-18-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/sles-11-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-10044-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/nodesets/ubuntu-server-12042-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/num2bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/num2bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/num2bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/num2bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parsejson_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parsejson_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parsejson_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parsejson_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parseyaml_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parseyaml_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parseyaml_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/parseyaml_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_default_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_default_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_default_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_default_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/pick_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/prefix_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/prefix_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/prefix_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/prefix_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/range_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/range_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/range_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/range_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reject_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reject_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reject_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reject_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reverse_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reverse_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reverse_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/reverse_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/rstrip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/rstrip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/rstrip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/rstrip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/shuffle_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/shuffle_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/shuffle_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/shuffle_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/size_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/size_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/size_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/size_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/sort_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/sort_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/sort_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/sort_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/squeeze_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/squeeze_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/squeeze_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/squeeze_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2saltedsha512_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2saltedsha512_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2saltedsha512_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/str2saltedsha512_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strftime_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strftime_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strftime_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strftime_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/strip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/suffix_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/suffix_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/suffix_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/suffix_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/swapcase_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/swapcase_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/swapcase_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/swapcase_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/time_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/time_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/time_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/time_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/to_bytes_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/to_bytes_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/to_bytes_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/to_bytes_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/type_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/type_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/type_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/type_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/union_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/union_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/union_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/union_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unique_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unique_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unique_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unique_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unsupported_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unsupported_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unsupported_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/unsupported_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/upcase_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/upcase_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/upcase_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/upcase_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/uriescape_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/uriescape_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/uriescape_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/uriescape_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_absolute_path_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_absolute_path_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_absolute_path_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_absolute_path_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_array_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_array_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_array_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_array_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_augeas_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_augeas_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_augeas_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_augeas_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_cmd_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_cmd_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_cmd_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_cmd_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_hash_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_hash_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_hash_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_hash_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv4_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv4_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv4_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv4_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv6_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv6_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv6_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_ipv6_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_re_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_re_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_re_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_re_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_slength_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_slength_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_slength_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_slength_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_string_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_string_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_string_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/validate_string_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_at_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_at_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_at_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_at_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/zip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/zip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/zip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/acceptance/zip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/classes/anchor_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/classes/anchor_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/classes/anchor_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/classes/anchor_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/fixtures/dscacheutil/root b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/fixtures/dscacheutil/root
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/fixtures/dscacheutil/root
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/fixtures/dscacheutil/root
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/abs_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/abs_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/abs_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/abs_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/any2array_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/any2array_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/any2array_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/any2array_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/base64_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/base64_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/base64_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/base64_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/bool2num_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/bool2num_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/bool2num_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/bool2num_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/capitalize_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/capitalize_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/capitalize_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/capitalize_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chomp_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chomp_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chomp_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chomp_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chop_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chop_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chop_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/chop_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/concat_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/concat_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/concat_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/concat_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/count_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/count_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/count_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/count_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/deep_merge_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/deep_merge_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/deep_merge_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/deep_merge_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/defined_with_params_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/defined_with_params_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/defined_with_params_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/defined_with_params_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_at_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_at_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_at_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_at_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_undef_values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_undef_values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_undef_values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_undef_values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/delete_values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/difference_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/difference_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/difference_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/difference_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/dirname_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/dirname_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/dirname_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/dirname_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/downcase_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/downcase_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/downcase_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/downcase_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/empty_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/empty_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/empty_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/empty_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_packages_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_packages_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_packages_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_packages_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_resource_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_resource_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_resource_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/ensure_resource_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/flatten_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/flatten_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/flatten_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/flatten_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/floor_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/floor_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/floor_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/floor_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/fqdn_rotate_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/fqdn_rotate_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/fqdn_rotate_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/fqdn_rotate_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/get_module_path_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/get_module_path_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/get_module_path_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/get_module_path_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getparam_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getparam_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getparam_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getparam_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getvar_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getvar_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getvar_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/getvar_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/grep_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/grep_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/grep_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/grep_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_interface_with_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_interface_with_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_interface_with_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_interface_with_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_network_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_network_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_network_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_ip_network_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_key_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_key_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_key_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/has_key_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/hash_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/hash_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/hash_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/hash_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/intersection_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/intersection_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/intersection_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/intersection_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_array_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_array_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_array_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_array_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_domain_name_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_domain_name_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_domain_name_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_domain_name_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_float_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_float_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_float_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_float_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_function_available.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_function_available.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_function_available.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_function_available.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_hash_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_hash_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_hash_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_hash_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_integer_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_integer_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_integer_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_integer_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_ip_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_ip_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_ip_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_ip_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_mac_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_mac_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_mac_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_mac_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_numeric_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_numeric_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_numeric_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_numeric_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_string_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_string_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_string_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/is_string_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_keys_to_values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_keys_to_values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_keys_to_values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_keys_to_values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/join_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/keys_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/keys_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/keys_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/keys_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/loadyaml_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/loadyaml_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/loadyaml_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/loadyaml_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/lstrip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/lstrip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/lstrip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/lstrip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/max_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/max_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/max_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/max_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/member_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/member_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/member_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/member_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/merge_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/merge_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/merge_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/merge_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/min_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/min_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/min_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/min_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/num2bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/num2bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/num2bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/num2bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parsejson_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parsejson_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parsejson_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parsejson_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parseyaml_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parseyaml_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parseyaml_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/parseyaml_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_default_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_default_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_default_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_default_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/pick_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/prefix_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/prefix_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/prefix_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/prefix_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/range_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/range_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/range_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/range_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reject_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reject_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reject_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reject_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reverse_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reverse_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reverse_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/reverse_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/rstrip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/rstrip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/rstrip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/rstrip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/shuffle_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/shuffle_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/shuffle_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/shuffle_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/size_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/size_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/size_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/size_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/sort_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/sort_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/sort_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/sort_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/squeeze_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/squeeze_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/squeeze_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/squeeze_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2saltedsha512_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2saltedsha512_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2saltedsha512_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/str2saltedsha512_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strftime_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strftime_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strftime_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strftime_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/strip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/suffix_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/suffix_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/suffix_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/suffix_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/swapcase_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/swapcase_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/swapcase_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/swapcase_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/time_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/time_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/time_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/time_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/to_bytes_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/to_bytes_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/to_bytes_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/to_bytes_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/type_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/type_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/type_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/type_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/union_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/union_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/union_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/union_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/unique_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/unique_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/unique_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/unique_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/upcase_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/upcase_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/upcase_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/upcase_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/uriescape_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/uriescape_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/uriescape_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/uriescape_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_absolute_path_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_absolute_path_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_absolute_path_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_absolute_path_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_array_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_array_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_array_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_array_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_augeas_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_augeas_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_augeas_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_augeas_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_bool_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_bool_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_bool_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_bool_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_cmd_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_cmd_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_cmd_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_cmd_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_hash_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_hash_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_hash_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_hash_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv4_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv4_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv4_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv4_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv6_address_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv6_address_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv6_address_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_ipv6_address_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_re_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_re_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_re_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_re_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_slength_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_slength_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_slength_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_slength_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_string_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_string_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_string_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/validate_string_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_at_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_at_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_at_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_at_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/values_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/zip_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/zip_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/zip_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/functions/zip_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/compiler.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/compiler.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/compiler.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/compiler.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/database.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/database.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/database.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/database.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/files.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/files.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/files.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/files.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/fixtures.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/fixtures.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/fixtures.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/fixtures.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/matchers.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/matchers.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/matchers.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/matchers.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/modules.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/modules.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/modules.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/modules.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/pops.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/pops.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/pops.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/pops.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/scope.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/scope.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/scope.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/scope.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/settings.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/settings.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/settings.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/settings.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/verbose.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/verbose.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/verbose.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/lib/puppet_spec/verbose.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/publicize_methods.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/publicize_methods.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/publicize_methods.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/monkey_patches/publicize_methods.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.last_run.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.last_run.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.last_run.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.last_run.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.resultset.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.resultset.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.resultset.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/.resultset.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.css b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.css
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.css
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.css
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.js b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.js
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.js
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/application.js
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/border.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/border.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/border.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/border.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/controls.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/controls.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/controls.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/controls.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading.gif b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading.gif
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading.gif
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading.gif
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading_background.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading_background.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading_background.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/colorbox/loading_background.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_green.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_green.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_green.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_green.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_red.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_red.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_red.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_red.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_yellow.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_yellow.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_yellow.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/favicon_yellow.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/loading.gif b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/loading.gif
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/loading.gif
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/loading.gif
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/magnify.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/magnify.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/magnify.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/magnify.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_dadada_1x400.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_222222_256x240.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_222222_256x240.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_222222_256x240.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_222222_256x240.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_2e83ff_256x240.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_2e83ff_256x240.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_2e83ff_256x240.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_2e83ff_256x240.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_454545_256x240.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_454545_256x240.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_454545_256x240.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_454545_256x240.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_888888_256x240.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_888888_256x240.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_888888_256x240.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_888888_256x240.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_cd0a0a_256x240.png b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_cd0a0a_256x240.png
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_cd0a0a_256x240.png
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/assets/0.8.0/smoothness/images/ui-icons_cd0a0a_256x240.png
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/index.html b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/index.html
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/index.html
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/coverage/index.html
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/facter_dot_d_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/facter_dot_d_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/facter_dot_d_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/facter_dot_d_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/pe_version_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/pe_version_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/pe_version_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/pe_version_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/root_home_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/root_home_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/root_home_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/root_home_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/util/puppet_settings_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/util/puppet_settings_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/util/puppet_settings_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/facter/util/puppet_settings_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/provider/file_line/ruby_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/provider/file_line/ruby_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/provider/file_line/ruby_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/provider/file_line/ruby_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/anchor_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/file_line_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/file_line_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/file_line_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/spec/unit/puppet/type/file_line_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/file_line.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/file_line.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/file_line.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/file_line.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_interface_with.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_interface_with.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_interface_with.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_interface_with.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_address.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_address.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_address.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_address.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_network.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_network.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_network.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/has_ip_network.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/stdlib/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.nodeset.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.nodeset.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.nodeset.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.nodeset.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Changelog b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Changelog
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Changelog
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Changelog
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/array2csv.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/array2csv.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/array2csv.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/array2csv.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/hash2csv.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/hash2csv.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/hash2csv.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/lib/puppet/parser/functions/hash2csv.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/config.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/config.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/config.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/config.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/eventlistener.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/eventlistener.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/eventlistener.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/eventlistener.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/fcgi_program.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/fcgi_program.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/fcgi_program.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/fcgi_program.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/group.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/group.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/group.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/group.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/install.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/install.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/install.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/install.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/pip.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/pip.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/pip.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/pip.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/program.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/program.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/program.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/program.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/reload.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/reload.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/reload.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/reload.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/service.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/service.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/service.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/service.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/supervisorctl.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/supervisorctl.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/supervisorctl.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/manifests/supervisorctl.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-i386.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-i386.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-i386.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-i386.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/centos-65-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-i386.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-i386.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-i386.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-i386.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-x64.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-x64.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-x64.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/debian-73-x64.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/default.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/default.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/default.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/nodesets/default.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/supervisord_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/supervisord_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/supervisord_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/acceptance/supervisord_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/classes/supervisord_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/classes/supervisord_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/classes/supervisord_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/classes/supervisord_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/eventlistener_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/eventlistener_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/eventlistener_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/eventlistener_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/fcgi_program_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/fcgi_program_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/fcgi_program_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/fcgi_program_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/group_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/group_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/group_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/group_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/program_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/program_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/program_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/program_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/supervisorctl.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/supervisorctl.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/supervisorctl.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/defines/supervisorctl.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/array2csv_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/array2csv_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/array2csv_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/array2csv_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/hash2csv_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/hash2csv_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/hash2csv_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/functions/hash2csv_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper_acceptance.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper_acceptance.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper_acceptance.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/spec/spec_helper_acceptance.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/eventlistener.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/eventlistener.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/eventlistener.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/eventlistener.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/fcgi_program.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/fcgi_program.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/fcgi_program.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/fcgi_program.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/group.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/group.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/group.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/group.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/program.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/program.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/program.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/conf/program.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/defaults.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/defaults.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/defaults.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/defaults.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/init.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/init.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/init.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/Debian/init.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/defaults.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/defaults.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/defaults.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/defaults.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/init.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/init.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/init.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/init/RedHat/init.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_inet.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_inet.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_inet.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_inet.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_main.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_main.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_main.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_main.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_unix.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_unix.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_unix.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/templates/supervisord_unix.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/group.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/group.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/group.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/group.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/program.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/program.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/program.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/supervisord/tests/program.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/ChangeLog b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/ChangeLog
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/ChangeLog
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/ChangeLog
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/base.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/base.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/base.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/base.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/metadata.json b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/metadata.json
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/metadata.json
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/metadata.json
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/classes/sysctl_base_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/classes/sysctl_base_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/classes/sysctl_base_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/classes/sysctl_base_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/defines/sysctl_init_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/defines/sysctl_init_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/defines/sysctl_init_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/defines/sysctl_init_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/templates/sysctl.d-file.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/templates/sysctl.d-file.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/templates/sysctl.d-file.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/templates/sysctl.d-file.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/base.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/base.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/base.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/base.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/sysctl/tests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/CHANGELOG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/CHANGELOG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/CHANGELOG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/CHANGELOG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.BZR.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.BZR.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.BZR.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.BZR.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.CVS.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.CVS.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.CVS.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.CVS.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.GIT.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.GIT.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.GIT.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.GIT.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.HG.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.HG.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.HG.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.HG.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.SVN.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.SVN.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.SVN.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.SVN.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/branch.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/branch.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/branch.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/branch.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/init_repo.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/init_repo.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/init_repo.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/bzr/init_repo.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/local.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/local.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/local.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/local.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/remote.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/remote.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/remote.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/cvs/remote.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/bare_init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/bare_init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/bare_init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/bare_init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/clone.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/clone.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/clone.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/clone.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/working_copy_init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/working_copy_init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/working_copy_init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/git/working_copy_init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/clone.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/clone.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/clone.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/clone.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/init_repo.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/init_repo.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/init_repo.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/hg/init_repo.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/checkout.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/checkout.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/checkout.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/checkout.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/server.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/server.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/server.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/examples/svn/server.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/bzr.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/bzr.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/bzr.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/bzr.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/cvs.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/cvs.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/cvs.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/cvs.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/dummy.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/dummy.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/dummy.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/dummy.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/git.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/git.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/git.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/git.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/hg.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/hg.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/hg.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/hg.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/svn.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/svn.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/svn.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/provider/vcsrepo/svn.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/type/vcsrepo.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/type/vcsrepo.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/type/vcsrepo.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/lib/puppet/type/vcsrepo.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/bzr_version_info.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/bzr_version_info.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/bzr_version_info.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/bzr_version_info.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_a.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_a.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_a.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_a.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_feature_bar.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_feature_bar.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_feature_bar.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_feature_bar.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_none.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_none.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_none.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/git_branch_none.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_parents.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_parents.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_parents.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_parents.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_tags.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_tags.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_tags.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/hg_tags.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/svn_info.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/svn_info.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/svn_info.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/fixtures/svn_info.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec.opts b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec.opts
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec.opts
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec.opts
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/filesystem_helpers.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/filesystem_helpers.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/filesystem_helpers.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/filesystem_helpers.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/fixture_helpers.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/fixture_helpers.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/fixture_helpers.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/support/fixture_helpers.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/bzr_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/bzr_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/bzr_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/bzr_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/cvs_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/cvs_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/cvs_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/cvs_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/git_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/git_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/git_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/git_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/hg_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/hg_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/hg_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/hg_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/svn_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/svn_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/svn_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/provider/vcsrepo/svn_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/type/README.markdown b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/type/README.markdown
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/type/README.markdown
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/vcsrepo/spec/unit/puppet/type/README.markdown
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.fixtures.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.fixtures.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.fixtures.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.fixtures.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.gemfile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.gemfile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.gemfile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.gemfile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.project b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.project
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.project
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.project
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.travis.yml b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.travis.yml
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.travis.yml
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/.travis.yml
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/LICENSE b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/LICENSE
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/LICENSE
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/LICENSE
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Modulefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Modulefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Modulefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Modulefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/README.md b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/README.md
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/README.md
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/README.md
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Rakefile b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Rakefile
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Rakefile
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/Rakefile
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-CentOS-6 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-CentOS-6
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-CentOS-6
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-CentOS-6
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-EPEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-EPEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-EPEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-EPEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-RBEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-RBEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-RBEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-RBEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-beta b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-beta
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-beta
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-beta
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-kbsingh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-kbsingh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-kbsingh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-kbsingh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-remi b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-remi
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-remi
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-remi
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-rpmforge-dag b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-webtatic-andy b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-webtatic-andy
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-webtatic-andy
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY-webtatic-andy
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY.atrpms b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY.atrpms
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY.atrpms
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RPM-GPG-KEY.atrpms
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RubyWorks.GPG.key b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RubyWorks.GPG.key
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RubyWorks.GPG.key
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Amazon.3/rpm-gpg/RubyWorks.GPG.key
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.4/rpm-gpg/RPM-GPG-KEY-EPEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.4/rpm-gpg/RPM-GPG-KEY-EPEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.4/rpm-gpg/RPM-GPG-KEY-EPEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.4/rpm-gpg/RPM-GPG-KEY-EPEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-CentOS-5 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-CentOS-5
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-CentOS-5
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-CentOS-5
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-EPEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-EPEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-EPEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-EPEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-RBEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-RBEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-RBEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-RBEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-beta b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-beta
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-beta
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-beta
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-kbsingh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-kbsingh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-kbsingh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-kbsingh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-remi b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-remi
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-remi
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-remi
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-rpmforge-dag b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-webtatic-andy b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-webtatic-andy
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-webtatic-andy
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY-webtatic-andy
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.art b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.art
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.art
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.art
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.atrpms b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.atrpms
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.atrpms
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RPM-GPG-KEY.atrpms
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RubyWorks.GPG.key b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RubyWorks.GPG.key
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RubyWorks.GPG.key
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.5/rpm-gpg/RubyWorks.GPG.key
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-CentOS-6 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-CentOS-6
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-CentOS-6
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-CentOS-6
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-EPEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-EPEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-EPEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-EPEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-PGDG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-PGDG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-PGDG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-PGDG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-RBEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-RBEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-RBEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-RBEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-beta b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-beta
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-beta
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-beta
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-kbsingh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-kbsingh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-kbsingh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-kbsingh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-remi b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-remi
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-remi
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-remi
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-webtatic-andy b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-webtatic-andy
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-webtatic-andy
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY-webtatic-andy
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.art b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.art
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.art
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.art
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.atrpms b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.atrpms
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.atrpms
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RPM-GPG-KEY.atrpms
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RubyWorks.GPG.key b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RubyWorks.GPG.key
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RubyWorks.GPG.key
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/CentOS.6/rpm-gpg/RubyWorks.GPG.key
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-CentOS-5 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-CentOS-5
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-CentOS-5
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-CentOS-5
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-EPEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-EPEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-EPEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-EPEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-RBEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-RBEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-RBEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-RBEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-beta b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-beta
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-beta
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-beta
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-dawson b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-dawson
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-dawson
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-dawson
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-beta b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-beta
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-beta
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-beta
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-release b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-release
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-release
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-redhat-release
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-remi b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-remi
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-remi
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-remi
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl3 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl3
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl3
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl3
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl4 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl4
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl4
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl4
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl5 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl5
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl5
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl5
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl6 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl6
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl6
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY-sl6
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY.atrpms b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY.atrpms
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY.atrpms
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RPM-GPG-KEY.atrpms
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RubyWorks.GPG.key b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RubyWorks.GPG.key
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RubyWorks.GPG.key
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/Scientific.6/rpm-gpg/RubyWorks.GPG.key
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/empty/.placeholder b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/empty/.placeholder
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/empty/.placeholder
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/empty/.placeholder
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-5 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-5
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-5
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-5
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-6 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-6
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-6
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-CentOS-6
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-4 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-4
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-4
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-4
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-5 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-5
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-5
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-5
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-6 b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-6
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-6
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-EPEL-6
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-PGDG b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-PGDG
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-PGDG
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-PGDG
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-RBEL b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-RBEL
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-RBEL
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-RBEL
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-beta b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-beta
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-beta
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-beta
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-elrepo.org b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-elrepo.org
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-elrepo.org
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-elrepo.org
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-kbsingh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-kbsingh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-kbsingh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-kbsingh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-beta b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-beta
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-beta
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-beta
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-former
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-release
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-legacy-rhx
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-release b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-release
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-release
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-redhat-release
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-remi b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-remi
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-remi
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-remi
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-rpmforge-dag b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-rpmforge-dag
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-sl b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-sl
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-sl
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-sl
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-webtatic-andy b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-webtatic-andy
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-webtatic-andy
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY-webtatic-andy
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.art b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.art
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.art
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.art
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.atrpms b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.atrpms
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.atrpms
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RPM-GPG-KEY.atrpms
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RubyWorks.GPG.key b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RubyWorks.GPG.key
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RubyWorks.GPG.key
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/rpm-gpg/RubyWorks.GPG.key
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/yum-updatesd.conf b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/yum-updatesd.conf
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/yum-updatesd.conf
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/files/yum-updatesd.conf
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/cron.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/cron.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/cron.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/cron.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/defaults.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/defaults.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/defaults.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/defaults.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/init.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/init.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/init.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/init.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/managed_yumrepo.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/managed_yumrepo.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/managed_yumrepo.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/managed_yumrepo.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/params.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/params.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/params.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/params.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/plugin.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/plugin.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/plugin.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/plugin.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/prerequisites.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/prerequisites.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/prerequisites.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/prerequisites.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/10gen.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/10gen.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/10gen.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/10gen.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atomic.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atomic.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atomic.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atomic.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atrpms.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atrpms.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atrpms.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/atrpms.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centalt.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centalt.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centalt.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centalt.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos4.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos4.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos4.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos4.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos5.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos5.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos5.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos5.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos6.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos6.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos6.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos6.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos_testing.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos_testing.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos_testing.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/centos_testing.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/ceph.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/ceph.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/ceph.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/ceph.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch10.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch10.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch10.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch10.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch90.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch90.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch90.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elasticsearch90.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elrepo.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elrepo.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elrepo.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/elrepo.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/epel.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/epel.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/epel.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/epel.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/foreman.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/foreman.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/foreman.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/foreman.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/integ_ganeti.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/integ_ganeti.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/integ_ganeti.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/integ_ganeti.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage5.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage5.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage5.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage5.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage6.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage6.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage6.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/jpackage6.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/karan.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/karan.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/karan.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/karan.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/logstash13.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/logstash13.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/logstash13.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/logstash13.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/mongodb.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/mongodb.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/mongodb.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/mongodb.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/monitoringsucks.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/monitoringsucks.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/monitoringsucks.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/monitoringsucks.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/newrelic.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/newrelic.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/newrelic.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/newrelic.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/nginx.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/nginx.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/nginx.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/nginx.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/openstack_grizzly.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/openstack_grizzly.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/openstack_grizzly.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/openstack_grizzly.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/passenger.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/passenger.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/passenger.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/passenger.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg91.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg91.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg91.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg91.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg92.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg92.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg92.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg92.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg93.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg93.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg93.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/pgdg93.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetdevel.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetdevel.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetdevel.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetdevel.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetlabs.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetlabs.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetlabs.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/puppetlabs.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rbel.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rbel.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rbel.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rbel.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi_php55.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi_php55.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi_php55.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/remi_php55.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforge.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforge.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforge.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforge.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforgeextras.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforgeextras.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforgeextras.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/repoforgeextras.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rpmforge.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rpmforge.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rpmforge.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/rpmforge.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl5.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl5.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl5.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl5.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl6.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl6.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl6.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/sl6.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/tmz.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/tmz.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/tmz.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/tmz.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/varnish.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/varnish.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/varnish.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/varnish.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/vfabric.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/vfabric.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/vfabric.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/vfabric.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/virtualbox.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/virtualbox.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/virtualbox.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/virtualbox.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/webtatic.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/webtatic.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/webtatic.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/repo/webtatic.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/updatesd.pp b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/updatesd.pp
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/updatesd.pp
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/manifests/updatesd.pp
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/classes/yum_spec.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/classes/yum_spec.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/classes/yum_spec.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/classes/yum_spec.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/spec_helper.rb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/spec_helper.rb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/spec_helper.rb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/spec/spec_helper.rb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/templates/yum-cron.erb b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/templates/yum-cron.erb
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/templates/yum-cron.erb
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/puppet/modules/yum/templates/yum-cron.erb
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/execute-files.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/execute-files.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/execute-files.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/execute-files.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/hostsupdater-notice.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/hostsupdater-notice.txt
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/hostsupdater-notice.txt
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/hostsupdater-notice.txt
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.sh
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt
new file mode 100644
index 0000000000..5251c3e331
--- /dev/null
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/important-notices.txt
@@ -0,0 +1,39 @@
+▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
+ _____ _ _
+ | __ \| | | |
+ | |__) | |__ _ __ __ _ ___ ___ __ _ _ __ ___| |_
+ | ___/| '_ \| '__/ _` / __|/ _ \/ _` | '_ \ / _ \ __|
+ | | | | | | | | (_| \__ \ __/ (_| | | | | __/ |_
+ |_| |_| |_|_| \__,_|___/\___|\__,_|_| |_|\___|\__|
+
+▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
+
+Read me for some important information!
+
+If Puppet did not blow up (you do not see a sea of red above), then your VM
+was generated successfully!
+
+* You can print current ssh information by running 'vagrant ssh-config'
+ command
+
+* To access to phraseanet just type 'phraseanet-php54-nginx' in
+ your web browser address bar.
+
+* The mysql default credentials are:
+ user: root
+ password: toor
+
+Did something go wrong? Please fill a Github issues at
+https://github.com/alchemy-fr/phraseanet/issues.
+
+Happy programming!
+ - Phraseanet Team
+
+▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
+ ____ _ _ _ _
+ | _ \ ___ __ _ __| | / \ | |__ _____ _____| |
+ | |_) / _ \/ _` |/ _` | / _ \ | '_ \ / _ \ \ / / _ \ |
+ | _ < __/ (_| | (_| | / ___ \| |_) | (_) \ V / __/_|
+ |_| \_\___|\__,_|\__,_| /_/ \_\_.__/ \___/ \_/ \___(_)
+
+▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/initial-setup.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/initial-setup.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/initial-setup.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/initial-setup.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/os-detect.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/os-detect.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/os-detect.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/os-detect.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/r10k.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/r10k.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/r10k.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/r10k.sh
diff --git a/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt
new file mode 100644
index 0000000000..6c00d6839b
--- /dev/null
+++ b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/self-promotion.txt
@@ -0,0 +1,2 @@
+
+Generated using puphpet.com
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/ssh-keygen.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/ssh-keygen.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/ssh-keygen.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/ssh-keygen.sh
diff --git a/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/update-puppet.sh b/resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/update-puppet.sh
similarity index 100%
rename from vagrant/vms/phraseanet-php54-nginx/puphpet/shell/update-puppet.sh
rename to resources/vagrant/vms/phraseanet-php54-nginx/puphpet/shell/update-puppet.sh
diff --git a/templates/web/admin/databox/databox.html.twig b/templates/web/admin/databox/databox.html.twig
index e868ba9574..c95ff483fe 100644
--- a/templates/web/admin/databox/databox.html.twig
+++ b/templates/web/admin/databox/databox.html.twig
@@ -50,6 +50,11 @@
({{ 'phraseanet:: details' | trans }})
+
+ {{ 'admin::base: subdefs to be created :' | trans }}
+
+
+
{% if showDetail %}
{{ 'admin::base: nombre de mots uniques sur la base :' | trans }}
@@ -276,6 +281,13 @@
p = 100*data.thesaurus_indexed/data.records;
$("#thesaurus_indexed_bar").width(Math.round(2*p));
$("#thesaurus_indexed_percent").text((Math.round(p*100)/100)+" %");
+
+ var t = "";
+ for(var i in data.jeton_subdef)
+ {
+ t += (t==""?"":" ; ") + i + ": " + data.jeton_subdef[i];
+ }
+ $("#subdefs_todo").text(t);
}
if(data.printLogoURL)
diff --git a/templates/web/prod/thesaurus.js.twig b/templates/web/prod/thesaurus.js.twig
index 8bfd8bbdb4..2958ad8679 100644
--- a/templates/web/prod/thesaurus.js.twig
+++ b/templates/web/prod/thesaurus.js.twig
@@ -340,7 +340,7 @@ function T_acceptCandidates_OK()
+ j.parm['sbid'] + '\\.'
+ j.parm['id'].replace(new RegExp("\\.", "g"), "\\."); // escape les '.' pour jquery
- $(z).replaceWith(j.html);
+ $(z).children('ul').eq(0).replaceWith(j.html);
}
, "json");
}
@@ -634,12 +634,7 @@ function Xclick(e)
{
if(is_ctrl_key(e))
{
- var oldField = ul.attr('field');
- ul.remove();
- if(oldField)
- li.append('