diff --git a/roles/dopr/files/pg_hba.conf b/roles/dopr/files/pg_hba.conf index c24f73a4c5..171e63859f 100644 --- a/roles/dopr/files/pg_hba.conf +++ b/roles/dopr/files/pg_hba.conf @@ -1,6 +1,6 @@ -local cdicdb copr-fe md5 -host cdicdb copr-fe 127.0.0.1/8 md5 -host cdicdb copr-fe ::1/128 md5 +local cdicdb cdic md5 +host cdicdb cdic 127.0.0.1/8 md5 +host cdicdb cdic ::1/128 md5 local cdicdb postgres ident # TYPE DATABASE USER ADDRESS METHOD diff --git a/roles/dopr/tasks/main.yml b/roles/dopr/tasks/main.yml index a0be896cd2..238c1cbb67 100644 --- a/roles/dopr/tasks/main.yml +++ b/roles/dopr/tasks/main.yml @@ -1,11 +1,12 @@ # NB: dopr was initially called cdic - name: install basic packages - yum: state=present pkg={{ item }} + dnf: state=present pkg={{ item }} with_items: - "tmux" - "bash-completion" - "dnf-plugins-core" + - "yum-utils" tags: - packages @@ -18,7 +19,7 @@ user: name="cdic" - name: install dopr specific packages - yum: state=present pkg={{ item }} + dnf: state=present pkg={{ item }} with_items: - python3 - python3-pip