Está usando uma variável no arquivo de ambiente no systemd permitido?

0

Está usando uma variável no arquivo de ambiente no systemd permitido?

[Unit]
Description=ServiceAuto
Requires=network-online.target
After=network-online.target

[Service]
EnvironmentFile=/etc/systemd/system/auto.service.d/env.conf
Type=simple
ExecStart="Script to execute"
IgnoreSIGPIPE=no
RestartSec=8
TimeoutStartSec=10
TimeoutStopSec=15
User=support

[Install]
WantedBy=multi-user.target

Eu gostaria de saber se o uso da variável MAIN_HOME em /etc/systemd/system/auto.service.d/env.conf é permitido. Por exemplo:

MAIN_HOME=/opt/prod
USER=support
PATH=/usr/java/jdk1.8.0_161/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/home/support/.local/bin:/home/support/bin

JAVA_HOME=/usr/java/jdk1.8.0_161
LD_LIBRARY_PATH=/$MAIN_HOME/bin:/usr/lib
    
por Joie Tamayo 15.05.2018 / 02:29

1 resposta

4

Na página systemd.exec(5) man:

   EnvironmentFile=
       Similar to Environment= but reads the environment variables from a
       text file. [...]

...

   Environment=
       [...] Variable expansion is not performed
       inside the strings, however, specifier expansion is possible. The $
       character has no special meaning. [...]

Então, não.

    
por 15.05.2018 / 02:34