mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge branch 'testing' into unstable
This commit is contained in:
commit
8b44276af6
2 changed files with 18 additions and 2 deletions
|
@ -70,6 +70,13 @@ ynh_bind_or_cp() {
|
|||
# usage: ynh_mkdir_tmp
|
||||
# | ret: the created directory path
|
||||
ynh_mkdir_tmp() {
|
||||
echo "This helper is deprecated, you should use 'mktemp -d' instead." >&2
|
||||
mktemp -d
|
||||
echo "The helper ynh_mkdir_tmp is deprecated." >&2
|
||||
echo "You should use 'mktemp -d' instead and manage permissions \
|
||||
properly with chmod/chown." >&2
|
||||
local TMP_DIR=$(mktemp -d)
|
||||
|
||||
# Give rights to other users could be a security risk.
|
||||
# But for retrocompatibility we need it. (This helpers is deprecated)
|
||||
chmod 755 $TMP_DIR
|
||||
echo $TMP_DIR
|
||||
}
|
||||
|
|
9
debian/changelog
vendored
9
debian/changelog
vendored
|
@ -1,3 +1,12 @@
|
|||
yunohost (2.5.5) stable; urgency=low
|
||||
|
||||
Hotfix release
|
||||
|
||||
[ ljf ]
|
||||
* [fix] Permission issue on install of some apps 778
|
||||
|
||||
-- opi <opi@zeropi.net> Thu, 09 Feb 2017 22:27:08 +0100
|
||||
|
||||
yunohost (2.5.4) stable; urgency=low
|
||||
|
||||
[ Maniack Crudelis ]
|
||||
|
|
Loading…
Add table
Reference in a new issue