yum não pega a variável de ambiente YUM0

0

Eu tenho uma variável de ambiente definida no meu ambiente (docker) centos:

[arman@7b33ffd8619e ~]$ echo $YUM0
yumrepo.myhost.com

Observe que isso também funciona quando prefixo o comando echo com sudo .

De acordo com a documentação do centos ;

$YUM0-9 This is replaced with the value of the shell environment variable of the same name. If the shell environment variable does not exist, then the configuration file variable will not be replaced.

No entanto, quando tento instalar qualquer coisa com yum do meu contêiner, recebo uma mensagem de erro indicando claramente que a variável de ambiente não está sendo selecionada por yum :

[arman@7b33ffd8619e ~]$ sudo yum install less
Loaded plugins: fastestmirror
http://$YUM0/x86_64/centos/7.2.1511/base/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host: $YUM0; Name or service not known"
Trying other mirror.


 One of the configured repositories failed (centos),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).

     3. Disable the repository, so yum won't use it by default. Yum will then
        just ignore the repository until you permanently enable it again or use
        --enablerepo for temporary usage:

            yum-config-manager --disable centos

     4. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:

            yum-config-manager --save --setopt=centos.skip_if_unavailable=true

failure: repodata/repomd.xml from centos: [Errno 256] No more mirrors to try.
http://$YUM0/x86_64/centos/7.2.1511/base/repodata/repomd.xml: [Errno 14] curl#6 - "Could not resolve host: $YUM0; Name or service not known"

Estou executando as seguintes versões:

[arman.schwarz@7b33ffd8619e ~]$ cat /etc/centos-release
CentOS Linux release 7.2.1511 (Core)
[arman.schwarz@7b33ffd8619e ~]$ yum --version
3.4.3

Modificar manualmente meus arquivos .repo em /etc/yum.repos.d para usar o nome do repositório em vez de confiar na variável de ambiente faz com que yum seja instalado sem problemas, provando que isso não é um problema com o próprio repositório.

A execução de export YUM0=yumrepo.myhost.com não tem efeito.

Como posso disponibilizar a variável de ambiente YUM0 para yum ?

    
por quant 01.09.2017 / 18:47

2 respostas

2

O ambiente sudo , a menos que seja configurado de outra forma (por exemplo, configurando env_keep ) em /etc/sudoers , não herdará sua variável YUM0 . Experimente:

$ sudo "export YUM0=$YUM0; yum install less"

Seu shell expandirá $YUM0 antes de enviar a cadeia de comando para sudo , transformando o comando em e. g. export YUM0=repo.example.com; yum install less .

    
por 01.09.2017 / 19:08
3

Por padrão, o sudo redefine o ambiente para os comandos executados. Isso incluiria sua variável YUM0, a menos que você também tenha env_keep configurado.

Se você for executar o comando com o sudo, execute-o assim:

sudo YUM0=yumrepo.myhost.com yum ...rest of the command...

Isto irá definir o valor da variável como sudo a executa.

Alternativamente, se suas regras sudo permitirem, você poderia iniciar um shell e definir a variável antes de chamar o resto do comando:

sudo sh -c "YUM0=$YUM0; yum ... rest of the command ..."

Como as aspas duplas permitirão que a variável interna YUM0 seja ajustada para o valor da camada externa (atual) de YUM0.

    
por 01.09.2017 / 19:10