diff --git a/linux/debian/changelog b/linux/debian/changelog index 6b5d3cf..5a9a561 100644 --- a/linux/debian/changelog +++ b/linux/debian/changelog @@ -1,3 +1,9 @@ +ogagent (1.7.0-1) UNRELEASED; urgency=medium + + * Delete the new "ptt" parameter. It's not needed. + + -- OpenGnsys developers Fri, 21 Mar 2025 14:19:56 +0100 + ogagent (1.6.0-1) stable; urgency=medium * Don't invoke bash code for some functionalities diff --git a/src/VERSION b/src/VERSION index dc1e644..bd8bf88 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -1.6.0 +1.7.0 diff --git a/src/opengnsys/modules/server/ogAdmClient/__init__.py b/src/opengnsys/modules/server/ogAdmClient/__init__.py index b1aa619..589e2fb 100644 --- a/src/opengnsys/modules/server/ogAdmClient/__init__.py +++ b/src/opengnsys/modules/server/ogAdmClient/__init__.py @@ -478,7 +478,7 @@ class ogAdmClientWorker (ogLiveWorker): params = [] disk_info = cfg.pop (0) logger.debug (f'disk_info ({disk_info})') - for k in ['dis', 'ptt', 'tch']: + for k in ['dis', 'tch']: params.append (f'{k}={disk_info[k]}') disk_info_str = '*'.join (params)