diff --git a/CHANGELOG.md b/CHANGELOG.md index 44a5fc1..e934032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.5.0] - 2025-05-19 + +### Changed + +- Configure dbus + ## [3.4.0] - 2025-05-18 ### Changed diff --git a/chroot-tasks.py b/chroot-tasks.py index 9546ea6..faf7fdc 100755 --- a/chroot-tasks.py +++ b/chroot-tasks.py @@ -127,6 +127,18 @@ def configure_stunnel(): fd.write ('requireCert = yes\n') fd.write ('verifyChain = yes\n') +def configure_dbus(): + print ('configure_dbus', file=sys.stderr) + with open ('/etc/dbus-1/system.d/ogbrowser.conf', 'w') as fd: + fd.write ('\n') + fd.write (' \n') + fd.write (' \n') + fd.write (' \n') + fd.write (' \n') + fd.write (' \n') + fd.write (' \n') + fd.write ('\n') + def boottoolsPythonModules(): utils.run (['pip3', 'install', 'pyblkid', '--break-system-packages']) @@ -184,5 +196,6 @@ if __name__ == '__main__': boottoolsPythonModules() boottoolsRemovePackages() configure_stunnel() + configure_dbus() setup_resolvconf() ## do this again, since someone seems to be overwriting the file boottoolsInitrdGenerate (args.osrelease) diff --git a/includes/etc/initramfs-tools/scripts/VERSION.txt b/includes/etc/initramfs-tools/scripts/VERSION.txt index 3269160..a04b4c7 100644 --- a/includes/etc/initramfs-tools/scripts/VERSION.txt +++ b/includes/etc/initramfs-tools/scripts/VERSION.txt @@ -1 +1 @@ -OpenGnsys Client 3.4.0 +OpenGnsys Client 3.5.0