commit | a2664b8c98d7020b6f4b52518b465a83cd719a98 | [log] [tgz] |
---|---|---|
author | guillaume.lambert <guillaume.lambert@orange.com> | Tue Dec 07 15:51:50 2021 +0100 |
committer | Fiachra Corcoran <fiachra.corcoran@est.tech> | Mon Apr 25 10:42:54 2022 +0000 |
tree | f3083ab693cb64fb8dd74b1bd1ee861080799905 | |
parent | 7028df99184a73b69d712ca2f6b0a72f00d2bfa9 [diff] |
[COMMON] Fix shopt nullglob bashism pointed out by checkbashisms. shopt, and therefore all the options it provides (only nullglob here) are not defined by POSIX and are bash-specific. The specific option nullglob is well documented in the bash manual. In short, it makes filename globbing patterns that do not match any filenames simply expanded to nothing rather than remaining unexpanded. $ echo my*file my*file $ shopt -s nullglob $ echo my*file This is actually useless in the script where it is used here since no blob is used to expand such filenames. Issue-ID: OOM-2643 Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com> Change-Id: Id336c17a46c6e5c0748562e7cd8f0efa5570ce6d
The ONAP Operations Manager (OOM) is responsible for life-cycle management of the ONAP platform itself; components such as SO, SDNC, etc.
It is not responsible for the management of services, VNFs or infrastructure instantiated by ONAP or used by ONAP to host such services or VNFs.
OOM uses the open-source Kubernetes container management system as a means to manage the containers that compose ONAP where the containers are hosted either directly on bare-metal servers or on VMs hosted by a 3rd party management system.
OOM ensures that ONAP is easily deployable and maintainable throughout its life cycle while using hardware resources efficiently.
Full documentation is available in ONAP documentation in operations and administration guides.
Please see contributing file to learn on how to contribute
All issues should be filled in ONAP Jira.