- name: install few packages community.general.pkgng: name: - bash - colordiff - ksh - name: symlink /bin/ksh from PDKSH shell: cmd: | ln -s ..//usr/local/bin/ksh /bin/ksh creates: /bin/ksh - name: symlink /bin/bash from BASH shell: cmd: | ln -s ../usr/local/bin/bash /bin/bash creates: /bin/bash - name: add bash to /etc/shells lineinfile: path: /etc/shells regexp: ^/bin/bash$ line: /bin/bash - name: add ksh to /etc/shells lineinfile: path: /etc/shells regexp: ^/bin/ksh$ line: /bin/ksh