mirror of
https://github.com/taers232c/GAMADV-XTD3.git
synced 2025-12-11 00:04:10 -06:00
Upgraded to OpenSSL 3.5.0.
This commit is contained in:
parent
3b104da4b6
commit
bb9e3a3578
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@ -90,7 +90,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
cache.tar.xz
|
cache.tar.xz
|
||||||
key: gam-${{ matrix.jid }}-20250323
|
key: gam-${{ matrix.jid }}-20250408
|
||||||
|
|
||||||
- name: Untar Cache archive
|
- name: Untar Cache archive
|
||||||
if: matrix.goal == 'build' && steps.cache-python-ssl.outputs.cache-hit == 'true'
|
if: matrix.goal == 'build' && steps.cache-python-ssl.outputs.cache-hit == 'true'
|
||||||
@ -548,11 +548,12 @@ jobs:
|
|||||||
sudo apt-get -qq --yes update
|
sudo apt-get -qq --yes update
|
||||||
# arm64 needs to build a wheel and needs scons to build
|
# arm64 needs to build a wheel and needs scons to build
|
||||||
sudo apt-get -qq --yes install scons
|
sudo apt-get -qq --yes install scons
|
||||||
"${PYTHON}" -m pip install --upgrade patchelf==0.17.2.1
|
"${PYTHON}" -m pip install --upgrade patchelf-wrapper
|
||||||
"${PYTHON}" -m pip install --upgrade staticx
|
# "${PYTHON}" -m pip install --upgrade staticx
|
||||||
"${PYTHON}" -m pip install --upgrade pyelftools==0.31
|
# install latest github src for staticx
|
||||||
|
"${PYTHON}" -m pip install --upgrade "git+https://github.com/JonathonReinhart/staticx"
|
||||||
|
|
||||||
- name: Make StaticX
|
- name: Make StaticX GAM build
|
||||||
if: matrix.staticx == 'yes'
|
if: matrix.staticx == 'yes'
|
||||||
run: |
|
run: |
|
||||||
case $RUNNER_ARCH in
|
case $RUNNER_ARCH in
|
||||||
|
|||||||
12
README.md
12
README.md
@ -1,15 +1,9 @@
|
|||||||
# Introduction
|
# Introduction
|
||||||
GAMADV-XTD3 is a free, open source command line tool for Google Workspace (formerly G Suite) Administrators to manage domain and user settings quickly and easily.
|
GAM is a command line tool for Google Workspace admins to manage domain and user settings quickly and easily.
|
||||||
|
|
||||||
GAMADV-XTD3 is built with Python 3.
|
GAMADV-XTD3 has been replaced with GAM7.
|
||||||
|
|
||||||
This page provides simple instructions for downloading, installing and starting to use GAMADV-XTD3.
|
* [How to Uograde GAMADV-XTD3 to GAM7](How-to-Upgrade-GAMADV-XTD3-to-GAM7)
|
||||||
|
|
||||||
GAMADV-XTD3 runs on all versions of Google Workspace; Google Apps Free Edition has limited API support and not all GAM commands work.
|
|
||||||
|
|
||||||
GAMADV-XTD3 is a rewrite/extension of Jay Lee's [GAM], without his efforts, this version wouldn't exist.
|
|
||||||
|
|
||||||
GAMADV-XTD3 is backwards compatible with [GAM], meaning that if your command works with regular GAM, it will also work with GAMADV-XTD3. There may be differences in output, but the syntax is compatible.
|
|
||||||
|
|
||||||
# Documentation
|
# Documentation
|
||||||
Documentation for GAMADV-XTD3 is hosted in the [GitHub Wiki] and in Gam*.txt files.
|
Documentation for GAMADV-XTD3 is hosted in the [GitHub Wiki] and in Gam*.txt files.
|
||||||
|
|||||||
@ -1,3 +1,10 @@
|
|||||||
|
7.06.00
|
||||||
|
|
||||||
|
Upgraded to OpenSSL 3.5.0.
|
||||||
|
|
||||||
|
Fixed bug in `gam print cigroups` where `createTime`, `updateTime` and `statusTime`
|
||||||
|
were not converted according to `gam.cfg timezone`.
|
||||||
|
|
||||||
7.05.22
|
7.05.22
|
||||||
|
|
||||||
Updated progress messages for `gam <UserTypeEntity> print filelist|filecounts|filesharecounts|filetree select shareddriveid <SharedDriveID>`
|
Updated progress messages for `gam <UserTypeEntity> print filelist|filecounts|filesharecounts|filetree select shareddriveid <SharedDriveID>`
|
||||||
|
|||||||
@ -25,7 +25,7 @@ https://github.com/taers232c/GAMADV-XTD3/wiki
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = 'Ross Scroggs <ross.scroggs@gmail.com>'
|
__author__ = 'Ross Scroggs <ross.scroggs@gmail.com>'
|
||||||
__version__ = '7.05.22'
|
__version__ = '7.06.00'
|
||||||
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
||||||
|
|
||||||
#pylint: disable=wrong-import-position
|
#pylint: disable=wrong-import-position
|
||||||
@ -33563,14 +33563,14 @@ def doPrintGroups():
|
|||||||
groupSettings.pop(key)
|
groupSettings.pop(key)
|
||||||
if FJQC.formatJSON:
|
if FJQC.formatJSON:
|
||||||
row['email'] = groupEntity['email']
|
row['email'] = groupEntity['email']
|
||||||
row['JSON'] = json.dumps(groupEntity, ensure_ascii=False, sort_keys=True)
|
row['JSON'] = json.dumps(cleanJSON(groupEntity), ensure_ascii=False, sort_keys=True)
|
||||||
if rolesSet and groupMembers is not None:
|
if rolesSet and groupMembers is not None:
|
||||||
row['JSON-members'] = json.dumps(groupMembers, ensure_ascii=False, sort_keys=True)
|
row['JSON-members'] = json.dumps(groupMembers, ensure_ascii=False, sort_keys=True)
|
||||||
if isinstance(groupSettings, dict):
|
if isinstance(groupSettings, dict):
|
||||||
row['JSON-settings'] = json.dumps(groupSettings, ensure_ascii=False, sort_keys=True)
|
row['JSON-settings'] = json.dumps(cleanJSON(groupSettings), ensure_ascii=False, sort_keys=True)
|
||||||
groupCloudIdentity = ciGroups.get(row['email'], {})
|
groupCloudIdentity = ciGroups.get(row['email'], {})
|
||||||
if groupCloudIdentity:
|
if groupCloudIdentity:
|
||||||
row['JSON-cloudIdentity'] = json.dumps(groupCloudIdentity, ensure_ascii=False, sort_keys=True)
|
row['JSON-cloudIdentity'] = json.dumps(cleanJSON(groupCloudIdentity, timeObjects=CIGROUP_TIME_OBJECTS), ensure_ascii=False, sort_keys=True)
|
||||||
csvPF.WriteRowNoFilter(row)
|
csvPF.WriteRowNoFilter(row)
|
||||||
return
|
return
|
||||||
for field in groupFieldsLists['cd']:
|
for field in groupFieldsLists['cd']:
|
||||||
@ -35935,7 +35935,7 @@ def doPrintCIGroups():
|
|||||||
row = {}
|
row = {}
|
||||||
if FJQC.formatJSON:
|
if FJQC.formatJSON:
|
||||||
row['email'] = groupEntity['groupKey']['id'].lower()
|
row['email'] = groupEntity['groupKey']['id'].lower()
|
||||||
row['JSON'] = json.dumps(groupEntity, ensure_ascii=False, sort_keys=True)
|
row['JSON'] = json.dumps(cleanJSON(groupEntity, timeObjects=CIGROUP_TIME_OBJECTS), ensure_ascii=False, sort_keys=True)
|
||||||
if rolesSet and groupMembers is not None:
|
if rolesSet and groupMembers is not None:
|
||||||
row['JSON-members'] = json.dumps(groupMembers, ensure_ascii=False, sort_keys=True)
|
row['JSON-members'] = json.dumps(groupMembers, ensure_ascii=False, sort_keys=True)
|
||||||
csvPF.WriteRowNoFilter(row)
|
csvPF.WriteRowNoFilter(row)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user