~alpine/aports

Re: [alpine-aports] [PATCH] main/nginx: pre-install to create /run/nginx

Details
Message ID
<tiysw05karrlf44jww2qg5ix.1477426599451@email.android.com>
Sender timestamp
1477426816
DKIM signature
missing
Download raw message
It done a long time ago in init script at start_pre() function.


Через Meizu M2 mini

-------- Оригинальное сообщение --------
От: Timo Teras <timo.teras@iki.fi>
Дата: вт 25/10 16:09
Для: Joe Borg <cyborg101010@gmail.com>
Копия: alpine-aports <alpine-aports@lists.alpinelinux.org>
Тема: Re: [alpine-aports] [PATCH] main/nginx: pre-install to create /run/nginx

>On Tue, 25 Oct 2016 08:40:54 +0100
>Joe Borg <cyborg101010@gmail.com> wrote:
>
>> Nginx throws an error, the first time you run it, because
>> the /run/nginx directory does not exist.  Have added to the
>> pre-install script to create this, if it doesn't already exist.
>> 
>> http://bugs.alpinelinux.org/issues/6380
>> ---
>>  main/nginx/nginx.pre-install | 4 ++++
>>  1 file changed, 4 insertions(+)
>> 
>> diff --git a/main/nginx/nginx.pre-install
>> b/main/nginx/nginx.pre-install index ae5b685..e30aa2f 100644
>> --- a/main/nginx/nginx.pre-install
>> +++ b/main/nginx/nginx.pre-install
>> @@ -5,4 +5,8 @@ addgroup -S nginx 2>/dev/null
>>  adduser -S -D -H -h /var/lib/nginx -s /sbin/nologin -G nginx -g
>> nginx nginx 2>/dev/null addgroup nginx www-data 2>/dev/null
>>  
>> +if [ ! -d /run/nginx ]; then
>> +    mkdir /run/nginx
>> +fi
>> +
>>  exit 0
>
>
>Not ok.
>
>$ mount|grep /run
>tmpfs on /run type tmpfs (rw,nodev,relatime,size=768268k,mode=755)
>
>That is /run is a tmpfs mount and gets recreated on reboot. This should
>be done in the init.d script.
>
>Thanks.
>
>
>---
>Unsubscribe:  alpine-aports+unsubscribe@lists.alpinelinux.org
>Help:         alpine-aports+help@lists.alpinelinux.org
>---
>
Reply to thread Export thread (mbox)