ubuntu 16에 no_proxy가 안먹는 이슈가 있을 수 있다.
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1575877
$ vi /etc/profile
setproxy() {
...
}
따라서 필요하다면 apt-get update와 install을 아래와 같이 설치해야 할 수도 있다.
- name: Update cache
shell: "source /etc/profile && setproxy sudo -E apt-get update"
args:
chdir: /kakao/source
executable: /bin/bash
- name: Install Nginx
shell: "source /etc/profile && setproxy sudo -E apt-get install nginx"
args:
chdir: /kakao/source
executable: /bin/bash
'Ansible-Puppet-Chef' 카테고리의 다른 글
[ansible] copy mode 주의사항 (0) | 2019.01.14 |
---|---|
ansible-galaxy (0) | 2019.01.14 |
ansible 설치 (virtualenv) (0) | 2018.12.18 |
[ansible] lineinfile (0) | 2018.07.05 |
[ansible] 배포될 서버의 호스트명 얻는 방법 (0) | 2018.04.02 |