The Workbench 2022-08

  • Posted on: 20 August 2022
  • By: tomww

Hi all,

the new version MySQL 8.0.30 has been compiled and ist now available for Solaris 11.4 x64 and for OmniOS 151038 and later.

If you want to add the IPS publisher, see https://sfe.opencsw.org/quickrepolinks

What is your use case for MySQL? If you would drop me a note on Twitter @sfepackages or write a comment or an email at sfepackages at gmail dot com, that would be great!

[Edit] Ansible 2.13.3 is now available for Solaris 11.4 x64. In a quick test, I was able to set an ip address on my OmniOS host via ansible.
May I ask you your use case for ansible on Solaris / Illumos? If you find any modules need fixes, or you have own modules not yet published, then please let me know.

Regards,
Thomas

PS: these steps should get you a first test of ansible:

#add the localhosts12 publisher, see quicklinks on top right
#pkg install ansible@2.13.3
#ansible --version this should print a propper usage page (else drop me a note please, then I can check the dependencies)

$ cat ~/ansible/hosts
omnios

$ cat ~/ansible/ipadm-test.yml

- hosts: omnios
become: true

tasks:
- name: Configure IP address 10.0.0.1 on e1000g0
community.network.ipadm_addr: addr=10.0.0.1/32 addrobj=e1000g0/v4 state=absent temporary=true

run this command:
$ ansible-playbook -K -i ~/ansible/hosts ~/ansible/ipadm-test.yml