Skip to content

Commit 571798f

Browse files
committed
Merge branch 'release/0.21.5'
2 parents 41a28bc + 72a60f7 commit 571798f

File tree

14 files changed

+38
-0
lines changed

14 files changed

+38
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,18 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [WebDevOps.io Dockerfile](https://github.com/webdevops/Dockerfile).
44

5+
## [0.21.5] - 2016-03-24
6+
### Added
7+
- Fixed permissions automatically for /tmp if mounted as volume
8+
- Added error checks for samson service script
9+
510
## [0.21.0] - 2016-03-20
611
### Changed
712
- Improved entrypoint startup time
813
- Removed entrypoint ansible provisioning if not needed
914
- Added java-jre and latest npm for samson-deployment
1015

16+
1117
## [0.20.0] - 2016-02-24
1218
### Added
1319
- Added sqlite to base images
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp

_provisioning/samson-deployment/general/bin/service.d/samson.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/bash
22

3+
set -o pipefail ## trace ERR through pipes
4+
set -o errtrace ## trace ERR through 'time command' and other functions
5+
set -o nounset ## set -u : exit the script if you try to use an uninitialised variable
6+
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
7+
38
#############################
49
# Vacuum database
510
#############################
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Fix rights of /tmp (can be a volume)
2+
chmod 1777 /tmp

0 commit comments

Comments
 (0)