1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tube_ynh.git synced 2024-09-04 01:46:11 +02:00
This commit is contained in:
Éric Gaspar 2022-08-27 12:40:46 +02:00
parent 9a883f8d47
commit f93eea6a92
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 6 additions and 0 deletions

View file

@ -6,6 +6,7 @@ After=network.target
Type=simple Type=simple
User=__APP__ User=__APP__
Group=__APP__ Group=__APP__
Environment=auth_password=__PASSWORD__
WorkingDirectory=__FINALPATH__/ WorkingDirectory=__FINALPATH__/
ExecStart=__FINALPATH__/tube -c __FINALPATH__/config.json ExecStart=__FINALPATH__/tube -c __FINALPATH__/config.json

View file

@ -35,6 +35,10 @@
"name": "is_public", "name": "is_public",
"type": "boolean", "type": "boolean",
"default": true "default": true
},
{
"name": "password",
"type": "password"
} }
] ]
} }

View file

@ -27,6 +27,7 @@ ynh_abort_if_errors
domain=$YNH_APP_ARG_DOMAIN domain=$YNH_APP_ARG_DOMAIN
path_url="/" path_url="/"
is_public=$YNH_APP_ARG_IS_PUBLIC is_public=$YNH_APP_ARG_IS_PUBLIC
password=$YNH_APP_ARG_PASSWORD
app=$YNH_APP_INSTANCE_NAME app=$YNH_APP_INSTANCE_NAME