forked from buildbot/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix weird *_ENABLED behaviour in /etc/default/* files
- Loading branch information
1 parent
fbd9b46
commit eb771d1
Showing
6 changed files
with
125 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
MASTER_RUNNER=/usr/bin/buildbot | ||
|
||
MASTER_ENABLED[1]=0 # 0-enabled, other-disabled | ||
# NOTE: MASTER_ENABLED has changed its behaviour in version 0.8.4. Use | ||
# 'true|yes|1' to enable instance and 'false|no|0' to disable. Other | ||
# values will be considered as syntax error. | ||
|
||
MASTER_ENABLED[1]=0 # 1-enabled, 0-disabled | ||
MASTER_NAME[1]="buildmaster #1" # short name printed on start/stop | ||
MASTER_USER[1]="buildbot" # user to run master as | ||
MASTER_BASEDIR[1]="" # basedir to master (absolute path) | ||
MASTER_OPTIONS[1]="" # buildbot options | ||
MASTER_OPTIONS[1]="" # buildbot options | ||
MASTER_PREFIXCMD[1]="" # prefix command, i.e. nice, linux32, dchroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
SLAVE_RUNNER=/usr/bin/buildslave | ||
|
||
SLAVE_ENABLED[1]=0 # 0-enabled, other-disabled | ||
# NOTE: SLAVE_ENABLED has changed its behaviour in version 0.8.4. Use | ||
# 'true|yes|1' to enable instance and 'false|no|0' to disable. Other | ||
# values will be considered as syntax error. | ||
|
||
SLAVE_ENABLED[1]=0 # 1-enabled, 0-disabled | ||
SLAVE_NAME[1]="buildslave #1" # short name printed on start/stop | ||
SLAVE_USER[1]="buildbot" # user to run slave as | ||
SLAVE_BASEDIR[1]="" # basedir to slave (absolute path) | ||
SLAVE_OPTIONS[1]="" # buildbot options | ||
SLAVE_OPTIONS[1]="" # buildbot options | ||
SLAVE_PREFIXCMD[1]="" # prefix command, i.e. nice, linux32, dchroot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters