Skip to content

Commit

Permalink
Merge pull request #24 from palantirnet/release/drupalbox-v0.1.0
Browse files Browse the repository at this point in the history
Release/drupalbox v0.1.0
  • Loading branch information
mathewpeterson authored Aug 9, 2016
2 parents c9910cd + 970be1f commit 5eb76d7
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2

[Makefile]
indent_style = tabs
indent_size = 4
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@

PACKER:=$(shell which packer)
PACKER_BUILD=build
.PHONY: devkit drupalbox ubuntu1404 ubuntu1604

drupalbox1404: drupalbox1404-vmware drupalbox1404-virtualbox

drupalbox1404-vmware:
$(PACKER) $(PACKER_BUILD) --only=vmware-iso --var-file=drupalbox/ubuntu1404.json drupalbox/drupalbox.json

drupalbox1404-virtualbox:
$(PACKER) $(PACKER_BUILD) --only=virtualbox-iso --var-file=drupalbox/ubuntu1404.json drupalbox/drupalbox.json

drupalbox1604:
$(PACKER) --var-file=drupalbox/ubuntu1604.json drupalbox/drupalbox.json

ubuntu1404:
$(PACKER) ubuntu1404/ubuntu1404.json

ubuntu1604:
$(PACKER) ubuntu1604/ubuntu1604.json
6 changes: 5 additions & 1 deletion drupalbox/CHANGELOG-0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [0.1.0] - 2016-08-09

### Added

- Memcached role
- Mailhog role
- Jetty role
- Solr role

### Fixed

- Fixed Firefox from being removed during minimize.sh
2 changes: 1 addition & 1 deletion drupalbox/ubuntu1404.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"iso_name": "ubuntu-14.04.4-server-amd64.iso",
"iso_path": "iso",
"iso_url": "http://releases.ubuntu.com/14.04/ubuntu-14.04.4-server-amd64.iso",
"version": "0.0.8"
"version": "0.1.0"
}
2 changes: 1 addition & 1 deletion script/minimize.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ apt-get -y purge ruby ri doc
echo "==> Removing default system Python"
apt-get -y purge python-dbus libnl1 python-smartpm python-twisted-core libiw30 python-twisted-bin libdbus-glib-1-2 python-pexpect python-pycurl python-serial python-gobject python-pam python-openssl libffi5
echo "==> Removing X11 libraries"
apt-get -y purge libx11-data xauth libxmuu1 libxcb1 libx11-6 libxext6
apt-get -y purge xauth libxmuu1
echo "==> Removing obsolete networking components"
apt-get -y purge ppp pppconfig pppoeconf
echo "==> Removing other oddities"
Expand Down

0 comments on commit 5eb76d7

Please sign in to comment.