File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
_provisioning/samson-deployment/general/bin/service.d
samson-deployment/latest/conf/bin/service.d Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 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#############################
Original file line number Diff line number Diff line change 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#############################
You can’t perform that action at this time.
0 commit comments