ansibleguy / collection_opnsense

Ansible Collection to manage OPNSense firewalls using their API
https://opnsense.ansibleguy.net
GNU General Public License v3.0
260 stars 34 forks source link

Problem: wait on upgrade does not wait #80

Open livdebus opened 3 months ago

livdebus commented 3 months ago

Modules

ansibleguy.opnsense.system with action upgrade with option wait true and timeout 600

Version

1.2.8

Ansible Version

2.15.5

OPNSense Version

OPNsense 24.1.3_1-amd64 gets upgraded to OPNsense 24.1.9_4-amd64

OPNSense-Plugin Version

-

Issue

We are using your opnsense ansible module to upgrade our opnsense instances. After the upgrade we would like to reboot the instance. But the wait option in the upgrade task does not really wait for the upgrade process and therefore the next step is executed which reboots the opnsense instance. On bigger upgrades this causes to break the opnsense instance since it get's rebooted while upgrading.

Expected result: wait for the upgrade to finish result: reboot gets executed during upgrade

Upgrading from OPNsense 24.1.3_1-amd64 to OPNsense 24.1.9_4-amd64 takes around 5-10 minutes but it waits only for 1 minute

Config Ansible

---
- hosts: all
  connection: local
  gather_facts: no
  module_defaults:
    group/ansibleguy.opnsense.all:
        firewall: "{{ ansible_host }}"
        ssl_verify: false
        api_port: "{{ hostvars[inventory_hostname].apiport }}"
        api_key: "{{ hostvars[inventory_hostname].key }}"
        api_secret: "{{ hostvars[inventory_hostname].secret }}"
  tasks:
    - name: Pull updates
      ansibleguy.opnsense.system:
        action: 'update'
    - name: Wait 60s
      ansible.builtin.pause:
        seconds: 60
      delegate_to: localhost
    - name: Start upgrade - will wait until finished
      ansibleguy.opnsense.system:
        action: 'upgrade'
        wait: true
        timeout: 600
        poll_interval: 2
    - name: Reboot without wait
      ansibleguy.opnsense.system:
        action: 'reboot'
        wait: false

Config OPNSense

happens to any configuration

Debug Output

(output of ansible semaphore while having activated debug option in opnsense ansible module)

12:12:24 PM
PLAY [all] *********************************************************************
12:12:24 PM
12:12:24 PM
TASK [Pull updates] ************************************************************
12:12:25 PM
[WARNING]: REQUEST: POST | URL:
12:12:25 PM
https://172.31.1.2:27443/api/core/firmware/update | HEADERS: '{}'
12:12:25 PM
[WARNING]: RESPONSE: '{'status_code': 200, 'headers': Headers({'content-type':
12:12:25 PM
'application/json; charset=UTF-8', 'content-length': '65', 'date': 'Fri, 05 Jul
12:12:25 PM
2024 10:12:25 GMT', 'server': 'OPNsense'}), '_request': 
12:12:25 PM
'https://172.31.1.2:27443/api/core/firmware/update')>, 'next_request': None,
12:12:25 PM
'extensions': {'http_version': b'HTTP/1.1', 'reason_phrase': b'OK',
12:12:25 PM
'network_stream': 
12:12:25 PM
0x7f320831c3d0>}, 'history': [], 'is_closed': True, 'is_stream_consumed': True,
12:12:25 PM
'default_encoding': 'utf-8', 'stream': 
12:12:25 PM
0x7f320831eb90>, '_num_bytes_downloaded': 65, '_decoder':
12:12:25 PM
, '_elapsed':
12:12:25 PM
datetime.timedelta(microseconds=52363), '_content':
12:12:25 PM
b'{"msg_uuid":"129c03c4-fc7d-46b8-8f8b-1e0f4b8e4740","status":"ok"}'}'
12:12:25 PM
changed: [C1002FW01]
12:12:25 PM
12:12:25 PM
TASK [Wait 60s] ****************************************************************
12:12:25 PM
Pausing for 60 seconds
12:12:25 PM
(ctrl+C then 'C' = continue early, ctrl+C then 'A' = abort)
12:13:25 PM
ok: [C1002FW01 -> localhost]
12:13:25 PM
12:13:25 PM
TASK [Start upgrade - will wait until finished] ********************************
12:14:10 PM
[WARNING]: REQUEST: POST | URL:
12:14:10 PM
https://172.31.1.2:27443/api/core/firmware/upgrade | HEADERS: '{}'
12:14:10 PM
[WARNING]: RESPONSE: '{'status_code': 200, 'headers': Headers({'content-type':
12:14:10 PM
'application/json; charset=UTF-8', 'content-length': '65', 'date': 'Fri, 05 Jul
12:14:10 PM
2024 10:13:25 GMT', 'server': 'OPNsense'}), '_request': 
12:14:10 PM
'https://172.31.1.2:27443/api/core/firmware/upgrade')>, 'next_request': None,
12:14:10 PM
'extensions': {'http_version': b'HTTP/1.1', 'reason_phrase': b'OK',
12:14:10 PM
'network_stream': 
12:14:10 PM
0x7f88ba1783d0>}, 'history': [], 'is_closed': True, 'is_stream_consumed': True,
12:14:10 PM
'default_encoding': 'utf-8', 'stream': 
12:14:10 PM
0x7f88ba17ab90>, '_num_bytes_downloaded': 65, '_decoder':
12:14:10 PM
, '_elapsed':
12:14:10 PM
datetime.timedelta(microseconds=143399), '_content':
12:14:10 PM
b'{"msg_uuid":"e7ecd758-16b7-4ba9-b96d-7cf88ea33050","status":"ok"}'}'
12:14:10 PM
[WARNING]: Waiting for firewall to complete 'upgrade'!
12:14:10 PM
changed: [C1002FW01]
12:14:10 PM
12:14:10 PM
TASK [Reboot without wait] *****************************************************
12:14:11 PM
[WARNING]: REQUEST: POST | URL:
12:14:11 PM
https://172.31.1.2:27443/api/core/firmware/reboot | HEADERS: '{}'
12:14:11 PM
[WARNING]: RESPONSE: '{'status_code': 200, 'headers': Headers({'content-type':
12:14:11 PM
'application/json; charset=UTF-8', 'content-length': '65', 'date': 'Fri, 05 Jul
12:14:11 PM
2024 10:14:10 GMT', 'server': 'OPNsense'}), '_request': 
12:14:11 PM
'https://172.31.1.2:27443/api/core/firmware/reboot')>, 'next_request': None,
12:14:11 PM
'extensions': {'http_version': b'HTTP/1.1', 'reason_phrase': b'OK',
12:14:11 PM
'network_stream': 
12:14:11 PM
0x7f9bc5e783d0>}, 'history': [], 'is_closed': True, 'is_stream_consumed': True,
12:14:11 PM
'default_encoding': 'utf-8', 'stream': 
12:14:11 PM
0x7f9bc5e7ab90>, '_num_bytes_downloaded': 65, '_decoder':
12:14:11 PM
, '_elapsed':
12:14:11 PM
datetime.timedelta(microseconds=47656), '_content':
12:14:11 PM
b'{"status":"ok","msg_uuid":"8667fb95-4873-45ff-bef6-ddcac5b3fb5f"}'}'
12:14:11 PM
changed: [C1002FW01]
12:14:11 PM
12:14:11 PM
PLAY RECAP *********************************************************************
12:14:11 PM
C1002FW01                  : ok=4    changed=3    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
12:14:11 PM

Profiling Output

No response

superstes commented 3 months ago

Greetings.

Please update to 1.2.9 - the Upgrade process was enhanced in that version. See Release: https://github.com/ansibleguy/collection_opnsense/releases/tag/1.2.9

livdebus commented 3 months ago

Thanks a lot, 1.2.9 solves my issue. Sorry for not checking for an updated version myself.

livdebus commented 3 months ago

Seems I have not tested properly. Thought issue is solved but it is not. But issue only occurs on large major opnsense updates which take a lot of time (so in this case from OPNsense 24.1.3_1-amd64 to OPNsense 24.1.9_4-amd64).

Playbook:

---
- hosts: all
  connection: local
  gather_facts: no
  module_defaults:
    group/ansibleguy.opnsense.all:
        firewall: "{{ ansible_host }}"
        ssl_verify: false
        api_port: "{{ hostvars[inventory_hostname].apiport }}"
        api_key: "{{ hostvars[inventory_hostname].key }}"
        api_secret: "{{ hostvars[inventory_hostname].secret }}"
  tasks:
    - name: Pull updates
      ansibleguy.opnsense.system:
        action: 'update'
        debug: true
    - name: Wait 60s
      ansible.builtin.pause:
        seconds: 60
      delegate_to: localhost
    - name: Start upgrade - will wait until finished
      ansibleguy.opnsense.system:
        action: 'upgrade'
        wait: true
        timeout: 600
        poll_interval: 2
        debug: true
    - name: Reboot without wait
      ansibleguy.opnsense.system:
        action: 'reboot'
        wait: false

Result (Ansible Semaphore):

1:49:38 PM
PLAY [all] *********************************************************************
1:49:38 PM
1:49:38 PM
TASK [Pull updates] ************************************************************
1:51:09 PM
[WARNING]: REQUEST: POST | URL:
1:51:09 PM
https://172.31.1.2:27443/api/core/firmware/update | HEADERS: '{}'
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/update')>, '_num_bytes_downloaded':
1:51:09 PM
65, '_elapsed': datetime.timedelta(microseconds=146053), '_content':
1:51:09 PM
b'{"msg_uuid":"db4cdb6f-7bc8-4eeb-b3c3-d31ca746806f","status":"ok"}'}'
1:51:09 PM
[WARNING]: Waiting for firewall to complete 'update'!
1:51:09 PM
[WARNING]: 2024-07-08 13:49:39 | Waiting for update to finish..
1:51:09 PM
[WARNING]: REQUEST: GET | URL:
1:51:09 PM
https://172.31.1.2:27443/api/core/firmware/upgradestatus
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:51:09 PM
'_num_bytes_downloaded': 6272, '_elapsed':
1:51:09 PM
datetime.timedelta(microseconds=30939), '_content':
1:51:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:51:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:51:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:51:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:51:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:51:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:51:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:51:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:51:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:51:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:51:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:51:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:51:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:51:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:51:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:51:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:51:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:51:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:51:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:51:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:51:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:51:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:51:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:51:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:51:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:51:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:51:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:51:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:51:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:51:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:51:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:51:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:51:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:51:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:51:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:51:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:51:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:51:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:51:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:51:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:51:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:51:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:51:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:51:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:51:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:51:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:51:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:51:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:51:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:51:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:51:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:51:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:51:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:51:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:51:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:51:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:51:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:51:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:51:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:51:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:51:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:51:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:51:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:51:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:51:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:51:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:51:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:51:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:51:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:51:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:51:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:51:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:51:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:51:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:51:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:51:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:51:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:51:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:51:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:51:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:51:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:51:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:51:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:51:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:51:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:51:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:51:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:51:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:51:09 PM
Fetching hostapd-2.10_10.pkg: .......... done"}'}'
1:51:09 PM
[WARNING]: 2024-07-08 13:49:41 | Got response: running
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:51:09 PM
'_num_bytes_downloaded': 6874, '_elapsed':
1:51:09 PM
datetime.timedelta(microseconds=33728), '_content':
1:51:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:51:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:51:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:51:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:51:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:51:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:51:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:51:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:51:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:51:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:51:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:51:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:51:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:51:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:51:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:51:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:51:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:51:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:51:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:51:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:51:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:51:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:51:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:51:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:51:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:51:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:51:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:51:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:51:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:51:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:51:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:51:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:51:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:51:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:51:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:51:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:51:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:51:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:51:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:51:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:51:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:51:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:51:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:51:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:51:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:51:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:51:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:51:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:51:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:51:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:51:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:51:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:51:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:51:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:51:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:51:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:51:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:51:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:51:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:51:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:51:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:51:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:51:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:51:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:51:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:51:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:51:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:51:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:51:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:51:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:51:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:51:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:51:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:51:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:51:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:51:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:51:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:51:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:51:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:51:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:51:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:51:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:51:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:51:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:51:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:51:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:51:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:51:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:51:09 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:51:09 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:51:09 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:51:09 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:51:09 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:51:09 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:51:09 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:51:09 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:51:09 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:51:09 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:51:09 PM
dateutil-2.9.0.pkg: ..."}'}'
1:51:09 PM
[WARNING]: 2024-07-08 13:49:43 | Got response: running
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:51:09 PM
'_num_bytes_downloaded': 8149, '_elapsed':
1:51:09 PM
datetime.timedelta(microseconds=38242), '_content':
1:51:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:51:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:51:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:51:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:51:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:51:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:51:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:51:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:51:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:51:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:51:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:51:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:51:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:51:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:51:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:51:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:51:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:51:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:51:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:51:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:51:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:51:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:51:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:51:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:51:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:51:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:51:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:51:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:51:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:51:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:51:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:51:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:51:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:51:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:51:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:51:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:51:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:51:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:51:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:51:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:51:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:51:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:51:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:51:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:51:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:51:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:51:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:51:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:51:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:51:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:51:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:51:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:51:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:51:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:51:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:51:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:51:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:51:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:51:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:51:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:51:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:51:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:51:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:51:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:51:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:51:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:51:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:51:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:51:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:51:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:51:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:51:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:51:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:51:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:51:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:51:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:51:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:51:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:51:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:51:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:51:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:51:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:51:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:51:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:51:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:51:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:51:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:51:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:51:09 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:51:09 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:51:09 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:51:09 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:51:09 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:51:09 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:51:09 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:51:09 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:51:09 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:51:09 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:51:09 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:51:09 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:51:09 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:51:09 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:51:09 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:51:09 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:51:09 PM
done\\n[29\\/115] Fetching py311-charset-normalizer-3.3.2_1.pkg: ..........
1:51:09 PM
done\\n[30\\/115] Fetching py311-pyasn1-modules-0.4.0.pkg: ..........
1:51:09 PM
done\\n[31\\/115] Fetching easy-rsa-3.2.0.pkg: ...... done\\n[32\\/115]
1:51:09 PM
Fetching os-wazuh-agent-1.0_2.pkg: .. done\\n[33\\/115] Fetching
1:51:09 PM
py311-aioquic-0.9.25.pkg: .......... done\\n[34\\/115] Fetching e2fsprogs-
1:51:09 PM
libuuid-1.47.1.pkg: ..... done\\n[35\\/115] Fetching
1:51:09 PM
py311-setuptools-63.1.0_1.pkg: .......... done\\n[36\\/115] Fetching
1:51:09 PM
py311-idna-3.7.pkg: .......... done\\n[37\\/115] Fetching openvpn-2.6.10.pkg:
1:51:09 PM
.......... done\\n[38\\/115] Fetching php82-pdo-8.2.20.pkg: .......
1:51:09 PM
done\\n[39\\/115] Fetching libnghttp2-1.62.1.pkg: .......... done\\n[40\\/115]
1:51:09 PM
Fetching libxml2-2.11.8.pkg: .......... done\\n[41\\/115] Fetching
1:51:09 PM
php82-curl-8.2.20.pkg: ...... done\\n[42\\/115] Fetching py311-cffi-1.16.0.pkg:
1:51:09 PM
.......... done\\n[43\\/115] Fetching icu-74.2_1,1.pkg: .......... done"}'}'
1:51:09 PM
[WARNING]: 2024-07-08 13:49:45 | Got response: running
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:51:09 PM
'_num_bytes_downloaded': 9332, '_elapsed':
1:51:09 PM
datetime.timedelta(microseconds=49603), '_content':
1:51:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:51:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:51:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:51:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:51:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:51:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:51:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:51:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:51:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:51:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:51:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:51:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:51:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:51:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:51:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:51:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:51:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:51:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:51:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:51:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:51:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:51:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:51:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:51:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:51:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:51:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:51:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:51:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:51:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:51:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:51:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:51:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:51:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:51:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:51:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:51:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:51:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:51:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:51:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:51:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:51:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:51:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:51:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:51:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:51:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:51:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:51:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:51:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:51:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:51:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:51:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:51:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:51:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:51:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:51:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:51:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:51:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:51:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:51:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:51:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:51:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:51:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:51:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:51:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:51:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:51:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:51:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:51:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:51:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:51:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:51:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:51:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:51:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:51:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:51:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:51:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:51:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:51:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:51:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:51:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:51:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:51:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:51:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:51:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:51:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:51:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:51:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:51:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:51:09 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:51:09 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:51:09 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:51:09 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:51:09 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:51:09 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:51:09 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:51:09 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:51:09 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:51:09 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:51:09 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:51:09 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:51:09 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:51:09 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:51:09 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:51:09 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:51:09 PM
done\\n[29\\/115] Fetching py311-charset-normalizer-3.3.2_1.pkg: ..........
1:51:09 PM
done\\n[30\\/115] Fetching py311-pyasn1-modules-0.4.0.pkg: ..........
1:51:09 PM
done\\n[31\\/115] Fetching easy-rsa-3.2.0.pkg: ...... done\\n[32\\/115]
1:51:09 PM
Fetching os-wazuh-agent-1.0_2.pkg: .. done\\n[33\\/115] Fetching
1:51:09 PM
py311-aioquic-0.9.25.pkg: .......... done\\n[34\\/115] Fetching e2fsprogs-
1:51:09 PM
libuuid-1.47.1.pkg: ..... done\\n[35\\/115] Fetching
1:51:09 PM
py311-setuptools-63.1.0_1.pkg: .......... done\\n[36\\/115] Fetching
1:51:09 PM
py311-idna-3.7.pkg: .......... done\\n[37\\/115] Fetching openvpn-2.6.10.pkg:
1:51:09 PM
.......... done\\n[38\\/115] Fetching php82-pdo-8.2.20.pkg: .......
1:51:09 PM
done\\n[39\\/115] Fetching libnghttp2-1.62.1.pkg: .......... done\\n[40\\/115]
1:51:09 PM
Fetching libxml2-2.11.8.pkg: .......... done\\n[41\\/115] Fetching
1:51:09 PM
php82-curl-8.2.20.pkg: ...... done\\n[42\\/115] Fetching py311-cffi-1.16.0.pkg:
1:51:09 PM
.......... done\\n[43\\/115] Fetching icu-74.2_1,1.pkg: ..........
1:51:09 PM
done\\n[44\\/115] Fetching dnsmasq-2.90_1,1.pkg: .......... done\\n[45\\/115]
1:51:09 PM
Fetching py311-httpx-0.27.0_1.pkg: .......... done\\n[46\\/115] Fetching
1:51:09 PM
py311-packaging-24.0.pkg: .......... done\\n[47\\/115] Fetching
1:51:09 PM
py311-netaddr-1.3.0.pkg: .......... done\\n[48\\/115] Fetching
1:51:09 PM
dhcp6c-20240607.pkg: ......... done\\n[49\\/115] Fetching
1:51:09 PM
php82-phalcon-5.7.0.pkg: .......... done\\n[50\\/115] Fetching
1:51:09 PM
php82-mbstring-8.2.20.pkg: .......... done\\n[51\\/115] Fetching isc-
1:51:09 PM
dhcp44-server-4.4.3P1_1.pkg: .......... done\\n[52\\/115] Fetching
1:51:09 PM
py311-pytz-2024.1,1.pkg: .......... done\\n[53\\/115] Fetching
1:51:09 PM
py311-pysocks-1.7.1_1.pkg: .... done\\n[54\\/115] Fetching ntp-4.2.8p18.pkg:
1:51:09 PM
.......... done\\n[55\\/115] Fetching syslog-ng-4.7.1.pkg: ..........
1:51:09 PM
done\\n[56\\/115] Fetching py311-markupsafe-2.1.5_1.pkg: ... done\\n[57\\/115]
1:51:09 PM
Fetching wazuh-agent-4.7.4.pkg: .......... done\\n[58\\/115] Fetching
1:51:09 PM
libpsl-0.21.5_1.pkg: ........ done\\n[59\\/115] Fetching
1:51:09 PM
py311-requests-2.32.3.pkg: .......... done\\n[60\\/115] Fetching
1:51:09 PM
py311-attrs-23.2.0.pkg: .......... done\\n[61\\/115] Fetching
1:51:09 PM
php82-ldap-8.2.20.pkg: ..... done\\n[62\\/115] Fetching
1:51:09 PM
py311-sortedcontainers-2.4.0.pkg: ...... done\\n[63\\/115] Fetching
1:51:09 PM
python311-3.11.9.pkg: ..."}'}'
1:51:09 PM
[WARNING]: 2024-07-08 13:49:47 | Got response: running
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:51:09 PM
'_num_bytes_downloaded': 9573, '_elapsed':
1:51:09 PM
datetime.timedelta(microseconds=37305), '_content':
1:51:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:51:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:51:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:51:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:51:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:51:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:51:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:51:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:51:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:51:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:51:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:51:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:51:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:51:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:51:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:51:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:51:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:51:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:51:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:51:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:51:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:51:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:51:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:51:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:51:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:51:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:51:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:51:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:51:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:51:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:51:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:51:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:51:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:51:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:51:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:51:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:51:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:51:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:51:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:51:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:51:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:51:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:51:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:51:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:51:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:51:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:51:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:51:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:51:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:51:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:51:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:51:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:51:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:51:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:51:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:51:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:51:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:51:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:51:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:51:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:51:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:51:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:51:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:51:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:51:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:51:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:51:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:51:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:51:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:51:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:51:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:51:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:51:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:51:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:51:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:51:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:51:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:51:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:51:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:51:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:51:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:51:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:51:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:51:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:51:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:51:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:51:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:51:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:51:09 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:51:09 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:51:09 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:51:09 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:51:09 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:51:09 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:51:09 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:51:09 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:51:09 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:51:09 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:51:09 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:51:09 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:51:09 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:51:09 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:51:09 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:51:09 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:51:09 PM
done\\n[29\\/115] Fetching py311-charset-normalizer-3.3.2_1.pkg: ..........
1:51:09 PM
done\\n[30\\/115] Fetching py311-pyasn1-modules-0.4.0.pkg: ..........
1:51:09 PM
done\\n[31\\/115] Fetching easy-rsa-3.2.0.pkg: ...... done\\n[32\\/115]
1:51:09 PM
Fetching os-wazuh-agent-1.0_2.pkg: .. done\\n[33\\/115] Fetching
1:51:09 PM
py311-aioquic-0.9.25.pkg: .......... done\\n[34\\/115] Fetching e2fsprogs-
1:51:09 PM
libuuid-1.47.1.pkg: ..... done\\n[35\\/115] Fetching
1:51:09 PM
py311-setuptools-63.1.0_1.pkg: .......... done\\n[36\\/115] Fetching
1:51:09 PM
py311-idna-3.7.pkg: .......... done\\n[37\\/115] Fetching openvpn-2.6.10.pkg:
1:51:09 PM
.......... done\\n[38\\/115] Fetching php82-pdo-8.2.20.pkg: .......
1:51:09 PM
done\\n[39\\/115] Fetching libnghttp2-1.62.1.pkg: .......... done\\n[40\\/115]
1:51:09 PM
Fetching libxml2-2.11.8.pkg: .......... done\\n[41\\/115] Fetching
1:51:09 PM
php82-curl-8.2.20.pkg: ...... done\\n[42\\/115] Fetching py311-cffi-1.16.0.pkg:
1:51:09 PM
.......... done\\n[43\\/115] Fetching icu-74.2_1,1.pkg: ..........
1:51:09 PM
done\\n[44\\/115] Fetching dnsmasq-2.90_1,1.pkg: .......... done\\n[45\\/115]
1:51:09 PM
Fetching py311-httpx-0.27.0_1.pkg: .......... done\\n[46\\/115] Fetching
1:51:09 PM
py311-packaging-24.0.pkg: .......... done\\n[47\\/115] Fetching
1:51:09 PM
py311-netaddr-1.3.0.pkg: .......... done\\n[48\\/115] Fetching
1:51:09 PM
dhcp6c-20240607.pkg: ......... done\\n[49\\/115] Fetching
1:51:09 PM
php82-phalcon-5.7.0.pkg: .......... done\\n[50\\/115] Fetching
1:51:09 PM
php82-mbstring-8.2.20.pkg: .......... done\\n[51\\/115] Fetching isc-
1:51:09 PM
dhcp44-server-4.4.3P1_1.pkg: .......... done\\n[52\\/115] Fetching
1:51:09 PM
py311-pytz-2024.1,1.pkg: .......... done\\n[53\\/115] Fetching
1:51:09 PM
py311-pysocks-1.7.1_1.pkg: .... done\\n[54\\/115] Fetching ntp-4.2.8p18.pkg:
1:51:09 PM
.......... done\\n[55\\/115] Fetching syslog-ng-4.7.1.pkg: ..........
1:51:09 PM
done\\n[56\\/115] Fetching py311-markupsafe-2.1.5_1.pkg: ... done\\n[57\\/115]
1:51:09 PM
Fetching wazuh-agent-4.7.4.pkg: .......... done\\n[58\\/115] Fetching
1:51:09 PM
libpsl-0.21.5_1.pkg: ........ done\\n[59\\/115] Fetching
1:51:09 PM
py311-requests-2.32.3.pkg: .......... done\\n[60\\/115] Fetching
1:51:09 PM
py311-attrs-23.2.0.pkg: .......... done\\n[61\\/115] Fetching
1:51:09 PM
php82-ldap-8.2.20.pkg: ..... done\\n[62\\/115] Fetching
1:51:09 PM
py311-sortedcontainers-2.4.0.pkg: ...... done\\n[63\\/115] Fetching
1:51:09 PM
python311-3.11.9.pkg: .......... done\\n[64\\/115] Fetching
1:51:09 PM
py311-vici-5.9.11.pkg: ... done\\n[65\\/115] Fetching py311-trio-0.25.1.pkg:
1:51:09 PM
.......... done\\n[66\\/115] Fetching py311-async_generator-1.10.pkg: ......
1:51:09 PM
done\\n[67\\/115] Fetching libcjson-1.7.18_2.pkg: ..... done"}'}'
1:51:09 PM
[WARNING]: 2024-07-08 13:49:49 | Got response: running
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:51:09 PM
'_num_bytes_downloaded': 10730, '_elapsed':
1:51:09 PM
datetime.timedelta(microseconds=37712), '_content':
1:51:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:51:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:51:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:51:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:51:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:51:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:51:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:51:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:51:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:51:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:51:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:51:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:51:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:51:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:51:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:51:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:51:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:51:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:51:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:51:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:51:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:51:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:51:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:51:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:51:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:51:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:51:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:51:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:51:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:51:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:51:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:51:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:51:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:51:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:51:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:51:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:51:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:51:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:51:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:51:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:51:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:51:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:51:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:51:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:51:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:51:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:51:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:51:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:51:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:51:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:51:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:51:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:51:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:51:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:51:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:51:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:51:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:51:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:51:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:51:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:51:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:51:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:51:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:51:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:51:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:51:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:51:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:51:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:51:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:51:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:51:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:51:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:51:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:51:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:51:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:51:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:51:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:51:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:51:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:51:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:51:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:51:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:51:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:51:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:51:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:51:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:51:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:51:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:51:09 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:51:09 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:51:09 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:51:09 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:51:09 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:51:09 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:51:09 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:51:09 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:51:09 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:51:09 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:51:09 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:51:09 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:51:09 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:51:09 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:51:09 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:51:09 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:51:09 PM
done\\n[29\\/115] Fetching py311-charset-normalizer-3.3.2_1.pkg: ..........
1:51:09 PM
done\\n[30\\/115] Fetching py311-pyasn1-modules-0.4.0.pkg: ..........
1:51:09 PM
done\\n[31\\/115] Fetching easy-rsa-3.2.0.pkg: ...... done\\n[32\\/115]
1:51:09 PM
Fetching os-wazuh-agent-1.0_2.pkg: .. done\\n[33\\/115] Fetching
1:51:09 PM
py311-aioquic-0.9.25.pkg: .......... done\\n[34\\/115] Fetching e2fsprogs-
1:51:09 PM
libuuid-1.47.1.pkg: ..... done\\n[35\\/115] Fetching
1:51:09 PM
py311-setuptools-63.1.0_1.pkg: .......... done\\n[36\\/115] Fetching
1:51:09 PM
py311-idna-3.7.pkg: .......... done\\n[37\\/115] Fetching openvpn-2.6.10.pkg:
1:51:09 PM
.......... done\\n[38\\/115] Fetching php82-pdo-8.2.20.pkg: .......
1:51:09 PM
done\\n[39\\/115] Fetching libnghttp2-1.62.1.pkg: .......... done\\n[40\\/115]
1:51:09 PM
Fetching libxml2-2.11.8.pkg: .......... done\\n[41\\/115] Fetching
1:51:09 PM
php82-curl-8.2.20.pkg: ...... done\\n[42\\/115] Fetching py311-cffi-1.16.0.pkg:
1:51:09 PM
.......... done\\n[43\\/115] Fetching icu-74.2_1,1.pkg: ..........
1:51:09 PM
done\\n[44\\/115] Fetching dnsmasq-2.90_1,1.pkg: .......... done\\n[45\\/115]
1:51:09 PM
Fetching py311-httpx-0.27.0_1.pkg: .......... done\\n[46\\/115] Fetching
1:51:09 PM
py311-packaging-24.0.pkg: .......... done\\n[47\\/115] Fetching
1:51:09 PM
py311-netaddr-1.3.0.pkg: .......... done\\n[48\\/115] Fetching
1:51:09 PM
dhcp6c-20240607.pkg: ......... done\\n[49\\/115] Fetching
1:51:09 PM
php82-phalcon-5.7.0.pkg: .......... done\\n[50\\/115] Fetching
1:51:09 PM
php82-mbstring-8.2.20.pkg: .......... done\\n[51\\/115] Fetching isc-
1:51:09 PM
dhcp44-server-4.4.3P1_1.pkg: .......... done\\n[52\\/115] Fetching
1:51:09 PM
py311-pytz-2024.1,1.pkg: .......... done\\n[53\\/115] Fetching
1:51:09 PM
py311-pysocks-1.7.1_1.pkg: .... done\\n[54\\/115] Fetching ntp-4.2.8p18.pkg:
1:51:09 PM
.......... done\\n[55\\/115] Fetching syslog-ng-4.7.1.pkg: ..........
1:51:09 PM
done\\n[56\\/115] Fetching py311-markupsafe-2.1.5_1.pkg: ... done\\n[57\\/115]
1:51:09 PM
Fetching wazuh-agent-4.7.4.pkg: .......... done\\n[58\\/115] Fetching
1:51:09 PM
libpsl-0.21.5_1.pkg: ........ done\\n[59\\/115] Fetching
1:51:09 PM
py311-requests-2.32.3.pkg: .......... done\\n[60\\/115] Fetching
1:51:09 PM
py311-attrs-23.2.0.pkg: .......... done\\n[61\\/115] Fetching
1:51:09 PM
php82-ldap-8.2.20.pkg: ..... done\\n[62\\/115] Fetching
1:51:09 PM
py311-sortedcontainers-2.4.0.pkg: ...... done\\n[63\\/115] Fetching
1:51:09 PM
python311-3.11.9.pkg: .......... done\\n[64\\/115] Fetching
1:51:09 PM
py311-vici-5.9.11.pkg: ... done\\n[65\\/115] Fetching py311-trio-0.25.1.pkg:
1:51:09 PM
.......... done\\n[66\\/115] Fetching py311-async_generator-1.10.pkg: ......
1:51:09 PM
done\\n[67\\/115] Fetching libcjson-1.7.18_2.pkg: ..... done\\n[68\\/115]
1:51:09 PM
Fetching py311-dnspython-2.6.1,1.pkg: .......... done\\n[69\\/115] Fetching
1:51:09 PM
ivykis-0.43_1.pkg: ......... done\\n[70\\/115] Fetching
1:51:09 PM
py311-certifi-2024.6.2.pkg: .......... done\\n[71\\/115] Fetching
1:51:09 PM
libedit-3.1.20240517,1.pkg: .......... done\\n[72\\/115] Fetching
1:51:09 PM
py311-hpack-4.0.0.pkg: ....... done\\n[73\\/115] Fetching py311-h2-4.1.0.pkg:
1:51:09 PM
.......... done\\n[74\\/115] Fetching py311-tzdata-2024.1.pkg: ..........
1:51:09 PM
done\\n[75\\/115] Fetching php82-sockets-8.2.20.pkg: ...... done\\n[76\\/115]
1:51:09 PM
Fetching php82-8.2.20.pkg: .......... done\\n[77\\/115] Fetching
1:51:09 PM
php82-sqlite3-8.2.20.pkg: .... done\\n[78\\/115] Fetching
1:51:09 PM
py311-Babel-2.14.0.pkg: .......... done\\n[79\\/115] Fetching
1:51:09 PM
py311-outcome-1.3.0_1.pkg: .. done\\n[80\\/115] Fetching
1:51:09 PM
php82-pcntl-8.2.20.pkg: ... done\\n[81\\/115] Fetching php82-xml-8.2.20.pkg:
1:51:09 PM
... done\\n[82\\/115] Fetching curl-8.8.0.pkg: .......... done\\n[83\\/115]
1:51:09 PM
Fetching gettext-runtime-0.22.5.pkg: .......... done\\n[84\\/115] Fetching
1:51:09 PM
py311-yaml-6.0.1.pkg: .......... done\\n[85\\/115] Fetching
1:51:09 PM
py311-numexpr-2.9.0_1.pkg: .......... done\\n[86\\/115] Fetching
1:51:09 PM
py311-socksio-1.0.0_1.pkg: ... done\\n[87\\/115] Fetching hyperscan-5.4.2.pkg:
1:51:09 PM
.......... done"}'}'
1:51:09 PM
[WARNING]: 2024-07-08 13:49:51 | Got response: running
1:51:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:51:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:51:09 PM
'_num_bytes_downloaded': 11775, '_elapsed':
1:51:09 PM
datetime.timedelta(microseconds=38914), '_content':
1:51:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:51:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:51:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:51:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:51:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:51:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:51:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:51:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:51:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:51:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:51:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:51:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:51:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:51:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:51:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:51:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:51:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:51:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:51:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:51:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:51:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:51:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:51:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:51:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:51:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:51:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:51:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:51:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:51:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:51:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:51:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:51:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:51:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:51:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:51:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:51:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:51:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:51:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:51:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:51:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:51:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:51:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:51:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:51:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:51:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:51:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:51:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:51:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:51:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:51:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:51:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:51:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:51:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:51:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:51:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:51:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:51:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:51:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:51:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:51:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:51:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:51:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:51:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:51:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:51:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:51:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:51:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:51:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:51:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:51:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:51:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:51:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:51:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:51:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:51:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:51:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:51:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:51:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:51:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:51:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:51:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:51:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:51:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:51:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:51:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:51:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:51:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:51:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:51:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:51:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:51:09 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:51:09 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:51:09 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:51:09 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:51:09 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:51:09 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:51:09 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:51:09 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:51:09 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:51:09 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:51:09 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:51:09 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:51:09 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:51:09 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:51:09 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:51:09 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:52:15 PM
ok: [C1002FW01 -> localhost]
1:52:15 PM
1:52:15 PM
TASK [Start upgrade - will wait until finished] ********************************
1:53:45 PM
[WARNING]: REQUEST: POST | URL:
1:53:45 PM
https://172.31.1.2:27443/api/core/firmware/upgrade | HEADERS: '{}'
1:53:45 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:53:45 PM
'https://172.31.1.2:27443/api/core/firmware/upgrade')>,
1:53:45 PM
'_num_bytes_downloaded': 65, '_elapsed':
1:53:45 PM
datetime.timedelta(microseconds=52177), '_content': b'{"msg_uuid":"444f7eab-
1:53:45 PM
fafc-45f4-bff7-b41219bcb959","status":"ok"}'}'
1:53:45 PM
[WARNING]: Waiting for firewall to complete 'upgrade'!
1:53:45 PM
[WARNING]: 2024-07-08 13:52:15 | Waiting for download & upgrade to finish..
1:53:45 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:53:45 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:53:45 PM
'_num_bytes_downloaded': 30388, '_elapsed':
1:53:45 PM
datetime.timedelta(microseconds=54350), '_content':
1:53:45 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:53:45 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:53:45 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:53:45 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:53:45 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:53:45 PM
repositories are up to date.\\nUpdating OPNsense repository
1:53:45 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:53:45 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:53:45 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:53:45 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:53:45 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:53:45 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:53:45 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:53:45 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:53:45 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:53:45 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:53:45 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:53:45 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:53:45 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:53:45 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:53:45 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:53:45 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:53:45 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:53:45 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:53:45 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:53:45 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:53:45 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:53:45 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:53:45 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:53:45 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:53:45 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:53:45 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:53:45 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:53:45 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:53:45 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:53:45 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:53:45 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:53:45 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:53:45 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:53:45 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:53:45 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:53:45 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:53:45 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:53:45 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:53:45 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:53:45 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:53:45 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:53:45 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:53:45 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:53:45 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:53:45 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:53:45 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:53:45 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:53:45 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:53:45 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:53:45 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:53:45 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:53:45 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:53:45 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:53:45 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:53:45 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:53:45 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:53:45 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:53:45 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:53:45 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:53:45 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:53:45 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:53:45 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:53:45 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:53:45 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:53:45 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:53:45 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:53:45 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:53:45 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:53:45 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:53:45 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:53:45 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:53:45 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:53:45 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:53:45 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:53:45 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:53:45 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:53:45 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:53:45 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:53:45 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:53:45 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:53:45 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:53:45 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:53:45 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:53:45 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:53:45 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:53:45 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:53:45 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:53:45 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:53:45 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:53:45 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:53:45 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:53:45 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:53:45 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:53:45 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:53:45 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:53:45 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:53:45 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:53:45 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:53:45 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:53:45 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:53:45 PM
done\\n[29\\/115] Fetching py311-charset-normalizer-3.3.2_1.pkg: ..........
1:53:45 PM
done\\n[30\\/115] Fetching py311-pyasn1-modules-0.4.0.pkg: ..........
1:53:45 PM
done\\n[31\\/115] Fetching easy-rsa-3.2.0.pkg: ...... done\\n[32\\/115]
1:53:45 PM
Fetching os-wazuh-agent-1.0_2.pkg: .. done\\n[33\\/115] Fetching
1:53:45 PM
py311-aioquic-0.9.25.pkg: .......... done\\n[34\\/115] Fetching e2fsprogs-
1:53:45 PM
libuuid-1.47.1.pkg: ..... done\\n[35\\/115] Fetching
1:53:45 PM
py311-setuptools-63.1.0_1.pkg: .......... done\\n[36\\/115] Fetching
1:53:45 PM
py311-idna-3.7.pkg: .......... done\\n[37\\/115] Fetching openvpn-2.6.10.pkg:
1:53:45 PM
.......... done\\n[38\\/115] Fetching php82-pdo-8.2.20.pkg: .......
1:53:45 PM
done\\n[39\\/115] Fetching libnghttp2-1.62.1.pkg: .......... done\\n[40\\/115]
1:53:45 PM
Fetching libxml2-2.11.8.pkg: .......... done\\n[41\\/115] Fetching
1:53:45 PM
php82-curl-8.2.20.pkg: ...... done\\n[42\\/115] Fetching py311-cffi-1.16.0.pkg:
1:53:45 PM
.......... done\\n[43\\/115] Fetching icu-74.2_1,1.pkg: ..........
1:53:45 PM
done\\n[44\\/115] Fetching dnsmasq-2.90_1,1.pkg: .......... done\\n[45\\/115]
1:53:45 PM
Fetching py311-httpx-0.27.0_1.pkg: .......... done\\n[46\\/115] Fetching
1:53:45 PM
py311-packaging-24.0.pkg: .......... done\\n[47\\/115] Fetching
1:53:45 PM
py311-netaddr-1.3.0.pkg: .......... done\\n[48\\/115] Fetching
1:53:45 PM
dhcp6c-20240607.pkg: ......... done\\n[49\\/115] Fetching
1:53:45 PM
php82-phalcon-5.7.0.pkg: .......... done\\n[50\\/115] Fetching
1:53:45 PM
php82-mbstring-8.2.20.pkg: .......... done\\n[51\\/115] Fetching isc-
1:53:45 PM
dhcp44-server-4.4.3P1_1.pkg: .......... done\\n[52\\/115] Fetching
1:53:45 PM
py311-pytz-2024.1,1.pkg: .......... done\\n[53\\/115] Fetching
1:53:45 PM
py311-pysocks-1.7.1_1.pkg: .... done\\n[54\\/115] Fetching ntp-4.2.8p18.pkg:
1:53:45 PM
.......... done\\n[55\\/115] Fetching syslog-ng-4.7.1.pkg: ..........
1:53:45 PM
done\\n[56\\/115] Fetching py311-markupsafe-2.1.5_1.pkg: ... done\\n[57\\/115]
1:53:45 PM
Fetching wazuh-agent-4.7.4.pkg: .......... done\\n[58\\/115] Fetching
1:53:45 PM
libpsl-0.21.5_1.pkg: ........ done\\n[59\\/115] Fetching
1:53:45 PM
py311-requests-2.32.3.pkg: .......... done\\n[60\\/115] Fetching
1:53:45 PM
py311-attrs-23.2.0.pkg: .......... done\\n[61\\/115] Fetching
1:53:45 PM
php82-ldap-8.2.20.pkg: ..... done\\n[62\\/115] Fetching
1:53:45 PM
py311-sortedcontainers-2.4.0.pkg: ...... done\\n[63\\/115] Fetching
1:53:45 PM
python311-3.11.9.pkg: .......... done\\n[64\\/115] Fetching
1:53:45 PM
py311-vici-5.9.11.pkg: ... done\\n[65\\/115] Fetching py311-trio-0.25.1.pkg:
1:53:45 PM
.......... done\\n[66\\/115] Fetching py311-async_generator-1.10.pkg: ......
1:53:45 PM
done\\n[67\\/115] Fetching libcjson-1.7.18_2.pkg: ..... done\\n[68\\/115]
1:53:45 PM
Fetching py311-dnspython-2.6.1,1.pkg: .......... done\\n[69\\/115] Fetching
1:53:45 PM
ivykis-0.43_1.pkg: ......... done\\n[70\\/115] Fetching
1:53:45 PM
py311-certifi-2024.6.2.pkg: .......... done\\n[71\\/115] Fetching
1:53:45 PM
libedit-3.1.20240517,1.pkg: .......... done\\n[72\\/115] Fetching
1:53:45 PM
py311-hpack-4.0.0.pkg: ....... done\\n[73\\/115] Fetching py311-h2-4.1.0.pkg:
1:53:45 PM
.......... done\\n[74\\/115] Fetching py311-tzdata-2024.1.pkg: ..........
1:53:45 PM
done\\n[75\\/115] Fetching php82-sockets-8.2.20.pkg: ...... done\\n[76\\/115]
1:53:45 PM
Fetching php82-8.2.20.pkg: .......... done\\n[77\\/115] Fetching
1:53:45 PM
php82-sqlite3-8.2.20.pkg: .... done\\n[78\\/115] Fetching
1:53:45 PM
py311-Babel-2.14.0.pkg: .......... done\\n[79\\/115] Fetching
1:53:45 PM
py311-outcome-1.3.0_1.pkg: .. done\\n[80\\/115] Fetching
1:53:45 PM
php82-pcntl-8.2.20.pkg: ... done\\n[81\\/115] Fetching php82-xml-8.2.20.pkg:
1:53:45 PM
... done\\n[82\\/115] Fetching curl-8.8.0.pkg: .......... done\\n[83\\/115]
1:53:45 PM
Fetching gettext-runtime-0.22.5.pkg: .......... done\\n[84\\/115] Fetching
1:53:45 PM
py311-yaml-6.0.1.pkg: .......... done\\n[85\\/115] Fetching
1:53:45 PM
py311-numexpr-2.9.0_1.pkg: .......... done\\n[86\\/115] Fetching
1:53:45 PM
py311-socksio-1.0.0_1.pkg: ... done\\n[87\\/115] Fetching hyperscan-5.4.2.pkg:
1:53:45 PM
.......... done\\n[88\\/115] Fetching libpfctl-0.11.pkg: .. done\\n[89\\/115]
1:53:45 PM
Fetching py311-urllib3-1.26.18_1,1.pkg: .......... done\\n[90\\/115] Fetching
1:53:45 PM
openssh-portable-9.7.p1,1.pkg: .......... done\\n[91\\/115] Fetching
1:53:45 PM
nano-8.0.pkg: .......... done\\n[92\\/115] Fetching suricata-7.0.5_1.pkg:
1:53:45 PM
.......... done\\n[93\\/115] Fetching mpd5-5.9_18.pkg: ..........
1:53:45 PM
done\\n[94\\/115] Fetching sqlite3-3.46.0,1.pkg: .......... done\\n[95\\/115]
1:53:45 PM
Fetching php82-gettext-8.2.20.pkg: . done\\n[96\\/115] Fetching
1:53:45 PM
py311-pylsqpack-0.3.18.pkg: ........ done\\n[97\\/115] Fetching
1:53:45 PM
openldap26-client-2.6.8.pkg: .......... done\\n[98\\/115] Fetching
1:53:45 PM
glib-2.80.2,2.pkg: .......... done\\n[99\\/115] Fetching php82-pecl-
1:53:45 PM
mcrypt-1.0.7.pkg: .. done\\n[100\\/115] Fetching py311-pyasn1-0.6.0.pkg:
1:53:45 PM
.......... done\\n[101\\/115] Fetching libucl-0.9.2.pkg: ..........
1:53:45 PM
done\\n[102\\/115] Fetching libsodium-1.0.19.pkg: .......... done\\n[103\\/115]
1:53:45 PM
Fetching py311-ujson-5.10.0.pkg: ...... done\\n[104\\/115] Fetching
1:53:45 PM
opnsense-24.1.9_4.pkg: .......... done\\n[105\\/115] Fetching
1:53:45 PM
py311-duckdb-1.0.0.pkg: .......... done\\n[106\\/115] Fetching
1:53:45 PM
strongswan-5.9.14.pkg: .......... done\\n[107\\/115] Fetching
1:53:45 PM
readline-8.2.10.pkg: .......... done\\n[108\\/115] Fetching libffi-3.4.6.pkg:
1:53:45 PM
...... done\\n[109\\/115] Fetching php82-ctype-8.2.20.pkg: . done\\n[110\\/115]
1:53:45 PM
Fetching pftop-0.10_1.pkg: ........ done\\n[111\\/115] Fetching
1:53:45 PM
expat-2.6.2.pkg: .......... done\\n[112\\/115] Fetching
1:53:45 PM
py311-openssl-23.2.0,1.pkg: .......... done\\n[113\\/115] Fetching
1:53:45 PM
php82-filter-8.2.20.pkg: ... done\\n[114\\/115] Fetching
1:53:45 PM
py311-Jinja2-3.1.3.pkg: .......... done\\n[115\\/115] Fetching
1:53:45 PM
py311-h11-0.14.0.pkg: .......... done\\nChecking integrity... done (7
1:53:45 PM
conflicting)\\n  - py311-numpy-1.25.0_7,1 conflicts with py39-numpy-1.25.0_6,1
1:53:45 PM
on \\/usr\\/local\\/bin\\/f2py\\n  - dhcrelay-0.5 conflicts with isc-
1:53:45 PM
dhcp44-relay-4.4.3P1 on \\/usr\\/local\\/sbin\\/dhcrelay\\n  - py311-charset-
1:53:45 PM
normalizer-3.3.2_1 conflicts with py39-charset-normalizer-3.3.2 on
1:53:45 PM
\\/usr\\/local\\/bin\\/normalizer\\n  - py311-pyasn1-modules-0.4.0 conflicts
1:53:45 PM
with py39-pyasn1-modules-0.3.0 on \\/usr\\/local\\/bin\\/cmcdump.py\\n  -
1:53:45 PM
py311-httpx-0.27.0_1 conflicts with py39-httpx-0.26.0 on
1:53:45 PM
\\/usr\\/local\\/bin\\/httpx\\n  - py311-netaddr-1.3.0 conflicts with
1:53:45 PM
py39-netaddr-0.10.1 on \\/usr\\/local\\/bin\\/netaddr\\n  - py311-Babel-2.14.0
1:53:45 PM
conflicts with py39-Babel-2.14.0 on \\/usr\\/local\\/bin\\/pybabel\\nChecking
1:53:45 PM
integrity... done (0 conflicting)\\nConflicts with the existing packages have
1:53:45 PM
been found.\\nOne more solver iteration is needed to resolve them.\\nThe
1:53:45 PM
following 166 package(s) will be affected (of 0 checked):\\n\\nInstalled
1:53:45 PM
packages to be REMOVED:\\n\\tisc-dhcp44-relay: 4.4.3P1\\n\\tpy39-Babel:
1:53:45 PM
2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic: 0.9.25\\n\\tpy39-anyio:
1:53:45 PM
4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:53:45 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:53:45 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:53:45 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:53:45 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:53:45 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:53:45 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:53:45 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:53:45 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:53:45 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:53:45 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:53:45 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:53:45 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:53:45 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:53:45 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:53:45 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:53:45 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:53:45 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:53:45 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:53:45 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:53:45 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:53:45 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:53:45 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:53:45 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:53:45 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:53:45 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:53:45 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:53:45 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:53:45 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:53:45 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:53:45 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:53:45 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:53:45 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:53:45 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:53:45 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:53:45 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:53:45 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:53:45 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:53:45 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:53:45 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:53:45 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:53:45 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:53:45 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:53:45 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:53:45 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:53:45 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:53:45 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:53:45 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:53:45 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:53:45 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:53:45 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:53:45 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:53:45 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:53:45 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:53:45 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:53:45 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:53:45 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:53:45 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:53:45 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:53:45 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:53:45 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:53:45 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:53:45 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:53:45 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:54:08 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:54:08 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:54:08 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:54:08 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:54:08 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:54:08 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:54:08 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:54:08 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:54:08 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:54:08 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:54:08 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:54:08 PM
(options changed)\\n\\nNumber of packages to be removed: 51\\nNumber of
1:54:08 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:54:08 PM
of packages to be reinstalled: 1\\n\\nThe process will require 156 MiB more
1:54:08 PM
space.\\n[1\\/166] Upgrading readline from 8.2.7_1 to 8.2.10...\\n[1\\/166]
1:54:08 PM
Extracting readline-8.2.10: .......... done\\n[2\\/166] Upgrading openssl from
1:54:08 PM
3.0.13,1 to 3.0.14,1...\\n[2\\/166] Extracting openssl-3.0.14,1: ..........
1:54:08 PM
done\\n[3\\/166] Upgrading libunistring from 1.1 to 1.2...\\n[3\\/166]
1:54:08 PM
Extracting libunistring-1.2: .......... done\\n[4\\/166] Upgrading gettext-
1:54:08 PM
runtime from 0.22.3_1 to 0.22.5...\\n[4\\/166] Extracting gettext-
1:54:08 PM
runtime-0.22.5: .......... done\\n[5\\/166] Upgrading libxml2 from 2.11.7 to
1:54:08 PM
2.11.8...\\n[5\\/166] Extracting libxml2-2.11.8: .......... done\\n[6\\/166]
1:54:08 PM
Upgrading libcjson from 1.7.17 to 1.7.18_2...\\n[6\\/166] Extracting
1:54:08 PM
libcjson-1.7.18_2: .......... done\\n[7\\/166] Upgrading php82 from 8.2.16 to
1:54:08 PM
8.2.20...\\n[7\\/166] Extracting php82-8.2.20: .......... done\\n[8\\/166]
1:54:08 PM
Upgrading libnghttp2 from 1.59.0 to 1.62.1...\\n[8\\/166] Extracting
1:54:08 PM
libnghttp2-1.62.1: .......... done\\n[9\\/166] Upgrading libpsl from 0.21.5 to
1:54:08 PM
0.21.5_1...\\n[9\\/166] Extracting libpsl-0.21.5_1: ..........
1:54:08 PM
done\\n[10\\/166] Upgrading libedit from 3.1.20230828_1,1 to
1:54:08 PM
3.1.20240517,1...\\n[10\\/166] Extracting libedit-3.1.20240517,1: ..........
1:54:08 PM
done\\n[11\\/166] Upgrading php82-session from 8.2.16 to 8.2.20...\\n[11\\/166]
1:54:08 PM
Extracting php82-session-8.2.20: .......... done\\n[12\\/166] Upgrading easy-
1:54:08 PM
rsa from 3.1.7 to 3.2.0...\\n[12\\/166] Extracting easy-rsa-3.2.0: ..........
1:54:08 PM
done\\n[13\\/166] Upgrading php82-pdo from 8.2.16 to 8.2.20...\\n[13\\/166]
1:54:08 PM
Extracting php82-pdo-8.2.20: .......... done\\n[14\\/166] Upgrading
1:54:08 PM
php82-mbstring from 8.2.16 to 8.2.20...\\n[14\\/166] Extracting
1:54:08 PM
php82-mbstring-8.2.20: .......... done\\n[15\\/166] Upgrading curl from 8.6.0
1:54:08 PM
to 8.8.0...\\n[15\\/166] Extracting curl-8.8.0: .......... done\\n[16\\/166]
1:54:08 PM
Upgrading libpfctl from 0.9 to 0.11...\\n[16\\/166] Extracting libpfctl-0.11:
1:54:08 PM
...... done\\n[17\\/166] Upgrading sqlite3 from 3.45.0_1,1 to
1:54:08 PM
3.46.0,1...\\n[17\\/166] Extracting sqlite3-3.46.0,1: ..........
1:54:08 PM
done\\n[18\\/166] Upgrading openldap26-client from 2.6.7 to
1:54:08 PM
2.6.8...\\n[18\\/166] Extracting openldap26-client-2.6.8: ..........
1:54:08 PM
done\\n[19\\/166] Upgrading libucl from 0.9.0 to 0.9.2...\\n[19\\/166]
1:54:08 PM
Extracting libucl-0.9.2: .......... done\\n[20\\/166] Deinstalling isc-
1:54:08 PM
dhcp44-relay-4.4.3P1...\\n[20\\/166] Deleting files for isc-
1:54:08 PM
dhcp44-relay-4.4.3P1: ....... done\\n[21\\/166] Upgrading php82-zlib from
1:54:08 PM
8.2.16 to 8.2.20...\\n[21\\/166] Extracting php82-zlib-8.2.20: ........
1:54:08 PM
done\\n[22\\/166] Upgrading php82-xml from 8.2.16 to 8.2.20...\\n[22\\/166]
1:54:08 PM
Extracting php82-xml-8.2.20: ......... done\\n[23\\/166] Upgrading lighttpd
1:54:08 PM
from 1.4.74_1 to 1.4.76...\\n===> Creating groups\\nUsing existing group
1:54:08 PM
\'www\'\\n===> Creating users\\nUsing existing user \'www\'\\n[23\\/166]
1:54:08 PM
Extracting lighttpd-1.4.76: .......... done\\n[24\\/166] Upgrading opnsense-
1:54:08 PM
update from 24.1.2 to 24.1.8...\\n[24\\/166] Extracting opnsense-update-24.1.8:
1:54:08 PM
.......... done\\n[25\\/166] Upgrading hostapd from 2.10_9 to
1:54:08 PM
2.10_10...\\n[25\\/166] Extracting hostapd-2.10_10: ....... done\\n[26\\/166]
1:54:08 PM
Upgrading php82-dom from 8.2.16 to 8.2.20...\\n[26\\/166] Extracting
1:54:08 PM
php82-dom-8.2.20: .......... done\\n[27\\/166] Upgrading php82-simplexml from
1:54:08 PM
8.2.16 to 8.2.20...\\n[27\\/166] Extracting php82-simplexml-8.2.20: .........
1:54:08 PM
done\\n[28\\/166] Upgrading openvpn from 2.6.9 to 2.6.10...\\n===> Creating
1:54:08 PM
groups\\nUsing existing group \'openvpn\'\\n===> Creating users\\nUsing
1:54:08 PM
existing user \'openvpn\'\\n[28\\/166] Extracting openvpn-2.6.10: ..........
1:54:08 PM
done\\n[29\\/166] Upgrading php82-curl from 8.2.16 to 8.2.20...\\n[29\\/166]
1:54:08 PM
Extracting php82-curl-8.2.20: .......... done\\n[30\\/166] Upgrading dnsmasq
1:54:08 PM
from 2.90,1 to 2.90_1,1...\\n[30\\/166] Extracting dnsmasq-2.90_1,1: ..........
1:54:08 PM
done\\n[31\\/166] Upgrading dhcp6c from 20230530 to 20240607...\\n[31\\/166]
1:54:08 PM
Extracting dhcp6c-20240607: ........ done\\n[32\\/166] Upgrading php82-phalcon
1:54:08 PM
from 5.6.1 to 5.7.0...\\n[32\\/166] Extracting php82-phalcon-5.7.0: ........
1:54:08 PM
done\\n[33\\/166] Upgrading isc-dhcp44-server from 4.4.3P1 to
1:54:08 PM
4.4.3P1_1...\\n===> Creating groups\\nUsing existing group \'dhcpd\'\\n===>
1:54:08 PM
Creating users\\nUsing existing user \'dhcpd\'\\n[33\\/166] Extracting isc-
1:54:08 PM
dhcp44-server-4.4.3P1_1: .......... done\\n[34\\/166] Upgrading ntp from
1:54:08 PM
4.2.8p17_2 to 4.2.8p18...\\n[34\\/166] Extracting ntp-4.2.8p18: ..........
1:54:08 PM
done\\n[35\\/166] Upgrading php82-ldap from 8.2.16 to 8.2.20...\\n[35\\/166]
1:54:08 PM
Extracting php82-ldap-8.2.20: ........ done\\n[36\\/166] Upgrading
1:54:08 PM
php82-sockets from 8.2.16 to 8.2.20...\\n[36\\/166] Extracting
1:54:08 PM
php82-sockets-8.2.20: .......... done\\n[37\\/166] Upgrading php82-sqlite3 from
1:54:08 PM
8.2.16 to 8.2.20...\\n[37\\/166] Extracting php82-sqlite3-8.2.20: .........
1:54:08 PM
done\\n[38\\/166] Upgrading php82-pcntl from 8.2.16 to 8.2.20...\\n[38\\/166]
1:54:08 PM
Extracting php82-pcntl-8.2.20: ......... done\\n[39\\/166] Upgrading openssh-
1:54:08 PM
portable from 9.6.p1_1,1 to 9.7.p1,1...\\n[39\\/166] Extracting openssh-
1:54:08 PM
portable-9.7.p1,1: .......... done\\n[40\\/166] Upgrading mpd5 from 5.9_17 to
1:54:08 PM
5.9_18...\\n[40\\/166] Extracting mpd5-5.9_18: .......... done\\n[41\\/166]
1:54:08 PM
Upgrading php82-gettext from 8.2.16 to 8.2.20...\\n[41\\/166] Extracting
1:54:08 PM
php82-gettext-8.2.20: ........ done\\n[42\\/166] Upgrading strongswan from
1:54:08 PM
5.9.13_1 to 5.9.14...\\n[42\\/166] Extracting strongswan-5.9.14: ..........
1:54:08 PM
done\\n[43\\/166] Upgrading php82-ctype from 8.2.16 to 8.2.20...\\n[43\\/166]
1:54:08 PM
Extracting php82-ctype-8.2.20: ........ done\\n[44\\/166] Upgrading pftop from
1:54:08 PM
0.10 to 0.10_1...\\n[44\\/166] Extracting pftop-0.10_1: ..... done\\n[45\\/166]
1:54:08 PM
Upgrading php82-filter from 8.2.16 to 8.2.20...\\n[45\\/166] Extracting
1:54:08 PM
php82-filter-8.2.20: ......... done\\n[46\\/166] Deinstalling
1:54:08 PM
py39-dnspython-2.6.1,1...\\n[46\\/166] Deleting files for
1:54:08 PM
py39-dnspython-2.6.1,1: .......... done\\n[47\\/166] Deinstalling
1:54:08 PM
py39-aioquic-0.9.25...\\n[47\\/166] Deleting files for py39-aioquic-0.9.25:
1:54:08 PM
.......... done\\n[48\\/166] Deinstalling py39-httpx-0.26.0...\\n[48\\/166]
1:54:08 PM
Deleting files for py39-httpx-0.26.0: .......... done\\n[49\\/166] Deinstalling
1:54:08 PM
py39-service-identity-23.1.0...\\n[49\\/166] Deleting files for py39-service-
1:54:08 PM
identity-23.1.0: .......... done\\n[50\\/166] Deinstalling
1:54:08 PM
py39-openssl-23.2.0,1...\\n[50\\/166] Deleting files for py39-openssl-23.2.0,1:
1:54:08 PM
.......... done\\n[51\\/166] Deinstalling py39-duckdb-0.9.2...\\n[51\\/166]
1:54:08 PM
Deleting files for py39-duckdb-0.9.2: .......... done\\n[52\\/166] Deinstalling
1:54:08 PM
py39-httpcore-1.0.3...\\n[52\\/166] Deleting files for py39-httpcore-1.0.3:
1:54:08 PM
.......... done\\n[53\\/166] Deinstalling py39-requests-2.31.0...\\n[53\\/166]
1:54:08 PM
Deleting files for py39-requests-2.31.0: .......... done\\n[54\\/166]
1:54:08 PM
Deinstalling py39-trio-0.24.0...\\n[54\\/166] Deleting files for
1:54:08 PM
py39-trio-0.24.0: .......... done\\n[55\\/166] Deinstalling
1:54:08 PM
py39-cryptography-41.0.7_3,1...\\n[55\\/166] Deleting files for
1:54:08 PM
py39-cryptography-41.0.7_3,1: .......... done\\n[56\\/166] Deinstalling
1:54:08 PM
py39-pandas-2.0.3_1,1...\\n[56\\/166] Deleting files for py39-pandas-2.0.3_1,1:
1:54:08 PM
.......... done\\n[57\\/166] Upgrading libffi from 3.4.4_1 to
1:54:08 PM
3.4.6...\\n[57\\/166] Extracting libffi-3.4.6: .......... done\\n[58\\/166]
1:54:08 PM
Upgrading nss from 3.97 to 3.100...\\n[58\\/166] Extracting nss-3.100:
1:54:08 PM
.......... done\\n[59\\/166] Upgrading hyperscan from 5.4.0 to
1:54:08 PM
5.4.2...\\n[59\\/166] Extracting hyperscan-5.4.2: .......... done\\n[60\\/166]
1:54:08 PM
Deinstalling py39-anyio-4.2.0...\\n[60\\/166] Deleting files for
1:54:08 PM
py39-anyio-4.2.0: .......... done\\n[61\\/166] Deinstalling
1:54:08 PM
py39-urllib3-1.26.18,1...\\n[61\\/166] Deleting files for
1:54:08 PM
py39-urllib3-1.26.18,1: .......... done\\n[62\\/166] Deinstalling
1:54:08 PM
py39-dateutil-2.8.2...\\n[62\\/166] Deleting files for py39-dateutil-2.8.2:
1:54:08 PM
.......... done\\n[63\\/166] Deinstalling py39-cffi-1.16.0...\\n[63\\/166]
1:54:08 PM
Deleting files for py39-cffi-1.16.0: .......... done\\n[64\\/166] Deinstalling
1:54:08 PM
py39-h2-4.1.0...\\n[64\\/166] Deleting files for py39-h2-4.1.0: ..........
1:54:08 PM
done\\n[65\\/166] Deinstalling py39-numexpr-2.9.0...\\n[65\\/166] Deleting
1:54:08 PM
files for py39-numexpr-2.9.0: .......... done\\n[66\\/166] Deinstalling
1:54:08 PM
py39-Jinja2-3.1.3...\\n[66\\/166] Deleting files for py39-Jinja2-3.1.3:
1:54:08 PM
.......... done\\n[67\\/166] Deinstalling
1:54:08 PM
py39-bottleneck-1.3.7_1...\\n[67\\/166] Deleting files for
1:54:08 PM
py39-bottleneck-1.3.7_1: .......... done\\n[68\\/166] Upgrading e2fsprogs-
1:54:08 PM
libuuid from 1.47.0 to 1.47.1...\\n[68\\/166] Extracting e2fsprogs-
1:54:08 PM
libuuid-1.47.1: .......... done\\n[69\\/166] Upgrading ivykis from 0.43 to
1:54:08 PM
0.43_1...\\n[69\\/166] Extracting ivykis-0.43_1: .......... done\\n[70\\/166]
1:54:08 PM
Deinstalling py39-sniffio-1.3.0...\\n[70\\/166] Deleting files for
1:54:08 PM
py39-sniffio-1.3.0: .......... done\\n[71\\/166] Deinstalling
1:54:08 PM
py39-sqlite3-3.9.18_7...\\n[71\\/166] Deleting files for py39-sqlite3-3.9.18_7:
1:54:08 PM
........ done\\n[72\\/166] Deinstalling
1:54:08 PM
py39-sortedcontainers-2.4.0...\\n[72\\/166] Deleting files for
1:54:08 PM
py39-sortedcontainers-2.4.0: .......... done\\n[73\\/166] Deinstalling
1:54:08 PM
py39-ujson-5.9.0...\\n[73\\/166] Deleting files for py39-ujson-5.9.0: .........
1:54:08 PM
done\\n[74\\/166] Deinstalling py39-vici-5.9.11...\\n[74\\/166] Deleting files
1:54:08 PM
for py39-vici-5.9.11: .......... done\\n[75\\/166] Deinstalling
1:54:08 PM
py39-hyperframe-6.0.0...\\n[75\\/166] Deleting files for py39-hyperframe-6.0.0:
1:54:08 PM
.......... done\\n[76\\/166] Deinstalling py39-h11-0.14.0...\\n[76\\/166]
1:54:08 PM
Deleting files for py39-h11-0.14.0: .......... done\\n[77\\/166] Deinstalling
1:54:08 PM
py39-pycparser-2.21...\\n[77\\/166] Deleting files for py39-pycparser-2.21:
1:54:08 PM
.......... done\\n[78\\/166] Deinstalling py39-six-1.16.0...\\n[78\\/166]
1:54:08 PM
Deleting files for py39-six-1.16.0: .......... done\\n[79\\/166] Deinstalling
1:54:08 PM
py39-pytz-2024.1,1...\\n[79\\/166] Deleting files for py39-pytz-2024.1,1:
1:54:08 PM
.......... done\\n[80\\/166] Deinstalling py39-certifi-2024.2.2...\\n[80\\/166]
1:54:08 PM
Deleting files for py39-certifi-2024.2.2: .......... done\\n[81\\/166]
1:54:08 PM
Deinstalling py39-pysocks-1.7.1...\\n[81\\/166] Deleting files for
1:54:08 PM
py39-pysocks-1.7.1: .......... done\\n[82\\/166] Deinstalling
1:54:08 PM
py39-netaddr-0.10.1...\\n[82\\/166] Deleting files for py39-netaddr-0.10.1:
1:54:08 PM
.......... done\\n[83\\/166] Deinstalling py39-charset-
1:54:08 PM
normalizer-3.3.2...\\n[83\\/166] Deleting files for py39-charset-
1:54:08 PM
normalizer-3.3.2: .......... done\\n[84\\/166] Deinstalling
1:54:08 PM
py39-hpack-4.0.0...\\n[84\\/166] Deleting files for py39-hpack-4.0.0:
1:54:09 PM
.......... done\\n[85\\/166] Deinstalling py39-yaml-6.0.1...\\n[85\\/166]
1:54:09 PM
Deleting files for py39-yaml-6.0.1: .......... done\\n[86\\/166] Deinstalling
1:54:09 PM
py39-pyasn1-modules-0.3.0...\\n[86\\/166] Deleting files for
1:54:09 PM
py39-pyasn1-modules-0.3.0: .......... done\\n[87\\/166] Deinstalling
1:54:09 PM
py39-Babel-2.14.0...\\n[87\\/166] Deleting files for py39-Babel-2.14.0:
1:54:09 PM
.......... done\\n[88\\/166] Deinstalling py39-markupsafe-2.1.5...\\n[88\\/166]
1:54:09 PM
Deleting files for py39-markupsafe-2.1.5: .......... done\\n[89\\/166]
1:54:09 PM
Deinstalling py39-async_generator-1.10...\\n[89\\/166] Deleting files for
1:54:09 PM
py39-async_generator-1.10: .......... done\\n[90\\/166] Deinstalling
1:54:09 PM
py39-numpy-1.25.0_6,1...\\n[90\\/166] Deleting files for py39-numpy-1.25.0_6,1:
1:54:09 PM
.......... done\\n[91\\/166] Deinstalling py39-outcome-1.3.0_1...\\n[91\\/166]
1:54:09 PM
Deleting files for py39-outcome-1.3.0_1: .......... done\\n[92\\/166] Upgrading
1:54:09 PM
libsodium from 1.0.18 to 1.0.19...\\n[92\\/166] Extracting libsodium-1.0.19:
1:54:09 PM
.......... done\\n[93\\/166] Upgrading expat from 2.6.0 to
1:54:09 PM
2.6.2...\\n[93\\/166] Extracting expat-2.6.2: .......... done\\n[94\\/166]
1:54:09 PM
Deinstalling py39-idna-3.6...\\n[94\\/166] Deleting files for py39-idna-3.6:
1:54:09 PM
.......... done\\n[95\\/166] Deinstalling py39-typing-
1:54:09 PM
extensions-4.9.0...\\n[95\\/166] Deleting files for py39-typing-
1:54:09 PM
extensions-4.9.0: .......... done\\n[96\\/166] Deinstalling
1:54:09 PM
py39-tzdata-2024.1...\\n[96\\/166] Deleting files for py39-tzdata-2024.1:
1:54:09 PM
.......... done\\n[97\\/166] Deinstalling py39-pylsqpack-0.3.18...\\n[97\\/166]
1:54:09 PM
Deleting files for py39-pylsqpack-0.3.18: .......... done\\n[98\\/166]
1:54:09 PM
Deinstalling py39-setuptools-63.1.0_1...\\n[98\\/166] Deleting files for
1:54:09 PM
py39-setuptools-63.1.0_1: .......... done\\n[99\\/166] Deinstalling
1:54:09 PM
py39-pyasn1-0.5.0...\\n[99\\/166] Deleting files for py39-pyasn1-0.5.0:
1:54:09 PM
.......... done\\n[100\\/166] Deinstalling py39-attrs-23.2.0...\\n[100\\/166]
1:54:09 PM
Deleting files for py39-attrs-23.2.0: .......... done\\n[101\\/166]
1:54:09 PM
Deinstalling py39-exceptiongroup-1.2.0...\\n[101\\/166] Deleting files for
1:54:09 PM
py39-exceptiongroup-1.2.0: .......... done\\n[102\\/166] Upgrading mpdecimal
1:54:09 PM
from 2.5.1 to 4.0.0...\\n[102\\/166] Extracting mpdecimal-4.0.0: ..........
1:54:09 PM
done\\n[103\\/166] Deinstalling python39-3.9.18_1...\\n[103\\/166] Deleting
1:54:09 PM
files for python39-3.9.18_1: .......... done\\n[104\\/166] Installing
1:54:09 PM
python311-3.11.9...\\n[104\\/166] Extracting python311-3.11.9: ..........
1:54:09 PM
done\\n[105\\/166] Installing py311-pycparser-2.22...\\n[105\\/166] Extracting
1:54:09 PM
py311-pycparser-2.22: .......... done\\n[106\\/166] Installing
1:54:09 PM
py311-setuptools-63.1.0_1...\\n[106\\/166] Extracting
1:54:09 PM
py311-setuptools-63.1.0_1: .......... done\\n[107\\/166] Installing
1:54:09 PM
py311-sniffio-1.3.1...\\n[107\\/166] Extracting py311-sniffio-1.3.1: ..........
1:54:09 PM
done\\n[108\\/166] Installing py311-hyperframe-6.0.0...\\n[108\\/166]
1:54:09 PM
Extracting py311-hyperframe-6.0.0: .......... done\\n[109\\/166] Installing
1:54:09 PM
py311-idna-3.7...\\n[109\\/166] Extracting py311-idna-3.7: ..........
1:54:09 PM
done\\n[110\\/166] Installing py311-cffi-1.16.0...\\n[110\\/166] Extracting
1:54:09 PM
py311-cffi-1.16.0: .......... done\\n[111\\/166] Installing
1:54:09 PM
py311-hpack-4.0.0...\\n[111\\/166] Extracting py311-hpack-4.0.0: ..........
1:54:09 PM
done\\n[112\\/166] Installing py311-pyasn1-0.6.0...\\n[112\\/166] Extracting
1:54:09 PM
py311-pyasn1-0.6.0: .......... done\\n[113\\/166] Installing
1:54:09 PM
py311-anyio-4.4.0...\\n[113\\/166] Extracting py311-anyio-4.4.0: ..........
1:54:09 PM
done\\n[114\\/166] Installing py311-cryptography-42.0.8,1...\\n[114\\/166]
1:54:09 PM
Extracting py311-cryptography-42.0.8,1: .......... done\\n[115\\/166]
1:54:09 PM
Installing py311-numpy-1.25.0_7,1...\\n[115\\/166] Extracting
1:54:09 PM
py311-numpy-1.25.0_7,1: .......... done\\n[116\\/166] Installing
1:54:09 PM
py311-six-1.16.0...\\n[116\\/166] Extracting py311-six-1.16.0: ..........
1:54:09 PM
done\\n[117\\/166] Installing py311-pyasn1-modules-0.4.0...\\n[117\\/166]
1:54:09 PM
Extracting py311-pyasn1-modules-0.4.0: .......... done\\n[118\\/166] Installing
1:54:09 PM
py311-attrs-23.2.0...\\n[118\\/166] Extracting py311-attrs-23.2.0: ..........
1:54:09 PM
done\\n[119\\/166] Installing py311-certifi-2024.6.2...\\n[119\\/166]
1:54:09 PM
Extracting py311-certifi-2024.6.2: .......... done\\n[120\\/166] Installing
1:54:09 PM
py311-h2-4.1.0...\\n[120\\/166] Extracting py311-h2-4.1.0: ..........
1:54:09 PM
done\\n[121\\/166] Installing py311-h11-0.14.0...\\n[121\\/166] Extracting
1:54:09 PM
py311-h11-0.14.0: .......... done\\n[122\\/166] Installing
1:54:09 PM
py311-packaging-24.0...\\n[122\\/166] Extracting py311-packaging-24.0:
1:54:09 PM
.......... done\\n[123\\/166] Installing
1:54:09 PM
py311-sqlite3-3.11.9_7...\\n[123\\/166] Extracting py311-sqlite3-3.11.9_7:
1:54:09 PM
........ done\\n[124\\/166] Installing py311-service-
1:54:09 PM
identity-24.1.0...\\n[124\\/166] Extracting py311-service-identity-24.1.0:
1:54:09 PM
.......... done\\n[125\\/166] Installing
1:54:09 PM
py311-bottleneck-1.3.8_1...\\n[125\\/166] Extracting py311-bottleneck-1.3.8_1:
1:54:09 PM
.......... done\\n[126\\/166] Installing py311-httpcore-1.0.5...\\n[126\\/166]
1:54:09 PM
Extracting py311-httpcore-1.0.5: .......... done\\n[127\\/166] Installing
1:54:09 PM
py311-python-dateutil-2.9.0...\\n[127\\/166] Extracting py311-python-
1:54:09 PM
dateutil-2.9.0: .......... done\\n[128\\/166] Installing
1:54:09 PM
py311-pytz-2024.1,1...\\n[128\\/166] Extracting py311-pytz-2024.1,1: ..........
1:54:09 PM
done\\n[129\\/166] Installing py311-pysocks-1.7.1_1...\\n[129\\/166] Extracting
1:54:09 PM
py311-pysocks-1.7.1_1: .......... done\\n[130\\/166] Installing
1:54:09 PM
py311-sortedcontainers-2.4.0...\\n[130\\/166] Extracting
1:54:09 PM
py311-sortedcontainers-2.4.0: .......... done\\n[131\\/166] Installing
1:54:09 PM
py311-async_generator-1.10...\\n[131\\/166] Extracting
1:54:09 PM
py311-async_generator-1.10: .......... done\\n[132\\/166] Installing
1:54:09 PM
py311-tzdata-2024.1...\\n[132\\/166] Extracting py311-tzdata-2024.1: ..........
1:54:09 PM
done\\n[133\\/166] Installing py311-outcome-1.3.0_1...\\n[133\\/166] Extracting
1:54:09 PM
py311-outcome-1.3.0_1: .......... done\\n[134\\/166] Installing
1:54:09 PM
py311-numexpr-2.9.0_1...\\n[134\\/166] Extracting py311-numexpr-2.9.0_1:
1:54:09 PM
.......... done\\n[135\\/166] Installing py311-socksio-1.0.0_1...\\n[135\\/166]
1:54:09 PM
Extracting py311-socksio-1.0.0_1: .......... done\\n[136\\/166] Installing
1:54:09 PM
py311-pylsqpack-0.3.18...\\n[136\\/166] Extracting py311-pylsqpack-0.3.18:
1:54:09 PM
.......... done\\n[137\\/166] Installing
1:54:09 PM
py311-openssl-23.2.0,1...\\n[137\\/166] Extracting py311-openssl-23.2.0,1:
1:54:09 PM
.......... done\\n[138\\/166] Upgrading glib from 2.78.4,2 to
1:54:09 PM
2.80.2,2...\\n[138\\/166] Extracting glib-2.80.2,2: ..........
1:54:09 PM
done\\n[139\\/166] Installing py311-pandas-2.0.3_2,1...\\n[139\\/166]
1:54:09 PM
Extracting py311-pandas-2.0.3_2,1: ...."}'}'
1:54:09 PM
[WARNING]: 2024-07-08 13:53:39 | Got response: running
1:54:09 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:54:09 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:54:09 PM
'_num_bytes_downloaded': 34231, '_elapsed':
1:54:09 PM
datetime.timedelta(microseconds=63621), '_content':
1:54:09 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:54:09 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:54:09 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:54:09 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:54:09 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:54:09 PM
repositories are up to date.\\nUpdating OPNsense repository
1:54:09 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:54:09 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:54:09 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:54:09 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:54:09 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:54:09 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:54:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:54:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:54:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:54:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:54:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:54:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:54:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:54:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:54:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:54:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:54:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:54:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:54:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:54:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:54:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:54:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:54:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:54:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:54:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:54:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:54:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:54:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:54:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:54:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:54:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:54:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:54:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:54:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:54:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:54:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:54:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:54:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:54:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:54:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:54:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:54:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:54:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:54:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:54:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:54:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:54:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:54:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:54:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:54:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:54:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:54:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:54:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:54:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:54:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:54:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:54:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:54:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:54:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:54:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:54:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:54:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:54:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:54:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:54:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:54:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:54:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:54:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:54:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:54:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:54:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:54:09 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:54:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:54:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:54:09 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:54:09 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:54:09 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:54:09 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:54:09 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:54:09 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:54:09 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:54:09 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:54:09 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:54:09 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:54:09 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:54:09 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:54:09 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:54:09 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:54:09 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:54:09 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:54:09 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:54:09 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:54:09 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:54:09 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:54:09 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:54:09 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:54:09 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:54:09 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:54:09 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:54:09 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:54:09 PM
done\\n[29\\/115] Fetching py311-charset-normalizer-3.3.2_1.pkg: ..........
1:54:09 PM
done\\n[30\\/115] Fetching py311-pyasn1-modules-0.4.0.pkg: ..........
1:54:09 PM
done\\n[31\\/115] Fetching easy-rsa-3.2.0.pkg: ...... done\\n[32\\/115]
1:54:09 PM
Fetching os-wazuh-agent-1.0_2.pkg: .. done\\n[33\\/115] Fetching
1:54:09 PM
py311-aioquic-0.9.25.pkg: .......... done\\n[34\\/115] Fetching e2fsprogs-
1:54:09 PM
libuuid-1.47.1.pkg: ..... done\\n[35\\/115] Fetching
1:54:09 PM
py311-setuptools-63.1.0_1.pkg: .......... done\\n[36\\/115] Fetching
1:54:09 PM
py311-idna-3.7.pkg: .......... done\\n[37\\/115] Fetching openvpn-2.6.10.pkg:
1:54:09 PM
.......... done\\n[38\\/115] Fetching php82-pdo-8.2.20.pkg: .......
1:54:09 PM
done\\n[39\\/115] Fetching libnghttp2-1.62.1.pkg: .......... done\\n[40\\/115]
1:54:09 PM
Fetching libxml2-2.11.8.pkg: .......... done\\n[41\\/115] Fetching
1:54:09 PM
php82-curl-8.2.20.pkg: ...... done\\n[42\\/115] Fetching py311-cffi-1.16.0.pkg:
1:54:09 PM
.......... done\\n[43\\/115] Fetching icu-74.2_1,1.pkg: ..........
1:54:09 PM
done\\n[44\\/115] Fetching dnsmasq-2.90_1,1.pkg: .......... done\\n[45\\/115]
1:54:09 PM
Fetching py311-httpx-0.27.0_1.pkg: .......... done\\n[46\\/115] Fetching
1:54:09 PM
py311-packaging-24.0.pkg: .......... done\\n[47\\/115] Fetching
1:54:09 PM
py311-netaddr-1.3.0.pkg: .......... done\\n[48\\/115] Fetching
1:54:09 PM
dhcp6c-20240607.pkg: ......... done\\n[49\\/115] Fetching
1:54:09 PM
php82-phalcon-5.7.0.pkg: .......... done\\n[50\\/115] Fetching
1:54:09 PM
php82-mbstring-8.2.20.pkg: .......... done\\n[51\\/115] Fetching isc-
1:54:09 PM
dhcp44-server-4.4.3P1_1.pkg: .......... done\\n[52\\/115] Fetching
1:54:09 PM
py311-pytz-2024.1,1.pkg: .......... done\\n[53\\/115] Fetching
1:54:09 PM
py311-pysocks-1.7.1_1.pkg: .... done\\n[54\\/115] Fetching ntp-4.2.8p18.pkg:
1:54:09 PM
.......... done\\n[55\\/115] Fetching syslog-ng-4.7.1.pkg: ..........
1:54:09 PM
done\\n[56\\/115] Fetching py311-markupsafe-2.1.5_1.pkg: ... done\\n[57\\/115]
1:54:09 PM
Fetching wazuh-agent-4.7.4.pkg: .......... done\\n[58\\/115] Fetching
1:54:09 PM
libpsl-0.21.5_1.pkg: ........ done\\n[59\\/115] Fetching
1:54:09 PM
py311-requests-2.32.3.pkg: .......... done\\n[60\\/115] Fetching
1:54:09 PM
py311-attrs-23.2.0.pkg: .......... done\\n[61\\/115] Fetching
1:54:09 PM
php82-ldap-8.2.20.pkg: ..... done\\n[62\\/115] Fetching
1:54:09 PM
py311-sortedcontainers-2.4.0.pkg: ...... done\\n[63\\/115] Fetching
1:54:09 PM
python311-3.11.9.pkg: .......... done\\n[64\\/115] Fetching
1:54:09 PM
py311-vici-5.9.11.pkg: ... done\\n[65\\/115] Fetching py311-trio-0.25.1.pkg:
1:54:09 PM
.......... done\\n[66\\/115] Fetching py311-async_generator-1.10.pkg: ......
1:54:09 PM
done\\n[67\\/115] Fetching libcjson-1.7.18_2.pkg: ..... done\\n[68\\/115]
1:54:09 PM
Fetching py311-dnspython-2.6.1,1.pkg: .......... done\\n[69\\/115] Fetching
1:54:09 PM
ivykis-0.43_1.pkg: ......... done\\n[70\\/115] Fetching
1:54:09 PM
py311-certifi-2024.6.2.pkg: .......... done\\n[71\\/115] Fetching
1:54:09 PM
libedit-3.1.20240517,1.pkg: .......... done\\n[72\\/115] Fetching
1:54:09 PM
py311-hpack-4.0.0.pkg: ....... done\\n[73\\/115] Fetching py311-h2-4.1.0.pkg:
1:54:09 PM
.......... done\\n[74\\/115] Fetching py311-tzdata-2024.1.pkg: ..........
1:54:09 PM
done\\n[75\\/115] Fetching php82-sockets-8.2.20.pkg: ...... done\\n[76\\/115]
1:54:09 PM
Fetching php82-8.2.20.pkg: .......... done\\n[77\\/115] Fetching
1:54:09 PM
php82-sqlite3-8.2.20.pkg: .... done\\n[78\\/115] Fetching
1:54:09 PM
py311-Babel-2.14.0.pkg: .......... done\\n[79\\/115] Fetching
1:54:09 PM
py311-outcome-1.3.0_1.pkg: .. done\\n[80\\/115] Fetching
1:54:09 PM
php82-pcntl-8.2.20.pkg: ... done\\n[81\\/115] Fetching php82-xml-8.2.20.pkg:
1:54:09 PM
... done\\n[82\\/115] Fetching curl-8.8.0.pkg: .......... done\\n[83\\/115]
1:54:09 PM
Fetching gettext-runtime-0.22.5.pkg: .......... done\\n[84\\/115] Fetching
1:54:09 PM
py311-yaml-6.0.1.pkg: .......... done\\n[85\\/115] Fetching
1:54:09 PM
py311-numexpr-2.9.0_1.pkg: .......... done\\n[86\\/115] Fetching
1:54:09 PM
py311-socksio-1.0.0_1.pkg: ... done\\n[87\\/115] Fetching hyperscan-5.4.2.pkg:
1:54:09 PM
.......... done\\n[88\\/115] Fetching libpfctl-0.11.pkg: .. done\\n[89\\/115]
1:54:09 PM
Fetching py311-urllib3-1.26.18_1,1.pkg: .......... done\\n[90\\/115] Fetching
1:54:09 PM
openssh-portable-9.7.p1,1.pkg: .......... done\\n[91\\/115] Fetching
1:54:09 PM
nano-8.0.pkg: .......... done\\n[92\\/115] Fetching suricata-7.0.5_1.pkg:
1:54:09 PM
.......... done\\n[93\\/115] Fetching mpd5-5.9_18.pkg: ..........
1:54:09 PM
done\\n[94\\/115] Fetching sqlite3-3.46.0,1.pkg: .......... done\\n[95\\/115]
1:54:09 PM
Fetching php82-gettext-8.2.20.pkg: . done\\n[96\\/115] Fetching
1:54:09 PM
py311-pylsqpack-0.3.18.pkg: ........ done\\n[97\\/115] Fetching
1:54:09 PM
openldap26-client-2.6.8.pkg: .......... done\\n[98\\/115] Fetching
1:54:09 PM
glib-2.80.2,2.pkg: .......... done\\n[99\\/115] Fetching php82-pecl-
1:54:09 PM
mcrypt-1.0.7.pkg: .. done\\n[100\\/115] Fetching py311-pyasn1-0.6.0.pkg:
1:54:09 PM
.......... done\\n[101\\/115] Fetching libucl-0.9.2.pkg: ..........
1:54:09 PM
done\\n[102\\/115] Fetching libsodium-1.0.19.pkg: .......... done\\n[103\\/115]
1:54:09 PM
Fetching py311-ujson-5.10.0.pkg: ...... done\\n[104\\/115] Fetching
1:54:09 PM
opnsense-24.1.9_4.pkg: .......... done\\n[105\\/115] Fetching
1:54:09 PM
py311-duckdb-1.0.0.pkg: .......... done\\n[106\\/115] Fetching
1:54:09 PM
strongswan-5.9.14.pkg: .......... done\\n[107\\/115] Fetching
1:54:09 PM
readline-8.2.10.pkg: .......... done\\n[108\\/115] Fetching libffi-3.4.6.pkg:
1:54:09 PM
...... done\\n[109\\/115] Fetching php82-ctype-8.2.20.pkg: . done\\n[110\\/115]
1:54:09 PM
Fetching pftop-0.10_1.pkg: ........ done\\n[111\\/115] Fetching
1:54:09 PM
expat-2.6.2.pkg: .......... done\\n[112\\/115] Fetching
1:54:09 PM
py311-openssl-23.2.0,1.pkg: .......... done\\n[113\\/115] Fetching
1:54:09 PM
php82-filter-8.2.20.pkg: ... done\\n[114\\/115] Fetching
1:54:09 PM
py311-Jinja2-3.1.3.pkg: .......... done\\n[115\\/115] Fetching
1:54:09 PM
py311-h11-0.14.0.pkg: .......... done\\nChecking integrity... done (7
1:54:09 PM
conflicting)\\n  - py311-numpy-1.25.0_7,1 conflicts with py39-numpy-1.25.0_6,1
1:54:09 PM
on \\/usr\\/local\\/bin\\/f2py\\n  - dhcrelay-0.5 conflicts with isc-
1:54:09 PM
dhcp44-relay-4.4.3P1 on \\/usr\\/local\\/sbin\\/dhcrelay\\n  - py311-charset-
1:54:09 PM
normalizer-3.3.2_1 conflicts with py39-charset-normalizer-3.3.2 on
1:54:09 PM
\\/usr\\/local\\/bin\\/normalizer\\n  - py311-pyasn1-modules-0.4.0 conflicts
1:54:09 PM
with py39-pyasn1-modules-0.3.0 on \\/usr\\/local\\/bin\\/cmcdump.py\\n  -
1:54:09 PM
py311-httpx-0.27.0_1 conflicts with py39-httpx-0.26.0 on
1:54:09 PM
\\/usr\\/local\\/bin\\/httpx\\n  - py311-netaddr-1.3.0 conflicts with
1:54:09 PM
py39-netaddr-0.10.1 on \\/usr\\/local\\/bin\\/netaddr\\n  - py311-Babel-2.14.0
1:54:09 PM
conflicts with py39-Babel-2.14.0 on \\/usr\\/local\\/bin\\/pybabel\\nChecking
1:54:09 PM
integrity... done (0 conflicting)\\nConflicts with the existing packages have
1:54:09 PM
been found.\\nOne more solver iteration is needed to resolve them.\\nThe
1:54:09 PM
following 166 package(s) will be affected (of 0 checked):\\n\\nInstalled
1:54:09 PM
packages to be REMOVED:\\n\\tisc-dhcp44-relay: 4.4.3P1\\n\\tpy39-Babel:
1:54:09 PM
2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic: 0.9.25\\n\\tpy39-anyio:
1:54:09 PM
4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:54:09 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:54:09 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:54:09 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:54:09 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:54:09 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:54:09 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:54:09 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:54:09 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:54:09 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:54:09 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:54:09 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:54:09 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:54:09 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:54:09 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:54:09 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:54:09 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:54:09 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:54:09 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:54:09 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:54:09 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:54:09 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:54:09 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:54:09 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:54:09 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:54:09 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:54:09 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:54:09 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:54:09 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:54:09 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:54:09 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:54:09 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:54:09 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:54:09 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:54:09 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:54:09 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:54:09 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:54:09 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:54:09 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:54:09 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:54:09 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:54:09 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:54:09 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:54:09 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:54:09 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:54:09 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:54:09 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:54:09 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:54:09 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:54:09 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:54:09 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:54:09 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:54:09 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:54:09 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:54:09 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:54:09 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:54:09 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:54:09 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:54:09 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:54:09 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:54:09 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:54:09 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:54:09 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:54:09 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:54:09 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:54:09 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:54:09 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:54:09 PM
(options changed)\\n\\nNumber of packages to be removed: 51\\nNumber of
1:54:09 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:54:09 PM
of packages to be reinstalled: 1\\n\\nThe process will require 156 MiB more
1:54:09 PM
space.\\n[1\\/166] Upgrading readline from 8.2.7_1 to 8.2.10...\\n[1\\/166]
1:54:09 PM
Extracting readline-8.2.10: .......... done\\n[2\\/166] Upgrading openssl from
1:54:09 PM
changed: [C1002FW01]
1:54:09 PM
3.0.13,1 to 3.0.14,1...\\n[2\\/166] Extracting openssl-3.0.14,1: ..........
1:54:09 PM
done\\n[3\\/166] Upgrading libunistring from 1.1 to 1.2...\\n[3\\/166]
1:54:09 PM
Extracting libunistring-1.2: .......... done\\n[4\\/166] Upgrading gettext-
1:54:09 PM
runtime from 0.22.3_1 to 0.22.5...\\n[4\\/166] Extracting gettext-
1:54:09 PM
runtime-0.22.5: .......... done\\n[5\\/166] Upgrading libxml2 from 2.11.7 to
1:54:09 PM
2.11.8...\\n[5\\/166] Extracting libxml2-2.11.8: .......... done\\n[6\\/166]
1:54:09 PM
Upgrading libcjson from 1.7.17 to 1.7.18_2...\\n[6\\/166] Extracting
1:54:09 PM
libcjson-1.7.18_2: .......... done\\n[7\\/166] Upgrading php82 from 8.2.16 to
1:54:09 PM
8.2.20...\\n[7\\/166] Extracting php82-8.2.20: .......... done\\n[8\\/166]
1:54:09 PM
Upgrading libnghttp2 from 1.59.0 to 1.62.1...\\n[8\\/166] Extracting
1:54:09 PM
libnghttp2-1.62.1: .......... done\\n[9\\/166] Upgrading libpsl from 0.21.5 to
1:54:09 PM
0.21.5_1...\\n[9\\/166] Extracting libpsl-0.21.5_1: ..........
1:54:09 PM
done\\n[10\\/166] Upgrading libedit from 3.1.20230828_1,1 to
1:54:09 PM
3.1.20240517,1...\\n[10\\/166] Extracting libedit-3.1.20240517,1: ..........
1:54:09 PM
done\\n[11\\/166] Upgrading php82-session from 8.2.16 to 8.2.20...\\n[11\\/166]
1:54:09 PM
Extracting php82-session-8.2.20: .......... done\\n[12\\/166] Upgrading easy-
1:54:09 PM
rsa from 3.1.7 to 3.2.0...\\n[12\\/166] Extracting easy-rsa-3.2.0: ..........
1:54:09 PM
done\\n[13\\/166] Upgrading php82-pdo from 8.2.16 to 8.2.20...\\n[13\\/166]
1:54:09 PM
1:54:09 PM
Extracting php82-pdo-8.2.20: .......... done\\n[14\\/166] Upgrading
1:54:09 PM
TASK [Reboot without wait] *****************************************************
1:54:09 PM
php82-mbstring from 8.2.16 to 8.2.20...\\n[14\\/166] Extracting
1:54:09 PM
php82-mbstring-8.2.20: .......... done\\n[15\\/166] Upgrading curl from 8.6.0
1:54:09 PM
to 8.8.0...\\n[15\\/166] Extracting curl-8.8.0: .......... done\\n[16\\/166]
1:54:09 PM
Upgrading libpfctl from 0.9 to 0.11...\\n[16\\/166] Extracting libpfctl-0.11:
1:54:09 PM
...... done\\n[17\\/166] Upgrading sqlite3 from 3.45.0_1,1 to
1:54:09 PM
3.46.0,1...\\n[17\\/166] Extracting sqlite3-3.46.0,1: ..........
1:54:09 PM
done\\n[18\\/166] Upgrading openldap26-client from 2.6.7 to
1:54:09 PM
2.6.8...\\n[18\\/166] Extracting openldap26-client-2.6.8: ..........
1:54:09 PM
done\\n[19\\/166] Upgrading libucl from 0.9.0 to 0.9.2...\\n[19\\/166]
1:54:09 PM
Extracting libucl-0.9.2: .......... done\\n[20\\/166] Deinstalling isc-
1:54:09 PM
dhcp44-relay-4.4.3P1...\\n[20\\/166] Deleting files for isc-
1:54:09 PM
dhcp44-relay-4.4.3P1: ....... done\\n[21\\/166] Upgrading php82-zlib from
1:54:09 PM
8.2.16 to 8.2.20...\\n[21\\/166] Extracting php82-zlib-8.2.20: ........
1:54:09 PM
done\\n[22\\/166] Upgrading php82-xml from 8.2.16 to 8.2.20...\\n[22\\/166]
1:54:09 PM
Extracting php82-xml-8.2.20: ......... done\\n[23\\/166] Upgrading lighttpd
1:54:09 PM
from 1.4.74_1 to 1.4.76...\\n===> Creating groups\\nUsing existing group
1:54:09 PM
\'www\'\\n===> Creating users\\nUsing existing user \'www\'\\n[23\\/166]
1:54:09 PM
Extracting lighttpd-1.4.76: .......... done\\n[24\\/166] Upgrading opnsense-
1:54:09 PM
update from 24.1.2 to 24.1.8...\\n[24\\/166] Extracting opnsense-update-24.1.8:
1:54:09 PM
.......... done\\n[25\\/166] Upgrading hostapd from 2.10_9 to
1:54:09 PM
2.10_10...\\n[25\\/166] Extracting hostapd-2.10_10: ....... done\\n[26\\/166]
1:54:09 PM
Upgrading php82-dom from 8.2.16 to 8.2.20...\\n[26\\/166] Extracting
1:54:09 PM
php82-dom-8.2.20: .......... done\\n[27\\/166] Upgrading php82-simplexml from
1:54:09 PM
8.2.16 to 8.2.20...\\n[27\\/166] Extracting php82-simplexml-8.2.20: .........
1:54:09 PM
done\\n[28\\/166] Upgrading openvpn from 2.6.9 to 2.6.10...\\n===> Creating
1:54:09 PM
groups\\nUsing existing group \'openvpn\'\\n===> Creating users\\nUsing
1:54:09 PM
existing user \'openvpn\'\\n[28\\/166] Extracting openvpn-2.6.10: ..........
1:54:09 PM
done\\n[29\\/166] Upgrading php82-curl from 8.2.16 to 8.2.20...\\n[29\\/166]
1:54:09 PM
Extracting php82-curl-8.2.20: .......... done\\n[30\\/166] Upgrading dnsmasq
1:54:09 PM
from 2.90,1 to 2.90_1,1...\\n[30\\/166] Extracting dnsmasq-2.90_1,1: ..........
1:54:09 PM
done\\n[31\\/166] Upgrading dhcp6c from 20230530 to 20240607...\\n[31\\/166]
1:54:09 PM
Extracting dhcp6c-20240607: ........ done\\n[32\\/166] Upgrading php82-phalcon
1:54:09 PM
from 5.6.1 to 5.7.0...\\n[32\\/166] Extracting php82-phalcon-5.7.0: ........
1:54:09 PM
done\\n[33\\/166] Upgrading isc-dhcp44-server from 4.4.3P1 to
1:54:09 PM
4.4.3P1_1...\\n===> Creating groups\\nUsing existing group \'dhcpd\'\\n===>
1:54:09 PM
Creating users\\nUsing existing user \'dhcpd\'\\n[33\\/166] Extracting isc-
1:54:09 PM
dhcp44-server-4.4.3P1_1: .......... done\\n[34\\/166] Upgrading ntp from
1:54:09 PM
4.2.8p17_2 to 4.2.8p18...\\n[34\\/166] Extracting ntp-4.2.8p18: ..........
1:54:09 PM
done\\n[35\\/166] Upgrading php82-ldap from 8.2.16 to 8.2.20...\\n[35\\/166]
1:54:09 PM
Extracting php82-ldap-8.2.20: ........ done\\n[36\\/166] Upgrading
1:54:09 PM
php82-sockets from 8.2.16 to 8.2.20...\\n[36\\/166] Extracting
1:54:09 PM
php82-sockets-8.2.20: .......... done\\n[37\\/166] Upgrading php82-sqlite3 from
1:54:09 PM
8.2.16 to 8.2.20...\\n[37\\/166] Extracting php82-sqlite3-8.2.20: .........
1:54:09 PM
done\\n[38\\/166] Upgrading php82-pcntl from 8.2.16 to 8.2.20...\\n[38\\/166]
1:54:09 PM
Extracting php82-pcntl-8.2.20: ......... done\\n[39\\/166] Upgrading openssh-
1:54:09 PM
portable from 9.6.p1_1,1 to 9.7.p1,1...\\n[39\\/166] Extracting openssh-
1:54:09 PM
portable-9.7.p1,1: .......... done\\n[40\\/166] Upgrading mpd5 from 5.9_17 to
1:54:09 PM
5.9_18...\\n[40\\/166] Extracting mpd5-5.9_18: .......... done\\n[41\\/166]
1:54:09 PM
Upgrading php82-gettext from 8.2.16 to 8.2.20...\\n[41\\/166] Extracting
1:54:09 PM
php82-gettext-8.2.20: ........ done\\n[42\\/166] Upgrading strongswan from
1:54:09 PM
5.9.13_1 to 5.9.14...\\n[42\\/166] Extracting strongswan-5.9.14: ..........
1:54:09 PM
done\\n[43\\/166] Upgrading php82-ctype from 8.2.16 to 8.2.20...\\n[43\\/166]
1:54:09 PM
Extracting php82-ctype-8.2.20: ........ done\\n[44\\/166] Upgrading pftop from
1:54:09 PM
0.10 to 0.10_1...\\n[44\\/166] Extracting pftop-0.10_1: ..... done\\n[45\\/166]
1:54:09 PM
Upgrading php82-filter from 8.2.16 to 8.2.20...\\n[45\\/166] Extracting
1:54:09 PM
php82-filter-8.2.20: ......... done\\n[46\\/166] Deinstalling
1:54:09 PM
py39-dnspython-2.6.1,1...\\n[46\\/166] Deleting files for
1:54:09 PM
py39-dnspython-2.6.1,1: .......... done\\n[47\\/166] Deinstalling
1:54:09 PM
py39-aioquic-0.9.25...\\n[47\\/166] Deleting files for py39-aioquic-0.9.25:
1:54:09 PM
.......... done\\n[48\\/166] Deinstalling py39-httpx-0.26.0...\\n[48\\/166]
1:54:09 PM
Deleting files for py39-httpx-0.26.0: .......... done\\n[49\\/166] Deinstalling
1:54:09 PM
py39-service-identity-23.1.0...\\n[49\\/166] Deleting files for py39-service-
1:54:09 PM
identity-23.1.0: .......... done\\n[50\\/166] Deinstalling
1:54:09 PM
py39-openssl-23.2.0,1...\\n[50\\/166] Deleting files for py39-openssl-23.2.0,1:
1:54:09 PM
.......... done\\n[51\\/166] Deinstalling py39-duckdb-0.9.2...\\n[51\\/166]
1:54:09 PM
Deleting files for py39-duckdb-0.9.2: .......... done\\n[52\\/166] Deinstalling
1:54:09 PM
py39-httpcore-1.0.3...\\n[52\\/166] Deleting files for py39-httpcore-1.0.3:
1:54:09 PM
.......... done\\n[53\\/166] Deinstalling py39-requests-2.31.0...\\n[53\\/166]
1:54:09 PM
Deleting files for py39-requests-2.31.0: .......... done\\n[54\\/166]
1:54:09 PM
Deinstalling py39-trio-0.24.0...\\n[54\\/166] Deleting files for
1:54:09 PM
py39-trio-0.24.0: .......... done\\n[55\\/166] Deinstalling
1:54:09 PM
py39-cryptography-41.0.7_3,1...\\n[55\\/166] Deleting files for
1:54:09 PM
py39-cryptography-41.0.7_3,1: .......... done\\n[56\\/166] Deinstalling
1:54:09 PM
py39-pandas-2.0.3_1,1...\\n[56\\/166] Deleting files for py39-pandas-2.0.3_1,1:
1:54:09 PM
.......... done\\n[57\\/166] Upgrading libffi from 3.4.4_1 to
1:54:09 PM
3.4.6...\\n[57\\/166] Extracting libffi-3.4.6: .......... done\\n[58\\/166]
1:54:09 PM
Upgrading nss from 3.97 to 3.100...\\n[58\\/166] Extracting nss-3.100:
1:54:09 PM
.......... done\\n[59\\/166] Upgrading hyperscan from 5.4.0 to
1:54:09 PM
5.4.2...\\n[59\\/166] Extracting hyperscan-5.4.2: .......... done\\n[60\\/166]
1:54:09 PM
Deinstalling py39-anyio-4.2.0...\\n[60\\/166] Deleting files for
1:54:09 PM
py39-anyio-4.2.0: .......... done\\n[61\\/166] Deinstalling
1:54:09 PM
py39-urllib3-1.26.18,1...\\n[61\\/166] Deleting files for
1:54:09 PM
py39-urllib3-1.26.18,1: .......... done\\n[62\\/166] Deinstalling
1:54:09 PM
py39-dateutil-2.8.2...\\n[62\\/166] Deleting files for py39-dateutil-2.8.2:
1:54:09 PM
.......... done\\n[63\\/166] Deinstalling py39-cffi-1.16.0...\\n[63\\/166]
1:54:09 PM
Deleting files for py39-cffi-1.16.0: .......... done\\n[64\\/166] Deinstalling
1:54:09 PM
py39-h2-4.1.0...\\n[64\\/166] Deleting files for py39-h2-4.1.0: ..........
1:54:09 PM
done\\n[65\\/166] Deinstalling py39-numexpr-2.9.0...\\n[65\\/166] Deleting
1:54:09 PM
files for py39-numexpr-2.9.0: .......... done\\n[66\\/166] Deinstalling
1:54:09 PM
py39-Jinja2-3.1.3...\\n[66\\/166] Deleting files for py39-Jinja2-3.1.3:
1:54:09 PM
.......... done\\n[67\\/166] Deinstalling
1:54:09 PM
py39-bottleneck-1.3.7_1...\\n[67\\/166] Deleting files for
1:54:09 PM
py39-bottleneck-1.3.7_1: .......... done\\n[68\\/166] Upgrading e2fsprogs-
1:54:09 PM
libuuid from 1.47.0 to 1.47.1...\\n[68\\/166] Extracting e2fsprogs-
1:54:09 PM
libuuid-1.47.1: .......... done\\n[69\\/166] Upgrading ivykis from 0.43 to
1:54:09 PM
0.43_1...\\n[69\\/166] Extracting ivykis-0.43_1: .......... done\\n[70\\/166]
1:54:09 PM
Deinstalling py39-sniffio-1.3.0...\\n[70\\/166] Deleting files for
1:54:10 PM
py39-sniffio-1.3.0: .......... done\\n[71\\/166] Deinstalling
1:54:10 PM
py39-sqlite3-3.9.18_7...\\n[71\\/166] Deleting files for py39-sqlite3-3.9.18_7:
1:54:10 PM
........ done\\n[72\\/166] Deinstalling
1:54:10 PM
py39-sortedcontainers-2.4.0...\\n[72\\/166] Deleting files for
1:54:10 PM
py39-sortedcontainers-2.4.0: .......... done\\n[73\\/166] Deinstalling
1:54:10 PM
py39-ujson-5.9.0...\\n[73\\/166] Deleting files for py39-ujson-5.9.0: .........
1:54:10 PM
done\\n[74\\/166] Deinstalling py39-vici-5.9.11...\\n[74\\/166] Deleting files
1:54:10 PM
for py39-vici-5.9.11: .......... done\\n[75\\/166] Deinstalling
1:54:10 PM
py39-hyperframe-6.0.0...\\n[75\\/166] Deleting files for py39-hyperframe-6.0.0:
1:54:10 PM
.......... done\\n[76\\/166] Deinstalling py39-h11-0.14.0...\\n[76\\/166]
1:54:10 PM
Deleting files for py39-h11-0.14.0: .......... done\\n[77\\/166] Deinstalling
1:54:10 PM
py39-pycparser-2.21...\\n[77\\/166] Deleting files for py39-pycparser-2.21:
1:54:10 PM
.......... done\\n[78\\/166] Deinstalling py39-six-1.16.0...\\n[78\\/166]
1:54:10 PM
Deleting files for py39-six-1.16.0: .......... done\\n[79\\/166] Deinstalling
1:54:10 PM
py39-pytz-2024.1,1...\\n[79\\/166] Deleting files for py39-pytz-2024.1,1:
1:54:10 PM
.......... done\\n[80\\/166] Deinstalling py39-certifi-2024.2.2...\\n[80\\/166]
1:54:10 PM
Deleting files for py39-certifi-2024.2.2: .......... done\\n[81\\/166]
1:54:10 PM
Deinstalling py39-pysocks-1.7.1...\\n[81\\/166] Deleting files for
1:54:10 PM
py39-pysocks-1.7.1: .......... done\\n[82\\/166] Deinstalling
1:54:10 PM
py39-netaddr-0.10.1...\\n[82\\/166] Deleting files for py39-netaddr-0.10.1:
1:54:10 PM
.......... done\\n[83\\/166] Deinstalling py39-charset-
1:54:10 PM
normalizer-3.3.2...\\n[83\\/166] Deleting files for py39-charset-
1:54:10 PM
normalizer-3.3.2: .......... done\\n[84\\/166] Deinstalling
1:54:10 PM
py39-hpack-4.0.0...\\n[84\\/166] Deleting files for py39-hpack-4.0.0:
1:54:10 PM
.......... done\\n[85\\/166] Deinstalling py39-yaml-6.0.1...\\n[85\\/166]
1:54:10 PM
Deleting files for py39-yaml-6.0.1: .......... done\\n[86\\/166] Deinstalling
1:54:10 PM
py39-pyasn1-modules-0.3.0...\\n[86\\/166] Deleting files for
1:54:10 PM
py39-pyasn1-modules-0.3.0: .......... done\\n[87\\/166] Deinstalling
1:54:10 PM
py39-Babel-2.14.0...\\n[87\\/166] Deleting files for py39-Babel-2.14.0:
1:54:10 PM
.......... done\\n[88\\/166] Deinstalling py39-markupsafe-2.1.5...\\n[88\\/166]
1:54:10 PM
Deleting files for py39-markupsafe-2.1.5: .......... done\\n[89\\/166]
1:54:10 PM
Deinstalling py39-async_generator-1.10...\\n[89\\/166] Deleting files for
1:54:10 PM
py39-async_generator-1.10: .......... done\\n[90\\/166] Deinstalling
1:54:10 PM
py39-numpy-1.25.0_6,1...\\n[90\\/166] Deleting files for py39-numpy-1.25.0_6,1:
1:54:10 PM
.......... done\\n[91\\/166] Deinstalling py39-outcome-1.3.0_1...\\n[91\\/166]
1:54:10 PM
Deleting files for py39-outcome-1.3.0_1: .......... done\\n[92\\/166] Upgrading
1:54:10 PM
libsodium from 1.0.18 to 1.0.19...\\n[92\\/166] Extracting libsodium-1.0.19:
1:54:10 PM
.......... done\\n[93\\/166] Upgrading expat from 2.6.0 to
1:54:10 PM
2.6.2...\\n[93\\/166] Extracting expat-2.6.2: .......... done\\n[94\\/166]
1:54:10 PM
Deinstalling py39-idna-3.6...\\n[94\\/166] Deleting files for py39-idna-3.6:
1:54:10 PM
.......... done\\n[95\\/166] Deinstalling py39-typing-
1:54:10 PM
extensions-4.9.0...\\n[95\\/166] Deleting files for py39-typing-
1:54:10 PM
extensions-4.9.0: .......... done\\n[96\\/166] Deinstalling
1:54:10 PM
py39-tzdata-2024.1...\\n[96\\/166] Deleting files for py39-tzdata-2024.1:
1:54:10 PM
.......... done\\n[97\\/166] Deinstalling py39-pylsqpack-0.3.18...\\n[97\\/166]
1:54:10 PM
Deleting files for py39-pylsqpack-0.3.18: .......... done\\n[98\\/166]
1:54:10 PM
Deinstalling py39-setuptools-63.1.0_1...\\n[98\\/166] Deleting files for
1:54:10 PM
py39-setuptools-63.1.0_1: .......... done\\n[99\\/166] Deinstalling
1:54:10 PM
py39-pyasn1-0.5.0...\\n[99\\/166] Deleting files for py39-pyasn1-0.5.0:
1:54:10 PM
.......... done\\n[100\\/166] Deinstalling py39-attrs-23.2.0...\\n[100\\/166]
1:54:10 PM
Deleting files for py39-attrs-23.2.0: .......... done\\n[101\\/166]
1:54:10 PM
Deinstalling py39-exceptiongroup-1.2.0...\\n[101\\/166] Deleting files for
1:54:10 PM
py39-exceptiongroup-1.2.0: .......... done\\n[102\\/166] Upgrading mpdecimal
1:54:10 PM
from 2.5.1 to 4.0.0...\\n[102\\/166] Extracting mpdecimal-4.0.0: ..........
1:54:10 PM
done\\n[103\\/166] Deinstalling python39-3.9.18_1...\\n[103\\/166] Deleting
1:54:10 PM
files for python39-3.9.18_1: .......... done\\n[104\\/166] Installing
1:54:10 PM
python311-3.11.9...\\n[104\\/166] Extracting python311-3.11.9: ..........
1:54:10 PM
done\\n[105\\/166] Installing py311-pycparser-2.22...\\n[105\\/166] Extracting
1:54:10 PM
py311-pycparser-2.22: .......... done\\n[106\\/166] Installing
1:54:10 PM
py311-setuptools-63.1.0_1...\\n[106\\/166] Extracting
1:54:10 PM
py311-setuptools-63.1.0_1: .......... done\\n[107\\/166] Installing
1:54:10 PM
py311-sniffio-1.3.1...\\n[107\\/166] Extracting py311-sniffio-1.3.1: ..........
1:54:10 PM
done\\n[108\\/166] Installing py311-hyperframe-6.0.0...\\n[108\\/166]
1:54:10 PM
Extracting py311-hyperframe-6.0.0: .......... done\\n[109\\/166] Installing
1:54:10 PM
py311-idna-3.7...\\n[109\\/166] Extracting py311-idna-3.7: ..........
1:54:10 PM
done\\n[110\\/166] Installing py311-cffi-1.16.0...\\n[110\\/166] Extracting
1:54:10 PM
py311-cffi-1.16.0: .......... done\\n[111\\/166] Installing
1:54:10 PM
py311-hpack-4.0.0...\\n[111\\/166] Extracting py311-hpack-4.0.0: ..........
1:54:10 PM
done\\n[112\\/166] Installing py311-pyasn1-0.6.0...\\n[112\\/166] Extracting
1:54:10 PM
py311-pyasn1-0.6.0: .......... done\\n[113\\/166] Installing
1:54:10 PM
py311-anyio-4.4.0...\\n[113\\/166] Extracting py311-anyio-4.4.0: ..........
1:54:10 PM
done\\n[114\\/166] Installing py311-cryptography-42.0.8,1...\\n[114\\/166]
1:54:10 PM
Extracting py311-cryptography-42.0.8,1: .......... done\\n[115\\/166]
1:54:10 PM
Installing py311-numpy-1.25.0_7,1...\\n[115\\/166] Extracting
1:54:10 PM
py311-numpy-1.25.0_7,1: .......... done\\n[116\\/166] Installing
1:54:10 PM
py311-six-1.16.0...\\n[116\\/166] Extracting py311-six-1.16.0: ..........
1:54:10 PM
done\\n[117\\/166] Installing py311-pyasn1-modules-0.4.0...\\n[117\\/166]
1:54:10 PM
Extracting py311-pyasn1-modules-0.4.0: .......... done\\n[118\\/166] Installing
1:54:10 PM
py311-attrs-23.2.0...\\n[118\\/166] Extracting py311-attrs-23.2.0: ..........
1:54:10 PM
done\\n[119\\/166] Installing py311-certifi-2024.6.2...\\n[119\\/166]
1:54:10 PM
Extracting py311-certifi-2024.6.2: .......... done\\n[120\\/166] Installing
1:54:10 PM
py311-h2-4.1.0...\\n[120\\/166] Extracting py311-h2-4.1.0: ..........
1:54:10 PM
done\\n[121\\/166] Installing py311-h11-0.14.0...\\n[121\\/166] Extracting
1:54:10 PM
py311-h11-0.14.0: .......... done\\n[122\\/166] Installing
1:54:10 PM
py311-packaging-24.0...\\n[122\\/166] Extracting py311-packaging-24.0:
1:54:10 PM
.......... done\\n[123\\/166] Installing
1:54:10 PM
py311-sqlite3-3.11.9_7...\\n[123\\/166] Extracting py311-sqlite3-3.11.9_7:
1:54:10 PM
........ done\\n[124\\/166] Installing py311-service-
1:54:10 PM
identity-24.1.0...\\n[124\\/166] Extracting py311-service-identity-24.1.0:
1:54:10 PM
.......... done\\n[125\\/166] Installing
1:54:10 PM
py311-bottleneck-1.3.8_1...\\n[125\\/166] Extracting py311-bottleneck-1.3.8_1:
1:54:10 PM
.......... done\\n[126\\/166] Installing py311-httpcore-1.0.5...\\n[126\\/166]
1:54:10 PM
Extracting py311-httpcore-1.0.5: .......... done\\n[127\\/166] Installing
1:54:10 PM
py311-python-dateutil-2.9.0...\\n[127\\/166] Extracting py311-python-
1:54:10 PM
dateutil-2.9.0: .......... done\\n[128\\/166] Installing
1:54:10 PM
py311-pytz-2024.1,1...\\n[128\\/166] Extracting py311-pytz-2024.1,1: ..........
1:54:10 PM
done\\n[129\\/166] Installing py311-pysocks-1.7.1_1...\\n[129\\/166] Extracting
1:54:10 PM
py311-pysocks-1.7.1_1: .......... done\\n[130\\/166] Installing
1:54:10 PM
py311-sortedcontainers-2.4.0...\\n[130\\/166] Extracting
1:54:10 PM
py311-sortedcontainers-2.4.0: .......... done\\n[131\\/166] Installing
1:54:10 PM
py311-async_generator-1.10...\\n[131\\/166] Extracting
1:54:10 PM
py311-async_generator-1.10: .......... done\\n[132\\/166] Installing
1:54:10 PM
py311-tzdata-2024.1...\\n[132\\/166] Extracting py311-tzdata-2024.1: ..........
1:54:10 PM
done\\n[133\\/166] Installing py311-outcome-1.3.0_1...\\n[133\\/166] Extracting
1:54:10 PM
py311-outcome-1.3.0_1: .......... done\\n[134\\/166] Installing
1:54:10 PM
py311-numexpr-2.9.0_1...\\n[134\\/166] Extracting py311-numexpr-2.9.0_1:
1:54:10 PM
.......... done\\n[135\\/166] Installing py311-socksio-1.0.0_1...\\n[135\\/166]
1:54:10 PM
Extracting py311-socksio-1.0.0_1: .......... done\\n[136\\/166] Installing
1:54:10 PM
py311-pylsqpack-0.3.18...\\n[136\\/166] Extracting py311-pylsqpack-0.3.18:
1:54:10 PM
.......... done\\n[137\\/166] Installing
1:54:10 PM
py311-openssl-23.2.0,1...\\n[137\\/166] Extracting py311-openssl-23.2.0,1:
1:54:10 PM
.......... done\\n[138\\/166] Upgrading glib from 2.78.4,2 to
1:54:10 PM
2.80.2,2...\\n[138\\/166] Extracting glib-2.80.2,2: ..........
1:54:10 PM
done\\n[139\\/166] Installing py311-pandas-2.0.3_2,1...\\n[139\\/166]
1:54:10 PM
Extracting py311-pandas-2.0.3_2,1: ...."}'}'
1:54:10 PM
[WARNING]: 2024-07-08 13:53:41 | Got response: running
1:54:10 PM
[WARNING]: RESPONSE: '{'status_code': 200, '_request': 
1:54:10 PM
'https://172.31.1.2:27443/api/core/firmware/upgradestatus')>,
1:54:10 PM
'_num_bytes_downloaded': 34232, '_elapsed':
1:54:10 PM
datetime.timedelta(microseconds=52518), '_content':
1:54:10 PM
b'{"status":"running","log":"***GOT REQUEST TO UPDATE***\\nCurrently running
1:54:10 PM
OPNsense 24.1.3_1 at Mon Jul  8 13:49:39 CEST 2024\\nUpdating OPNsense
1:54:10 PM
repository catalogue...\\nFetching meta.conf: . done\\nFetching
1:54:10 PM
packagesite.pkg: .......... done\\nProcessing entries: ..........
1:54:10 PM
done\\nOPNsense repository update completed. 845 packages processed.\\nAll
1:54:10 PM
repositories are up to date.\\nUpdating OPNsense repository
1:54:10 PM
catalogue...\\nOPNsense repository is up to date.\\nAll repositories are up to
1:54:10 PM
date.\\nChecking for upgrades (64 candidates): .......... done\\nProcessing
1:54:10 PM
candidates (64 candidates): .......... done\\nThe following 165 package(s) will
1:54:10 PM
be affected (of 0 checked):\\n\\nInstalled packages to be
1:54:10 PM
REMOVED:\\n\\tpy39-Babel: 2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic:
1:54:10 PM
0.9.25\\n\\tpy39-anyio: 4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:54:10 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:54:10 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:54:10 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:54:10 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:54:10 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:54:10 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:54:10 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:54:10 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:54:10 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:
1:54:10 PM
1.3.0_1\\n\\tpy39-pandas: 2.0.3_1,1\\n\\tpy39-pyasn1:
1:54:10 PM
0.5.0\\n\\tpy39-pyasn1-modules: 0.3.0\\n\\tpy39-pycparser:
1:54:10 PM
2.21\\n\\tpy39-pylsqpack: 0.3.18\\n\\tpy39-pysocks: 1.7.1\\n\\tpy39-pytz:
1:54:10 PM
2024.1,1\\n\\tpy39-requests: 2.31.0\\n\\tpy39-service-identity:
1:54:10 PM
23.1.0\\n\\tpy39-setuptools: 63.1.0_1\\n\\tpy39-six: 1.16.0\\n\\tpy39-sniffio:
1:54:10 PM
1.3.0\\n\\tpy39-sortedcontainers: 2.4.0\\n\\tpy39-sqlite3:
1:54:10 PM
3.9.18_7\\n\\tpy39-trio: 0.24.0\\n\\tpy39-typing-extensions:
1:54:10 PM
4.9.0\\n\\tpy39-tzdata: 2024.1\\n\\tpy39-ujson: 5.9.0\\n\\tpy39-urllib3:
1:54:10 PM
1.26.18,1\\n\\tpy39-vici: 5.9.11\\n\\tpy39-yaml: 6.0.1\\n\\tpython39:
1:54:10 PM
3.9.18_1\\n\\nNew packages to be INSTALLED:\\n\\tdhcrelay:
1:54:10 PM
0.5\\n\\tpy311-Babel: 2.14.0\\n\\tpy311-Jinja2: 3.1.3\\n\\tpy311-aioquic:
1:54:10 PM
0.9.25\\n\\tpy311-anyio: 4.4.0\\n\\tpy311-async_generator:
1:54:10 PM
1.10\\n\\tpy311-attrs: 23.2.0\\n\\tpy311-bottleneck:
1:54:10 PM
1.3.8_1\\n\\tpy311-certifi: 2024.6.2\\n\\tpy311-cffi:
1:54:10 PM
1.16.0\\n\\tpy311-charset-normalizer: 3.3.2_1\\n\\tpy311-cryptography:
1:54:10 PM
42.0.8,1\\n\\tpy311-dnspython: 2.6.1,1\\n\\tpy311-duckdb: 1.0.0\\n\\tpy311-h11:
1:54:10 PM
0.14.0\\n\\tpy311-h2: 4.1.0\\n\\tpy311-hpack: 4.0.0\\n\\tpy311-httpcore:
1:54:10 PM
1.0.5\\n\\tpy311-httpx: 0.27.0_1\\n\\tpy311-hyperframe: 6.0.0\\n\\tpy311-idna:
1:54:10 PM
3.7\\n\\tpy311-markupsafe: 2.1.5_1\\n\\tpy311-netaddr:
1:54:10 PM
1.3.0\\n\\tpy311-numexpr: 2.9.0_1\\n\\tpy311-numpy:
1:54:10 PM
1.25.0_7,1\\n\\tpy311-openssl: 23.2.0,1\\n\\tpy311-outcome:
1:54:10 PM
1.3.0_1\\n\\tpy311-packaging: 24.0\\n\\tpy311-pandas:
1:54:10 PM
2.0.3_2,1\\n\\tpy311-pyasn1: 0.6.0\\n\\tpy311-pyasn1-modules:
1:54:10 PM
0.4.0\\n\\tpy311-pycparser: 2.22\\n\\tpy311-pylsqpack:
1:54:10 PM
0.3.18\\n\\tpy311-pysocks: 1.7.1_1\\n\\tpy311-python-dateutil:
1:54:10 PM
2.9.0\\n\\tpy311-pytz: 2024.1,1\\n\\tpy311-requests: 2.32.3\\n\\tpy311-service-
1:54:10 PM
identity: 24.1.0\\n\\tpy311-setuptools: 63.1.0_1\\n\\tpy311-six:
1:54:10 PM
1.16.0\\n\\tpy311-sniffio: 1.3.1\\n\\tpy311-socksio:
1:54:10 PM
1.0.0_1\\n\\tpy311-sortedcontainers: 2.4.0\\n\\tpy311-sqlite3:
1:54:10 PM
3.11.9_7\\n\\tpy311-trio: 0.25.1\\n\\tpy311-tzdata: 2024.1\\n\\tpy311-ujson:
1:54:10 PM
5.10.0\\n\\tpy311-urllib3: 1.26.18_1,1\\n\\tpy311-vici: 5.9.11\\n\\tpy311-yaml:
1:54:10 PM
6.0.1\\n\\tpython311: 3.11.9\\n\\nInstalled packages to be UPGRADED:\\n\\tcurl:
1:54:10 PM
8.6.0 -> 8.8.0\\n\\tdhcp6c: 20230530 -> 20240607\\n\\tdnsmasq: 2.90,1 ->
1:54:10 PM
2.90_1,1\\n\\te2fsprogs-libuuid: 1.47.0 -> 1.47.1\\n\\teasy-rsa: 3.1.7 ->
1:54:10 PM
3.2.0\\n\\texpat: 2.6.0 -> 2.6.2\\n\\tgettext-runtime: 0.22.3_1 ->
1:54:10 PM
0.22.5\\n\\tglib: 2.78.4,2 -> 2.80.2,2\\n\\thostapd: 2.10_9 ->
1:54:10 PM
2.10_10\\n\\thyperscan: 5.4.0 -> 5.4.2\\n\\ticu: 74.2,1 -> 74.2_1,1\\n\\tisc-
1:54:10 PM
dhcp44-server: 4.4.3P1 -> 4.4.3P1_1\\n\\tivykis: 0.43 -> 0.43_1\\n\\tlibcjson:
1:54:10 PM
1.7.17 -> 1.7.18_2\\n\\tlibedit: 3.1.20230828_1,1 ->
1:54:10 PM
3.1.20240517,1\\n\\tlibffi: 3.4.4_1 -> 3.4.6\\n\\tlibnghttp2: 1.59.0 ->
1:54:10 PM
1.62.1\\n\\tlibpfctl: 0.9 -> 0.11\\n\\tlibpsl: 0.21.5 ->
1:54:10 PM
0.21.5_1\\n\\tlibsodium: 1.0.18 -> 1.0.19\\n\\tlibucl: 0.9.0 ->
1:54:10 PM
0.9.2\\n\\tlibunistring: 1.1 -> 1.2\\n\\tlibxml2: 2.11.7 ->
1:54:10 PM
2.11.8\\n\\tlighttpd: 1.4.74_1 -> 1.4.76\\n\\tmpd5: 5.9_17 ->
1:54:10 PM
5.9_18\\n\\tmpdecimal: 2.5.1 -> 4.0.0\\n\\tnano: 7.2_1 -> 8.0\\n\\tnss: 3.97 ->
1:54:10 PM
3.100\\n\\tntp: 4.2.8p17_2 -> 4.2.8p18\\n\\topenldap26-client: 2.6.7 ->
1:54:10 PM
2.6.8\\n\\topenssh-portable: 9.6.p1_1,1 -> 9.7.p1,1\\n\\topenssl: 3.0.13,1 ->
1:54:10 PM
3.0.14,1\\n\\topenvpn: 2.6.9 -> 2.6.10\\n\\topnsense: 24.1.3_1 ->
1:54:10 PM
24.1.9_4\\n\\topnsense-update: 24.1.2 -> 24.1.8\\n\\tos-wazuh-agent: 1.0 ->
1:54:10 PM
1.0_2\\n\\tpftop: 0.10 -> 0.10_1\\n\\tphp82: 8.2.16 -> 8.2.20\\n\\tphp82-ctype:
1:54:10 PM
8.2.16 -> 8.2.20\\n\\tphp82-curl: 8.2.16 -> 8.2.20\\n\\tphp82-dom: 8.2.16 ->
1:54:10 PM
8.2.20\\n\\tphp82-filter: 8.2.16 -> 8.2.20\\n\\tphp82-gettext: 8.2.16 ->
1:54:10 PM
8.2.20\\n\\tphp82-ldap: 8.2.16 -> 8.2.20\\n\\tphp82-mbstring: 8.2.16 ->
1:54:10 PM
8.2.20\\n\\tphp82-pcntl: 8.2.16 -> 8.2.20\\n\\tphp82-pdo: 8.2.16 ->
1:54:10 PM
8.2.20\\n\\tphp82-pecl-mcrypt: 1.0.6 -> 1.0.7\\n\\tphp82-phalcon: 5.6.1 ->
1:54:10 PM
5.7.0\\n\\tphp82-session: 8.2.16 -> 8.2.20\\n\\tphp82-simplexml: 8.2.16 ->
1:54:10 PM
8.2.20\\n\\tphp82-sockets: 8.2.16 -> 8.2.20\\n\\tphp82-sqlite3: 8.2.16 ->
1:54:10 PM
8.2.20\\n\\tphp82-xml: 8.2.16 -> 8.2.20\\n\\tphp82-zlib: 8.2.16 ->
1:54:10 PM
8.2.20\\n\\treadline: 8.2.7_1 -> 8.2.10\\n\\tsqlite3: 3.45.0_1,1 ->
1:54:10 PM
changed: [C1002FW01]
1:54:10 PM
3.46.0,1\\n\\tstrongswan: 5.9.13_1 -> 5.9.14\\n\\tsuricata: 7.0.3 ->
1:54:10 PM
7.0.5_1\\n\\tsyslog-ng: 4.6.0 -> 4.7.1\\n\\tunbound: 1.19.1 ->
1:54:10 PM
1.20.0_1\\n\\twazuh-agent: 4.7.2 -> 4.7.4\\n\\tzabbix64-agent: 6.4.12 ->
1:54:10 PM
6.4.15\\n\\nInstalled packages to be REINSTALLED:\\n\\tboost-libs-1.84.0
1:54:10 PM
(options changed)\\n\\nNumber of packages to be removed: 50\\nNumber of
1:54:10 PM
packages to be installed: 51\\nNumber of packages to be upgraded: 63\\nNumber
1:54:10 PM
of packages to be reinstalled: 1\\n\\nThe process will require 159 MiB more
1:54:10 PM
space.\\n148 MiB to be downloaded.\\n[1\\/115] Fetching
1:54:10 PM
zabbix64-agent-6.4.15.pkg: .......... done\\n[2\\/115] Fetching
1:54:10 PM
py311-sqlite3-3.11.9_7.pkg: ..... done\\n[3\\/115] Fetching
1:54:10 PM
py311-anyio-4.4.0.pkg: .......... done\\n[4\\/115] Fetching
1:54:10 PM
unbound-1.20.0_1.pkg: .......... done\\n[5\\/115] Fetching
1:54:10 PM
php82-session-8.2.20.pkg: ..... done\\n[6\\/115] Fetching mpdecimal-4.0.0.pkg:
1:54:10 PM
.......... done\\n[7\\/115] Fetching py311-cryptography-42.0.8,1.pkg:
1:54:10 PM
.......... done\\n[8\\/115] Fetching lighttpd-1.4.76.pkg: ..........
1:54:10 PM
done\\n[9\\/115] Fetching py311-service-identity-24.1.0.pkg: ...
1:54:10 PM
done\\n[10\\/115] Fetching opnsense-update-24.1.8.pkg: ..... done\\n[11\\/115]
1:54:10 PM
Fetching hostapd-2.10_10.pkg: .......... done\\n[12\\/115] Fetching
1:54:10 PM
py311-pandas-2.0.3_2,1.pkg: .......... done\\n[13\\/115] Fetching
1:54:10 PM
py311-sniffio-1.3.1.pkg: .. done\\n[14\\/115] Fetching
1:54:10 PM
1:54:10 PM
py311-bottleneck-1.3.8_1.pkg: .......... done\\n[15\\/115] Fetching
1:54:10 PM
PLAY RECAP *********************************************************************
1:54:10 PM
py311-httpcore-1.0.5.pkg: .......... done\\n[16\\/115] Fetching
1:54:10 PM
C1002FW01                  : ok=4    changed=3    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0   
1:54:10 PM
py311-hyperframe-6.0.0.pkg: ... done\\n[17\\/115] Fetching
1:54:10 PM
1:54:10 PM
openssl-3.0.14,1.pkg: .......... done\\n[18\\/115] Fetching
1:54:10 PM
py311-pycparser-2.22.pkg: .......... done\\n[19\\/115] Fetching boost-
1:54:10 PM
libs-1.84.0.pkg: .......... done\\n[20\\/115] Fetching
1:54:10 PM
py311-numpy-1.25.0_7,1.pkg: .......... done\\n[21\\/115] Fetching py311-python-
1:54:10 PM
dateutil-2.9.0.pkg: .......... done\\n[22\\/115] Fetching py311-six-1.16.0.pkg:
1:54:10 PM
.... done\\n[23\\/115] Fetching nss-3.100.pkg: .......... done\\n[24\\/115]
1:54:10 PM
Fetching dhcrelay-0.5.pkg: .... done\\n[25\\/115] Fetching
1:54:10 PM
libunistring-1.2.pkg: .......... done\\n[26\\/115] Fetching
1:54:10 PM
php82-zlib-8.2.20.pkg: ... done\\n[27\\/115] Fetching php82-dom-8.2.20.pkg:
1:54:10 PM
......... done\\n[28\\/115] Fetching php82-simplexml-8.2.20.pkg: ...
1:54:10 PM
done\\n[29\\/115] Fetching py311-charset-normalizer-3.3.2_1.pkg: ..........
1:54:10 PM
done\\n[30\\/115] Fetching py311-pyasn1-modules-0.4.0.pkg: ..........
1:54:10 PM
done\\n[31\\/115] Fetching easy-rsa-3.2.0.pkg: ...... done\\n[32\\/115]
1:54:10 PM
Fetching os-wazuh-agent-1.0_2.pkg: .. done\\n[33\\/115] Fetching
1:54:10 PM
py311-aioquic-0.9.25.pkg: .......... done\\n[34\\/115] Fetching e2fsprogs-
1:54:10 PM
libuuid-1.47.1.pkg: ..... done\\n[35\\/115] Fetching
1:54:10 PM
py311-setuptools-63.1.0_1.pkg: .......... done\\n[36\\/115] Fetching
1:54:10 PM
py311-idna-3.7.pkg: .......... done\\n[37\\/115] Fetching openvpn-2.6.10.pkg:
1:54:10 PM
.......... done\\n[38\\/115] Fetching php82-pdo-8.2.20.pkg: .......
1:54:10 PM
done\\n[39\\/115] Fetching libnghttp2-1.62.1.pkg: .......... done\\n[40\\/115]
1:54:10 PM
Fetching libxml2-2.11.8.pkg: .......... done\\n[41\\/115] Fetching
1:54:10 PM
php82-curl-8.2.20.pkg: ...... done\\n[42\\/115] Fetching py311-cffi-1.16.0.pkg:
1:54:10 PM
.......... done\\n[43\\/115] Fetching icu-74.2_1,1.pkg: ..........
1:54:10 PM
done\\n[44\\/115] Fetching dnsmasq-2.90_1,1.pkg: .......... done\\n[45\\/115]
1:54:10 PM
Fetching py311-httpx-0.27.0_1.pkg: .......... done\\n[46\\/115] Fetching
1:54:10 PM
py311-packaging-24.0.pkg: .......... done\\n[47\\/115] Fetching
1:54:10 PM
py311-netaddr-1.3.0.pkg: .......... done\\n[48\\/115] Fetching
1:54:10 PM
dhcp6c-20240607.pkg: ......... done\\n[49\\/115] Fetching
1:54:10 PM
php82-phalcon-5.7.0.pkg: .......... done\\n[50\\/115] Fetching
1:54:10 PM
php82-mbstring-8.2.20.pkg: .......... done\\n[51\\/115] Fetching isc-
1:54:10 PM
dhcp44-server-4.4.3P1_1.pkg: .......... done\\n[52\\/115] Fetching
1:54:10 PM
py311-pytz-2024.1,1.pkg: .......... done\\n[53\\/115] Fetching
1:54:10 PM
py311-pysocks-1.7.1_1.pkg: .... done\\n[54\\/115] Fetching ntp-4.2.8p18.pkg:
1:54:10 PM
.......... done\\n[55\\/115] Fetching syslog-ng-4.7.1.pkg: ..........
1:54:10 PM
done\\n[56\\/115] Fetching py311-markupsafe-2.1.5_1.pkg: ... done\\n[57\\/115]
1:54:10 PM
Fetching wazuh-agent-4.7.4.pkg: .......... done\\n[58\\/115] Fetching
1:54:10 PM
libpsl-0.21.5_1.pkg: ........ done\\n[59\\/115] Fetching
1:54:10 PM
py311-requests-2.32.3.pkg: .......... done\\n[60\\/115] Fetching
1:54:10 PM
py311-attrs-23.2.0.pkg: .......... done\\n[61\\/115] Fetching
1:54:10 PM
php82-ldap-8.2.20.pkg: ..... done\\n[62\\/115] Fetching
1:54:10 PM
py311-sortedcontainers-2.4.0.pkg: ...... done\\n[63\\/115] Fetching
1:54:10 PM
python311-3.11.9.pkg: .......... done\\n[64\\/115] Fetching
1:54:10 PM
py311-vici-5.9.11.pkg: ... done\\n[65\\/115] Fetching py311-trio-0.25.1.pkg:
1:54:10 PM
.......... done\\n[66\\/115] Fetching py311-async_generator-1.10.pkg: ......
1:54:10 PM
done\\n[67\\/115] Fetching libcjson-1.7.18_2.pkg: ..... done\\n[68\\/115]
1:54:10 PM
Fetching py311-dnspython-2.6.1,1.pkg: .......... done\\n[69\\/115] Fetching
1:54:10 PM
ivykis-0.43_1.pkg: ......... done\\n[70\\/115] Fetching
1:54:10 PM
py311-certifi-2024.6.2.pkg: .......... done\\n[71\\/115] Fetching
1:54:10 PM
libedit-3.1.20240517,1.pkg: .......... done\\n[72\\/115] Fetching
1:54:10 PM
py311-hpack-4.0.0.pkg: ....... done\\n[73\\/115] Fetching py311-h2-4.1.0.pkg:
1:54:10 PM
.......... done\\n[74\\/115] Fetching py311-tzdata-2024.1.pkg: ..........
1:54:10 PM
done\\n[75\\/115] Fetching php82-sockets-8.2.20.pkg: ...... done\\n[76\\/115]
1:54:10 PM
Fetching php82-8.2.20.pkg: .......... done\\n[77\\/115] Fetching
1:54:10 PM
php82-sqlite3-8.2.20.pkg: .... done\\n[78\\/115] Fetching
1:54:10 PM
py311-Babel-2.14.0.pkg: .......... done\\n[79\\/115] Fetching
1:54:10 PM
py311-outcome-1.3.0_1.pkg: .. done\\n[80\\/115] Fetching
1:54:10 PM
php82-pcntl-8.2.20.pkg: ... done\\n[81\\/115] Fetching php82-xml-8.2.20.pkg:
1:54:10 PM
... done\\n[82\\/115] Fetching curl-8.8.0.pkg: .......... done\\n[83\\/115]
1:54:10 PM
Fetching gettext-runtime-0.22.5.pkg: .......... done\\n[84\\/115] Fetching
1:54:10 PM
py311-yaml-6.0.1.pkg: .......... done\\n[85\\/115] Fetching
1:54:10 PM
py311-numexpr-2.9.0_1.pkg: .......... done\\n[86\\/115] Fetching
1:54:10 PM
py311-socksio-1.0.0_1.pkg: ... done\\n[87\\/115] Fetching hyperscan-5.4.2.pkg:
1:54:10 PM
.......... done\\n[88\\/115] Fetching libpfctl-0.11.pkg: .. done\\n[89\\/115]
1:54:10 PM
Fetching py311-urllib3-1.26.18_1,1.pkg: .......... done\\n[90\\/115] Fetching
1:54:10 PM
openssh-portable-9.7.p1,1.pkg: .......... done\\n[91\\/115] Fetching
1:54:10 PM
nano-8.0.pkg: .......... done\\n[92\\/115] Fetching suricata-7.0.5_1.pkg:
1:54:10 PM
.......... done\\n[93\\/115] Fetching mpd5-5.9_18.pkg: ..........
1:54:10 PM
done\\n[94\\/115] Fetching sqlite3-3.46.0,1.pkg: .......... done\\n[95\\/115]
1:54:10 PM
Fetching php82-gettext-8.2.20.pkg: . done\\n[96\\/115] Fetching
1:54:10 PM
py311-pylsqpack-0.3.18.pkg: ........ done\\n[97\\/115] Fetching
1:54:10 PM
openldap26-client-2.6.8.pkg: .......... done\\n[98\\/115] Fetching
1:54:10 PM
glib-2.80.2,2.pkg: .......... done\\n[99\\/115] Fetching php82-pecl-
1:54:10 PM
mcrypt-1.0.7.pkg: .. done\\n[100\\/115] Fetching py311-pyasn1-0.6.0.pkg:
1:54:10 PM
.......... done\\n[101\\/115] Fetching libucl-0.9.2.pkg: ..........
1:54:10 PM
done\\n[102\\/115] Fetching libsodium-1.0.19.pkg: .......... done\\n[103\\/115]
1:54:10 PM
Fetching py311-ujson-5.10.0.pkg: ...... done\\n[104\\/115] Fetching
1:54:10 PM
opnsense-24.1.9_4.pkg: .......... done\\n[105\\/115] Fetching
1:54:10 PM
py311-duckdb-1.0.0.pkg: .......... done\\n[106\\/115] Fetching
1:54:10 PM
strongswan-5.9.14.pkg: .......... done\\n[107\\/115] Fetching
1:54:10 PM
readline-8.2.10.pkg: .......... done\\n[108\\/115] Fetching libffi-3.4.6.pkg:
1:54:10 PM
...... done\\n[109\\/115] Fetching php82-ctype-8.2.20.pkg: . done\\n[110\\/115]
1:54:10 PM
Fetching pftop-0.10_1.pkg: ........ done\\n[111\\/115] Fetching
1:54:10 PM
expat-2.6.2.pkg: .......... done\\n[112\\/115] Fetching
1:54:10 PM
py311-openssl-23.2.0,1.pkg: .......... done\\n[113\\/115] Fetching
1:54:10 PM
php82-filter-8.2.20.pkg: ... done\\n[114\\/115] Fetching
1:54:10 PM
py311-Jinja2-3.1.3.pkg: .......... done\\n[115\\/115] Fetching
1:54:10 PM
py311-h11-0.14.0.pkg: .......... done\\nChecking integrity... done (7
1:54:10 PM
conflicting)\\n  - py311-numpy-1.25.0_7,1 conflicts with py39-numpy-1.25.0_6,1
1:54:10 PM
on \\/usr\\/local\\/bin\\/f2py\\n  - dhcrelay-0.5 conflicts with isc-
1:54:10 PM
dhcp44-relay-4.4.3P1 on \\/usr\\/local\\/sbin\\/dhcrelay\\n  - py311-charset-
1:54:10 PM
normalizer-3.3.2_1 conflicts with py39-charset-normalizer-3.3.2 on
1:54:10 PM
\\/usr\\/local\\/bin\\/normalizer\\n  - py311-pyasn1-modules-0.4.0 conflicts
1:54:10 PM
with py39-pyasn1-modules-0.3.0 on \\/usr\\/local\\/bin\\/cmcdump.py\\n  -
1:54:10 PM
py311-httpx-0.27.0_1 conflicts with py39-httpx-0.26.0 on
1:54:10 PM
\\/usr\\/local\\/bin\\/httpx\\n  - py311-netaddr-1.3.0 conflicts with
1:54:10 PM
py39-netaddr-0.10.1 on \\/usr\\/local\\/bin\\/netaddr\\n  - py311-Babel-2.14.0
1:54:10 PM
conflicts with py39-Babel-2.14.0 on \\/usr\\/local\\/bin\\/pybabel\\nChecking
1:54:10 PM
integrity... done (0 conflicting)\\nConflicts with the existing packages have
1:54:10 PM
been found.\\nOne more solver iteration is needed to resolve them.\\nThe
1:54:10 PM
following 166 package(s) will be affected (of 0 checked):\\n\\nInstalled
1:54:10 PM
packages to be REMOVED:\\n\\tisc-dhcp44-relay: 4.4.3P1\\n\\tpy39-Babel:
1:54:10 PM
2.14.0\\n\\tpy39-Jinja2: 3.1.3\\n\\tpy39-aioquic: 0.9.25\\n\\tpy39-anyio:
1:54:10 PM
4.2.0\\n\\tpy39-async_generator: 1.10\\n\\tpy39-attrs:
1:54:10 PM
23.2.0\\n\\tpy39-bottleneck: 1.3.7_1\\n\\tpy39-certifi:
1:54:10 PM
2024.2.2\\n\\tpy39-cffi: 1.16.0\\n\\tpy39-charset-normalizer:
1:54:10 PM
3.3.2\\n\\tpy39-cryptography: 41.0.7_3,1\\n\\tpy39-dateutil:
1:54:10 PM
2.8.2\\n\\tpy39-dnspython: 2.6.1,1\\n\\tpy39-duckdb:
1:54:10 PM
0.9.2\\n\\tpy39-exceptiongroup: 1.2.0\\n\\tpy39-h11: 0.14.0\\n\\tpy39-h2:
1:54:10 PM
4.1.0\\n\\tpy39-hpack: 4.0.0\\n\\tpy39-httpcore: 1.0.3\\n\\tpy39-httpx:
1:54:10 PM
0.26.0\\n\\tpy39-hyperframe: 6.0.0\\n\\tpy39-idna: 3.6\\n\\tpy39-markupsafe:
1:54:10 PM
2.1.5\\n\\tpy39-netaddr: 0.10.1\\n\\tpy39-numexpr: 2.9.0\\n\\tpy39-numpy:
1:54:10 PM
1.25.0_6,1\\n\\tpy39-openssl: 23.2.0,1\\n\\tpy39-outcome:

Opnsense stuck: image

So opnsense instance gets still rebooted during upgrade process but too early, so when upgrade is still taking place and therefore breaks the opnsense instance.

superstes commented 3 months ago

Wow 😲 That did never happen on my tests.. :/

Will check it as soon as possible

ansibleguy commented 3 months ago

I've not yet been able to reproduce your issue, but It seems logical that the box could be dead if it is rebootet while the upgrade is still running. But I'm a little out of ideas on what to do. The module currently checks the upgradestatus for the wait time: (that's pretty much what the UI also does) https://github.com/ansibleguy/collection_opnsense/blob/latest/plugins/module_utils/helper/system.py#L53

However - I've (at least) added a warning to the module's documentation that recommends using the WebUI for upgrades.

livdebus commented 3 months ago

Thanks for looking into it. My only workaround for now is to have a hard pause of 10 minutes before the restart. So far a major update never took longer than 10 minutes...

    - name: Pull updates
      ansibleguy.opnsense.system:
        action: 'update'
        debug: true
    - name: Wait 60s
      ansible.builtin.pause:
        seconds: 60
      delegate_to: localhost
    - name: Start upgrade - will wait until finished
      ansibleguy.opnsense.system:
        action: 'upgrade'
        wait: true
        timeout: 600
        poll_interval: 2
        debug: true
    - name: Wait 600s
      ansible.builtin.pause:
        seconds: 600
      delegate_to: localhost
    - name: Reboot without wait
      ansibleguy.opnsense.system:
        action: 'reboot'
        wait: false

So like this the upgrade always works but the playbook has a long run time in case of no or only minor updates.

ansibleguy commented 1 week ago

We now also perform a sanity check before performing any system-action - checking if the system is currently being upgraded (#97)