File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ #
3+ # Check that the configuration for deis-builder is valid.
4+ #
5+
6+ if grep -q " <no value>" $1 ; then
7+ exit 1
8+ fi
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ mode = "0600"
77keys = [
88 " /deis/builder/users" ,
99]
10+ check_cmd = " /app/bin/check {{ .src }}"
Original file line number Diff line number Diff line change 99 " /deis/builder" ,
1010 " /deis/registry" ,
1111]
12+ check_cmd = " /app/bin/check {{ .src }}"
Original file line number Diff line number Diff line change 88 " /deis/services" ,
99]
1010reload_cmd = " /home/git/check-repos"
11+ check_cmd = " /app/bin/check {{ .src }}"
Original file line number Diff line number Diff line change @@ -3,4 +3,5 @@ src = "gitreceive"
33dest = " /usr/local/bin/gitreceive"
44uid = 0
55gid = 0
6- mode = " 0755"
6+ mode = " 0755"
7+ check_cmd = " /app/bin/check {{ .src }}"
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ mode = "0755"
77keys = [
88 " /deis/controller" ,
99]
10+ check_cmd = " /app/bin/check {{ .src }}"
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ #
3+ # Check that the configuration for deis-registry is valid.
4+ #
5+
6+ if grep -q " <no value>" $1 ; then
7+ exit 1
8+ fi
You can’t perform that action at this time.
0 commit comments