Add very basic Vagrantfile for RPM-building env
authorDaniel Farrell <dfarrell@redhat.com>
Mon, 16 Mar 2015 03:35:58 +0000 (23:35 -0400)
committerDaniel Farrell <dfarrell@redhat.com>
Mon, 16 Mar 2015 04:01:18 +0000 (00:01 -0400)
* Standard F20 box, but known-to-work with helper scripts
* Add .gitignore with rule for RPMs (built in Vagrantbox)

Change-Id: I1c14fb89207f7613efb0fbd2856cbbab1af62c07
Signed-off-by: Daniel Farrell <dfarrell@redhat.com>
packaging/rpm/.gitignore [new file with mode: 0644]
packaging/rpm/Vagrantfile [new file with mode: 0644]

diff --git a/packaging/rpm/.gitignore b/packaging/rpm/.gitignore
new file mode 100644 (file)
index 0000000..e7a9c13
--- /dev/null
@@ -0,0 +1 @@
+*.rpm
diff --git a/packaging/rpm/Vagrantfile b/packaging/rpm/Vagrantfile
new file mode 100644 (file)
index 0000000..b60c16b
--- /dev/null
@@ -0,0 +1,10 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+# Vagrantfile API/syntax version.
+VAGRANTFILE_API_VERSION = "2"
+
+Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
+  # Build Vagrant box based on Fedora 20
+  config.vm.box = "chef/fedora-20"
+end