mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge branch 'stretch-stable' into stretch-unstable
This commit is contained in:
commit
b2de9a9d40
7 changed files with 34 additions and 6 deletions
|
@ -54,7 +54,6 @@ do_post_regen() {
|
|||
chmod g+s "/var/xmpp-upload/${main_domain}/upload"
|
||||
chown -R metronome:www-data "/var/xmpp-upload/${main_domain}"
|
||||
|
||||
|
||||
# fix some permissions
|
||||
chown -R metronome: /var/lib/metronome/
|
||||
chown -R metronome: /etc/metronome/conf.d/
|
||||
|
|
29
debian/changelog
vendored
29
debian/changelog
vendored
|
@ -5,6 +5,35 @@ yunohost (3.8.0~alpha) testing; urgency=low
|
|||
|
||||
-- Alexandre Aubin <alex.aubin@mailoo.org> Mon, 16 Mar 2020 01:00:00 +0000
|
||||
|
||||
yunohost (3.7.1) stable; urgency=low
|
||||
|
||||
- [enh] Add ynh_permission_has_user helper (#905)
|
||||
- [mod] Change behavior of ynh_setting_delete to try to make migrating away from legacy permissions easier (#906)
|
||||
- [fix] app_config_apply should also return 'app' info (#918)
|
||||
- [fix] uid/gid conflicts in user_create because of inconsistent comparison (#924)
|
||||
- [fix] Ensure metronome owns its directories (1f623830, 031f8a6e)
|
||||
- [mod] Remove useless sudos in helpers (be88a283)
|
||||
- [enh] Improve message wording for services (3c844292)
|
||||
- [enh] Attempt to anonymize data pasted to paste.yunohost.org (f56f4724)
|
||||
- [enh] Lazy load yunohost.certificate to possibly improve perfs (af8981e4)
|
||||
- [fix] Improve logging / debugging (1eef9b67, 7d323814, d17fcaf9, 210d5f3f)
|
||||
|
||||
Thanks to all contributors <3 ! (Bram, Kay0u, Maniack, Matthew D.)
|
||||
|
||||
-- Alexandre Aubin <alex.aubin@mailoo.org> Thu, 9 April 2020 14:52:00 +0000
|
||||
|
||||
yunohost (3.7.0.12) stable; urgency=low
|
||||
|
||||
- Fix previous buggy hotfix about deleting existing primary groups ...
|
||||
|
||||
-- Alexandre Aubin <alex.aubin@mailoo.org> Sat, 28 Mar 2020 14:52:00 +0000
|
||||
|
||||
yunohost (3.7.0.11) stable; urgency=low
|
||||
|
||||
- [fix] Mess due to automatic translation tools ~_~
|
||||
|
||||
-- Kay0u <pierre@kayou.io> Fri, 27 Mar 2020 23:49:45 +0000
|
||||
|
||||
yunohost (3.7.0.10) stable; urgency=low
|
||||
|
||||
- [fix] On some weird setup, this folder and content ain't readable by group ... gotta make sure to make rx for group other slapd will explode
|
||||
|
|
|
@ -173,4 +173,4 @@
|
|||
"app_remove_after_failed_install": "جارٍ حذف التطبيق بعدما فشل تنصيبها…",
|
||||
"apps_catalog_updating": "جارٍ تحديث فهرس التطبيقات…",
|
||||
"apps_catalog_update_success": "تم تحديث فهرس التطبيقات!"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -315,4 +315,4 @@
|
|||
"apps_catalog_update_success": "Der Apps-Katalog wurde aktualisiert!",
|
||||
"password_too_simple_1": "Das Passwort muss mindestens 8 Zeichen lang sein",
|
||||
"diagnosis_display_tip_cli": "Sie können 'yunohost diagnosis show --issues' ausführen, um die gefundenen Probleme anzuzeigen."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -591,4 +591,4 @@
|
|||
"log_app_action_run": "Funkciigu agon de la apliko '{}'",
|
||||
"log_app_config_show_panel": "Montri la agordan panelon de la apliko '{}'",
|
||||
"log_app_config_apply": "Apliki agordon al la apliko '{}'"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -571,4 +571,4 @@
|
|||
"diagnosis_diskusage_ok": "Lo lòc d’emmagazinatge {mountpoint} (sul periferic {device}) a encara {free_abs_GB} Go ({free_percent}%) de liure !",
|
||||
"diagnosis_swap_none": "Lo sistèma a pas cap de memòria d’escambi. Auriatz de considerar d’ajustar almens 256 Mo d’escambi per evitar las situacions ont lo sistèma manca de memòria.",
|
||||
"diagnosis_swap_notsomuch": "Lo sistèma a solament {total_MB} de memòria d’escambi. Auriatz de considerar d’ajustar almens 256 Mo d’escambi per evitar las situacions ont lo sistèma manca de memòria."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -462,7 +462,7 @@ def _update_ldap_group_permission(permission, allowed, sync_perm=True):
|
|||
return existing_permission
|
||||
|
||||
allowed = [allowed] if not isinstance(allowed, list) else allowed
|
||||
|
||||
|
||||
# Guarantee uniqueness of values in allowed, which would otherwise make ldap.update angry.
|
||||
allowed = set(allowed)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue