| 1234567891011121314151617181920212223242526272829303132333435363738 |
- ---
- - hosts: pc9
- vars:
- release: focal
- winetricks_patch: /usr/bin
- prefix_dir: /usr/prefixes
- prefix_path: /usr/prefixes/msapps
- user_permission: student
- officepath: /home/vidikon/ANSIBLE/Office2013.tar.gz
- become: true
- gather_facts: no
- tasks:
- # - name: add ppa libreoffice
- # ansible.builtin.apt_repository:
- # repo: ppa:libreoffice/ppa
- # codename: "{{ release }}"
- # state: absent
- - name: add ppa gimp
- ansible.builtin.apt_repository:
- repo: ppa:ubuntuhandbook1/gimp
- codename: "{{ release }}"
- # state: absent
- # - name: dpkg --configure -a
- # shell:
- # cmd: dpkg --configure -a
- - name: install software
- ansible.builtin.apt:
- pkg:
- - libreoffice
- - gimp
- - name: install software
- ansible.builtin.apt:
- pkg:
- - libreoffice-grammarcheck-ru
- - libreoffice-help-ru
- - libreoffice-l10n-ru
- - libreoffice-lightproof-ru-ru
|