From 0c53a06db983206c1e95e8b4cf2987a58be9e2e0 Mon Sep 17 00:00:00 2001 From: Ramy Asselin Date: Thu, 29 Jan 2015 11:14:59 -0800 Subject: [PATCH] Add initial puppet module files for mysql_backup Change-Id: I382807c7fb4891d9304f0d24baa947dd4fab7055 --- .gitreview | 4 ++++ README.md | 3 +++ Rakefile | 8 ++++++++ metadata.json | 11 +++++++++++ 4 files changed, 26 insertions(+) create mode 100644 .gitreview create mode 100644 README.md create mode 100644 Rakefile create mode 100644 metadata.json diff --git a/.gitreview b/.gitreview new file mode 100644 index 0000000..8da8ba0 --- /dev/null +++ b/.gitreview @@ -0,0 +1,4 @@ +[gerrit] +host=review.openstack.org +port=29418 +project=openstack-infra/puppet-mysql_backup.git diff --git a/README.md b/README.md new file mode 100644 index 0000000..c4ca8aa --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# OpenStack MySQL Backup Module + +This module installs and configures MySQL Backup diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..7f22329 --- /dev/null +++ b/Rakefile @@ -0,0 +1,8 @@ +require 'rubygems' +require 'puppetlabs_spec_helper/rake_tasks' +require 'puppet-lint/tasks/puppet-lint' +PuppetLint.configuration.fail_on_warnings = true +PuppetLint.configuration.send('disable_80chars') +PuppetLint.configuration.send('disable_autoloader_layout') +PuppetLint.configuration.send('disable_class_inherits_from_params_class') +PuppetLint.configuration.send('disable_class_parameter_defaults') \ No newline at end of file diff --git a/metadata.json b/metadata.json new file mode 100644 index 0000000..a32ed1c --- /dev/null +++ b/metadata.json @@ -0,0 +1,11 @@ +{ + "name": "openstackci-mysql_backup", + "version": "0.0.1", + "author": "OpenStack CI", + "summary": "Puppet module for MySQL Backup", + "license": "Apache 2.0", + "source": "git://git.openstack.org/openstack-infra/puppet-mysql_backup.git", + "project_page": "http://ci.openstack.org/", + "issues_url": "https://storyboard.openstack.org/#!/project/802", + "dependencies": [] +}