ansible로 우분투 패키지 설치전 apt update를 수행하고 싶을때 아래와 같이 수행한다.
---
- name: install amsclient
hosts: all
become: yes
vars:
ansible_become_password: "{{ sudopasswd }}"
tasks:
- name: apt install ipa-client
apt:
update_cache: yes
force_apt_get: yes
cache_valid_time: 3600
앤서블 우분투 apt 업데이트
앤서블 ubuntu apt udpate
ansible ubuntu apt udpate
반응형
'인프라 > 앤서블(Ansible)' 카테고리의 다른 글
[Ansible] ansible fetch 앤서블 파일 끌어오기 (0) | 2022.07.29 |
---|---|
[Ansible] windows 파일배포 & 압축 해제 (0) | 2022.07.27 |
[Ansible] windows powershell 파일 실행하기 (0) | 2022.07.19 |
[Ansible] Windows 계정 생성 playbook (0) | 2022.07.15 |
[Ansible] ansible 명령어로 패스워드 없이 수행하기 (0) | 2022.07.14 |
댓글