1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gitlab_ynh.git synced 2024-09-03 18:36:35 +02:00

Merge pull request #19 from YunoHost-Apps/testing

Trying to pass the package check
This commit is contained in:
bourreP 2019-01-15 23:08:54 +01:00 committed by GitHub
commit 3c2fdc9eb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View file

@ -32,17 +32,14 @@ Yes with LDAP support.
#### Supported architectures #### Supported architectures
* x86-64b - [![Build Status](https://ci-apps.yunohost.org/jenkins/job/gitlab%20(Community)/badge/icon)](https://ci-apps.yunohost.org/jenkins/job/gitlab%20(Community)/) * x86-64b - [![](https://ci-apps.yunohost.org/ci/logs/gitlab%20%28Community%29.svg)](https://ci-apps.yunohost.org/ci/apps/gitlab/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/jenkins/job/gitlab%20(Community)%20(%7EARM%7E)/badge/icon)](https://ci-apps-arm.yunohost.org/jenkins/job/gitlab%20(Community)%20(%7EARM%7E)/) * ARMv8-A - [![](https://ci-apps-arm.yunohost.org/ci/logs/gitlab%20%28Community%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/gitlab/)
* Jessie x86-64b - [![Build Status](https://ci-stretch.nohost.me/jenkins/job/gitlab%20(Community)/badge/icon)](https://ci-stretch.nohost.me/jenkins/job/gitlab%20(Community)/) * Jessie x86-64b - [![](https://ci-stretch.nohost.me/ci/logs/gitlab%20%28Community%29.svg)](https://ci-stretch.nohost.me/ci/apps/gitlab/)
## Limitations ## Limitations
* Not compatible with a 32-bit architecture. * Not compatible with a 32-bit architecture.
**More information on the documentation page:**
https://yunohost.org/packaging_apps
## Links ## Links
* Report a bug: https://github.com/YunoHost-Apps/gitlab_ynh/issues * Report a bug: https://github.com/YunoHost-Apps/gitlab_ynh/issues
@ -63,3 +60,6 @@ sudo yunohost app install https://github.com/YunoHost-Apps/gitlab_ynh/tree/testi
or or
sudo yunohost app upgrade gitlab -u https://github.com/YunoHost-Apps/gitlab_ynh/tree/testing --debug sudo yunohost app upgrade gitlab -u https://github.com/YunoHost-Apps/gitlab_ynh/tree/testing --debug
``` ```
**More information on the documentation page:**
https://yunohost.org/packaging_apps

View file

@ -6,8 +6,6 @@
path="/gitlab" (PATH) path="/gitlab" (PATH)
admin="john" (USER) admin="john" (USER)
is_public=1 (PUBLIC|public=1|private=0) is_public=1 (PUBLIC|public=1|private=0)
password="pass"
port="666" (PORT)
; Checks ; Checks
pkg_linter=1 pkg_linter=1
setup_sub_dir=1 setup_sub_dir=1

View file

@ -22,3 +22,5 @@ nginx['listen_https'] = false
nginx['listen_addresses'] = ["0.0.0.0", "[::]"] # listen on all IPv4 and IPv6 addresses nginx['listen_addresses'] = ["0.0.0.0", "[::]"] # listen on all IPv4 and IPv6 addresses
unicorn['port'] = __PORTUNICORN__ unicorn['port'] = __PORTUNICORN__
unicorn['worker_processes'] = 2

View file

@ -153,7 +153,7 @@ waiting_to_start() {
# get the PID of the tail command # get the PID of the tail command
local pid_tail=$! local pid_tail=$!
for i in $(seq 1 100) for i in $(seq 1 500)
do do
if grep --quiet "${line_match_new}" $templog || grep --quiet "${line_match_existing}" $templog if grep --quiet "${line_match_new}" $templog || grep --quiet "${line_match_existing}" $templog
then then