Received: from out-177.mta0.migadu.com (out-177.mta0.migadu.com [91.218.175.177]) by gbr-app-1.alpinelinux.org (Postfix) with ESMTPS id 26E7D225A94 for <~alpine/users@lists.alpinelinux.org>; Wed, 28 Feb 2024 20:44:51 +0000 (UTC) Message-ID: <476c66c4-c0c2-4693-90a1-694829417fbb@ecaf.be> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ecaf.be; s=key1; t=1709153089; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=6vmR1Jvs6zJ3C2kltfaVGgesTHlvXRTkF3wnbeO7ysU=; b=WZsgI+R/XelYXzjww/HpL54gq1lJ6POH1jXk0BL2qGZq8HX+AHlqQhx2eJgWU8SZRE+flc 9tbCYgaDmTkIZXVkdlbG7h9aLeKfOMImO85x77d3duhlMAtzScv+wOFaSjTmGDbRsEO0iY K3XHq4X0y7Rqpv6xfDcrRtcjaX5DaCT/0SdgOcQeITaRxLxE3PW4+yQ+Jsu6QF3ePZznsB dbnWKcJT6LURzdyxbFoT/5MGuOFCtbcUpyFlxnhVcvUvHCvJlD1PDAG966GlzplvoVlffL iit24kXH1TZPLbnebS6HRTIQpMP7nSJ7af/8Uk9XqdFHPqVr7O/Ej2fbb9ESvg== Date: Wed, 28 Feb 2024 21:44:46 +0100 MIME-Version: 1.0 To: ~alpine/users@lists.alpinelinux.org Content-Language: fr-BE X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Denis Subject: RCinit and env variables Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT Hello, I'm exploring more and more Alpine Linux for server, and I reallly like it! Thank you for all your job. Now, I'm trying to build a rc-service. A quite simple one, but there is one thing I cannot achieve: setting a env variable for the command. I have: ''' command="/my_app/exec" ''' And I want to have ''' CONFIG_FILE=/home/user/file ''' set for this command. I try the classic: ''' command="CONFIG_FILE=/home/user/file /my_app_exec" ''' But I get ''' CONFIG_FILE=/HOME/USER/FILE does not exist ''' Can someone help me with this problem? Thank you in advance, Denis