mirror of
https://github.com/YunoHost-Apps/phpldapadmin_ynh.git
synced 2024-09-03 19:56:45 +02:00
Testing (#27)
* 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 * Auto-update README * Update manifest.toml * Auto-update README * fix --------- 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
508516fc28
commit
878f42ab94
5 changed files with 11 additions and 8 deletions
|
@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
|
||||||
|
|
||||||
phpLDAPadmin is a web app for administering Lightweight Directory Access Protocol (LDAP) servers.
|
phpLDAPadmin is a web app for administering Lightweight Directory Access Protocol (LDAP) servers.
|
||||||
|
|
||||||
**Shipped version:** 1.2.6.6~ynh4
|
**Shipped version:** 1.2.6.7~ynh1
|
||||||
|
|
||||||
**Demo:** https://olddemo.phpldapadmin.org/
|
**Demo:** https://olddemo.phpldapadmin.org/
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
|
||||||
|
|
||||||
phpLDAPadmin is a web app for administering Lightweight Directory Access Protocol (LDAP) servers.
|
phpLDAPadmin is a web app for administering Lightweight Directory Access Protocol (LDAP) servers.
|
||||||
|
|
||||||
**Version incluse :** 1.2.6.6~ynh4
|
**Version incluse :** 1.2.6.7~ynh1
|
||||||
|
|
||||||
**Démo :** https://olddemo.phpldapadmin.org/
|
**Démo :** https://olddemo.phpldapadmin.org/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ name = "phpLDAPadmin"
|
||||||
description.en = "Manage OpenLDAP database over the web"
|
description.en = "Manage OpenLDAP database over the web"
|
||||||
description.fr = "Application web de gestion de la base OpenLDAP"
|
description.fr = "Application web de gestion de la base OpenLDAP"
|
||||||
|
|
||||||
version = "1.2.6.6~ynh4"
|
version = "1.2.6.7~ynh1"
|
||||||
|
|
||||||
maintainers = ["aymhce"]
|
maintainers = ["aymhce"]
|
||||||
|
|
||||||
|
@ -20,8 +20,11 @@ code = "https://github.com/leenooks/phpLDAPadmin"
|
||||||
yunohost = ">= 11.2"
|
yunohost = ">= 11.2"
|
||||||
architectures = "all"
|
architectures = "all"
|
||||||
multi_instance = true
|
multi_instance = true
|
||||||
|
|
||||||
ldap = true
|
ldap = true
|
||||||
|
|
||||||
sso = false
|
sso = false
|
||||||
|
|
||||||
disk = "50M"
|
disk = "50M"
|
||||||
ram.build = "50M"
|
ram.build = "50M"
|
||||||
ram.runtime = "50M"
|
ram.runtime = "50M"
|
||||||
|
@ -43,8 +46,8 @@ ram.runtime = "50M"
|
||||||
|
|
||||||
[resources]
|
[resources]
|
||||||
[resources.sources.main]
|
[resources.sources.main]
|
||||||
url = "https://github.com/leenooks/phpLDAPadmin/archive/1.2.6.6.tar.gz"
|
url = "https://github.com/leenooks/phpLDAPadmin/archive/1.2.6.7.tar.gz"
|
||||||
sha256 = "7a8c02a611e60aa6713d1cf863dfac9637e23c3f4d401ea5e47dbe2b22d4895a"
|
sha256 = "dde104aca695e18b0615859ae96177cdcb8a3294aee8d1d47a0b828af939679d"
|
||||||
autoupdate.strategy = "latest_github_tag"
|
autoupdate.strategy = "latest_github_tag"
|
||||||
|
|
||||||
[resources.system_user]
|
[resources.system_user]
|
||||||
|
@ -56,4 +59,4 @@ ram.runtime = "50M"
|
||||||
main.allowed = "admins"
|
main.allowed = "admins"
|
||||||
|
|
||||||
[resources.apt]
|
[resources.apt]
|
||||||
packages ='php8.1-fpm, php8.1-ldap, php8.1-xml'
|
packages ='php8.2-ldap, php8.2-xml'
|
||||||
|
|
|
@ -36,7 +36,7 @@ ynh_add_nginx_config
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
||||||
|
|
||||||
ynh_add_config --template="../conf/config.php.example" --destination="$install_dir/config/config.php"
|
ynh_add_config --template="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"
|
chown $app:$app "$install_dir/config/config.php"
|
||||||
|
|
|
@ -48,7 +48,7 @@ ynh_add_nginx_config
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
||||||
|
|
||||||
ynh_add_config --template="../conf/config.php.example" --destination="$install_dir/config/config.php"
|
ynh_add_config --template="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"
|
chown $app:$app "$install_dir/config/config.php"
|
||||||
|
|
Loading…
Add table
Reference in a new issue