mirror of
https://github.com/YunoHost-Apps/phpldapadmin_ynh.git
synced 2024-09-03 19:56:45 +02:00
Testing (#25)
* Add badges * Upgrade to v.1.2.6.2 * Remove --phpversion * Small fixes * set permissions * Fix linter warnings * Set SVG badge * Fix linter * patch (#11) * Add templates (#13) * Add templates * Update manifest.json * Auto-update README * Update check_process * 1.2.6.3 (#16) * 1.2.6.3 * Upgrade (#18) * Upgrade * Auto-update README * Fix Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Version 2 (#21) * v2 * Auto-update README * v2 * fix * Auto-update README * Create change_url * Update manifest.toml --------- Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Auto-update README * Update config.php.example Close #20 * fix linter * Update manifest.toml * Auto-update README * cleaning * Update manifest.toml * Update manifest.toml * Auto-update README * Auto-update README * Fix * Update upgrade * Update manifest.toml --------- Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: Tagada <36127788+Tagadda@users.noreply.github.com>
This commit is contained in:
parent
b236d2c08c
commit
37fc997496
5 changed files with 9 additions and 6 deletions
|
@ -31,7 +31,6 @@ phpLDAPadmin is a web app for administering Lightweight Directory Access Protoco
|
|||
* Official app website: <http://www.phpldapadmin.org>
|
||||
* Official admin documentation: <http://www.phpldapadmin.org>
|
||||
* Upstream app code repository: <https://github.com/leenooks/phpLDAPadmin>
|
||||
* YunoHost documentation for this app: <https://yunohost.org/app_phpldapadmin>
|
||||
* Report a bug: <https://github.com/YunoHost-Apps/phpldapadmin_ynh/issues>
|
||||
|
||||
## Developer info
|
||||
|
|
|
@ -31,7 +31,6 @@ phpLDAPadmin is a web app for administering Lightweight Directory Access Protoco
|
|||
* Site officiel de l’app : <http://www.phpldapadmin.org>
|
||||
* Documentation officielle de l’admin : <http://www.phpldapadmin.org>
|
||||
* Dépôt de code officiel de l’app : <https://github.com/leenooks/phpLDAPadmin>
|
||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_phpldapadmin>
|
||||
* Signaler un bug : <https://github.com/YunoHost-Apps/phpldapadmin_ynh/issues>
|
||||
|
||||
## Informations pour les développeurs
|
||||
|
|
|
@ -5,7 +5,7 @@ name = "phpLDAPadmin"
|
|||
description.en = "Manage OpenLDAP database over the web"
|
||||
description.fr = "Application web de gestion de la base OpenLDAP"
|
||||
|
||||
version = "1.2.6.6~ynh3"
|
||||
version = "1.2.6.6~ynh4"
|
||||
|
||||
maintainers = ["aymhce"]
|
||||
|
||||
|
@ -36,7 +36,7 @@ ram.runtime = "50M"
|
|||
|
||||
[install.init_main_permission]
|
||||
type = "group"
|
||||
default = "visitors"
|
||||
default = "admins"
|
||||
|
||||
[install.admin]
|
||||
type = "user"
|
||||
|
@ -53,6 +53,7 @@ ram.runtime = "50M"
|
|||
|
||||
[resources.permissions]
|
||||
main.url = "/"
|
||||
main.allowed = "admins"
|
||||
|
||||
[resources.apt]
|
||||
packages ='php8.1-fpm, php8.1-ldap, php8.1-xml'
|
||||
|
|
|
@ -37,7 +37,9 @@ ynh_add_nginx_config
|
|||
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
||||
|
||||
ynh_add_config --template="../conf/config.php.example" --destination="$install_dir/config/config.php"
|
||||
chmod 644 $install_dir/config/config.php
|
||||
|
||||
chmod 644 "$install_dir/config/config.php"
|
||||
chown $app:$app "$install_dir/config/config.php"
|
||||
|
||||
#=================================================
|
||||
# END OF SCRIPT
|
||||
|
|
|
@ -49,7 +49,9 @@ ynh_add_nginx_config
|
|||
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
||||
|
||||
ynh_add_config --template="../conf/config.php.example" --destination="$install_dir/config/config.php"
|
||||
chmod 644 $install_dir/config/config.php
|
||||
|
||||
chmod 644 "$install_dir/config/config.php"
|
||||
chown $app:$app "$install_dir/config/config.php"
|
||||
|
||||
#=================================================
|
||||
# END OF SCRIPT
|
||||
|
|
Loading…
Reference in a new issue