diff mbox

udev: fix /var/volatile/tmp permissions

Message ID 1408007033-22777-1-git-send-email-riku.voipio@linaro.org
State Accepted
Commit 5743c7632ac9c33051f6fca60f5507d3808e8e3a
Headers show

Commit Message

Riku Voipio Aug. 14, 2014, 9:03 a.m. UTC
Mariadb postinstall will fail with:

ERROR: 1  Can't create/write to file '/tmp/#sql_a2a_0.MAI' (Errcode: 13)
140814  8:14:06 [ERROR] Aborting

/tmp is a link to /var/volatile/tmp, set as:

drwxr-xr-x 3 root root 60 Aug 14 08:07 .

populate-volatiles.sh does not create the directory or set
permissions, because it already exists:

Checking for -/var/volatile/tmp-.
Creating directory -/var/volatile/tmp-.
Target already exists. Skipping.

Traced the creation to the initfile in udev. Create with -m 1755
to be sure. With this patch applied, mysql postinst succeeds and
creates the neccesary user tables.

Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
---
 meta/recipes-core/udev/udev/init | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Riku Voipio Aug. 18, 2014, 7:46 a.m. UTC | #1
Hi,

Any updates on this one?

Riku

On 14 August 2014 12:03, Riku Voipio <riku.voipio@linaro.org> wrote:
> Mariadb postinstall will fail with:
>
> ERROR: 1  Can't create/write to file '/tmp/#sql_a2a_0.MAI' (Errcode: 13)
> 140814  8:14:06 [ERROR] Aborting
>
> /tmp is a link to /var/volatile/tmp, set as:
>
> drwxr-xr-x 3 root root 60 Aug 14 08:07 .
>
> populate-volatiles.sh does not create the directory or set
> permissions, because it already exists:
>
> Checking for -/var/volatile/tmp-.
> Creating directory -/var/volatile/tmp-.
> Target already exists. Skipping.
>
> Traced the creation to the initfile in udev. Create with -m 1755
> to be sure. With this patch applied, mysql postinst succeeds and
> creates the neccesary user tables.
>
> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
> ---
>  meta/recipes-core/udev/udev/init | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
> index f2c84d5..a442c74 100644
> --- a/meta/recipes-core/udev/udev/init
> +++ b/meta/recipes-core/udev/udev/init
> @@ -57,7 +57,7 @@ case "$1" in
>      # the automount rule for udev needs /tmp directory available, as /tmp is a symlink
>      # to /var/tmp which in turn is a symlink to /var/volatile/tmp, we need to make sure
>      # /var/volatile/tmp directory to be available.
> -    mkdir -p /var/volatile/tmp
> +    mkdir -m 1777 -p /var/volatile/tmp
>
>      # Cache handling.
>      # A list of files which are used as a criteria to judge whether the udev cache could be reused.
> --
> 2.0.1
>
Fathi Boudra Aug. 27, 2014, 6:46 a.m. UTC | #2
On 18 August 2014 10:46, Riku Voipio <riku.voipio@linaro.org> wrote:
> Hi,
>
> Any updates on this one?

<rant>it's in master-next since 4 days. ~10 days after you posted the
patch.</rant>

> Riku
>
> On 14 August 2014 12:03, Riku Voipio <riku.voipio@linaro.org> wrote:
>> Mariadb postinstall will fail with:
>>
>> ERROR: 1  Can't create/write to file '/tmp/#sql_a2a_0.MAI' (Errcode: 13)
>> 140814  8:14:06 [ERROR] Aborting
>>
>> /tmp is a link to /var/volatile/tmp, set as:
>>
>> drwxr-xr-x 3 root root 60 Aug 14 08:07 .
>>
>> populate-volatiles.sh does not create the directory or set
>> permissions, because it already exists:
>>
>> Checking for -/var/volatile/tmp-.
>> Creating directory -/var/volatile/tmp-.
>> Target already exists. Skipping.
>>
>> Traced the creation to the initfile in udev. Create with -m 1755
>> to be sure. With this patch applied, mysql postinst succeeds and
>> creates the neccesary user tables.
>>
>> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
>> ---
>>  meta/recipes-core/udev/udev/init | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
>> index f2c84d5..a442c74 100644
>> --- a/meta/recipes-core/udev/udev/init
>> +++ b/meta/recipes-core/udev/udev/init
>> @@ -57,7 +57,7 @@ case "$1" in
>>      # the automount rule for udev needs /tmp directory available, as /tmp is a symlink
>>      # to /var/tmp which in turn is a symlink to /var/volatile/tmp, we need to make sure
>>      # /var/volatile/tmp directory to be available.
>> -    mkdir -p /var/volatile/tmp
>> +    mkdir -m 1777 -p /var/volatile/tmp
>>
>>      # Cache handling.
>>      # A list of files which are used as a criteria to judge whether the udev cache could be reused.
>> --
>> 2.0.1
>>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
diff mbox

Patch

diff --git a/meta/recipes-core/udev/udev/init b/meta/recipes-core/udev/udev/init
index f2c84d5..a442c74 100644
--- a/meta/recipes-core/udev/udev/init
+++ b/meta/recipes-core/udev/udev/init
@@ -57,7 +57,7 @@  case "$1" in
     # the automount rule for udev needs /tmp directory available, as /tmp is a symlink
     # to /var/tmp which in turn is a symlink to /var/volatile/tmp, we need to make sure
     # /var/volatile/tmp directory to be available.
-    mkdir -p /var/volatile/tmp
+    mkdir -m 1777 -p /var/volatile/tmp
 
     # Cache handling.
     # A list of files which are used as a criteria to judge whether the udev cache could be reused.