Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/drupalbox v0.1.0 #24

Merged
merged 6 commits into from
Aug 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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