1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/couchpotato_ynh.git synced 2024-09-03 18:16:22 +02:00

Merge pull request #7 from scith/master

Check_process improvements
This commit is contained in:
Jeff 2017-04-10 19:37:46 +02:00 committed by GitHub
commit 294f19179a
4 changed files with 19 additions and 1 deletions

View file

@ -20,3 +20,16 @@
fail_download_source=0 fail_download_source=0
port_already_use=1 (5050) port_already_use=1 (5050)
final_path_already_use=0 final_path_already_use=0
;;; Levels
Level 1=auto
Level 2=auto
Level 3=auto
# The app is single-user and does not support LDAP. It is therefore protected behind SSO.
Level 4=1
# See https://github.com/YunoHost/package_linter/issues/15
Level 5=1
Level 6=auto
Level 7=auto
Level 8=0
Level 9=0
Level 10=0

View file

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
#set -eu
set -u
app=$YNH_APP_INSTANCE_NAME app=$YNH_APP_INSTANCE_NAME
# Source app helpers # Source app helpers

View file

@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
set -eu
app=$YNH_APP_INSTANCE_NAME app=$YNH_APP_INSTANCE_NAME
# Source app helpers # Source app helpers

View file

@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
set -eu
app=$YNH_APP_INSTANCE_NAME app=$YNH_APP_INSTANCE_NAME
source="https://github.com/CouchPotato/CouchPotatoServer" source="https://github.com/CouchPotato/CouchPotatoServer"