Merge pull request 'refs #1801 fix invocation to ogCheckIpAddress' (#18) from fix-stringlib into main
Reviewed-on: opengnsys/ogclone-engine#18fix-restore-torrent 0.3.1
commit
df16663594
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -5,6 +5,24 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.3.1] - 2025-04-03
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed invocation to ogCheckIpAddress in interfaceAdm/CrearImagen.py
|
||||||
|
|
||||||
|
## [0.3.0] - 2025-04-03
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
- Removed burg and rsync 3.1
|
||||||
|
|
||||||
|
## [0.2.6] - 2025-03-31
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Restore qt4 browser
|
||||||
|
|
||||||
## [0.2.5] - 2025-03-31
|
## [0.2.5] - 2025-03-31
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -66,7 +66,7 @@ repo = arg_repo
|
||||||
if not repo: repo = 'REPO'
|
if not repo: repo = 'REPO'
|
||||||
if repo == ogGetIpAddress(): repo = 'CACHE'
|
if repo == ogGetIpAddress(): repo = 'CACHE'
|
||||||
# Si es una ip y es distinta a la del recurso samba cambiamos de REPO.
|
# Si es una ip y es distinta a la del recurso samba cambiamos de REPO.
|
||||||
if 'REPO' == repo or StringLib.ogCheckIpAddress (repo):
|
if 'REPO' == repo or ogCheckIpAddress (repo):
|
||||||
# Si falla el cambio -> salimos con error repositorio no valido
|
# Si falla el cambio -> salimos con error repositorio no valido
|
||||||
if not ogChangeRepo (repo):
|
if not ogChangeRepo (repo):
|
||||||
ogRaiseError ([], ogGlobals.OG_ERR_NOTFOUND, repo)
|
ogRaiseError ([], ogGlobals.OG_ERR_NOTFOUND, repo)
|
||||||
|
|
Loading…
Reference in New Issue