mirror of
https://github.com/YunoHost/yunorunner.git
synced 2024-09-03 20:05:52 +02:00
Fix finish_install script overwriting config.py
This commit is contained in:
parent
50ae066741
commit
6c35960435
1 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ EOF
|
||||||
# For automatic / "main" CI we want to auto schedule jobs using the app list
|
# For automatic / "main" CI we want to auto schedule jobs using the app list
|
||||||
if [ $ci_type == "auto" ]
|
if [ $ci_type == "auto" ]
|
||||||
then
|
then
|
||||||
cat >$YUNORUNNER_HOME/config.py <<EOF
|
cat >>$YUNORUNNER_HOME/config.py <<EOF
|
||||||
MONITOR_APPS_LIST = True
|
MONITOR_APPS_LIST = True
|
||||||
MONITOR_GIT = True
|
MONITOR_GIT = True
|
||||||
MONITOR_ONLY_GOOD_QUALITY_APPS = False
|
MONITOR_ONLY_GOOD_QUALITY_APPS = False
|
||||||
|
@ -105,7 +105,7 @@ EOF
|
||||||
# For Dev CI, we want to control the job scheduling entirely
|
# For Dev CI, we want to control the job scheduling entirely
|
||||||
# (c.f. the github webhooks)
|
# (c.f. the github webhooks)
|
||||||
else
|
else
|
||||||
cat >$YUNORUNNER_HOME/config.py <<EOF
|
cat >>$YUNORUNNER_HOME/config.py <<EOF
|
||||||
MONITOR_APPS_LIST = False
|
MONITOR_APPS_LIST = False
|
||||||
MONITOR_GIT = False
|
MONITOR_GIT = False
|
||||||
MONITOR_ONLY_GOOD_QUALITY_APPS = False
|
MONITOR_ONLY_GOOD_QUALITY_APPS = False
|
||||||
|
|
Loading…
Add table
Reference in a new issue