1234567891011121314151617181920212223 |
- ---
- - name: Dependencies installed
- pkgng:
- name: py37-pip,py37-sqlite3,postgresql12-client,rust
- state: latest
- - name: pgAdmin4 package installed
- shell: "pip install https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v5.0/pip/pgadmin4-5.0-py3-none-any.whl"
- - name: pgAdmin4 config file installed
- template:
- src: config_local.py.j2
- dest: /usr/local/lib/python3.7/site-packages/pgadmin4/config_local.py
- mode: 0644
- notify: Supervisor restarted
- - name: pgAdmin4 supervisor file installed
- copy:
- src: pgadmin-supervisor.conf
- dest: /usr/local/etc/supervisor/conf.d/pgadmin.conf
- owner: root
- mode: 0644
- notify: Supervisor restarted
|