Is there any way to configure the proxy in the file "/etc/yum.conf" without leaving the password saved in this file? Something like, pass the password by parameter?
Today the password is written to the file as follows:
# HABILITAR PROXY CENTOS 7:
# The proxy server - proxy server:port number
proxy=http://10.10.10.10:3128
# The account details for yum connections
proxy_username=dominio\usuario
proxy_password=123456
The idea is that the password is not saved, thus avoiding a possible security breach in case of use.
Thank you.