Compare commits

..

2 Commits

Author SHA1 Message Date
1dce024cd8 ss 2025-10-24 17:04:34 +01:00
4245a47581 Add git ignore 2025-10-24 17:01:58 +01:00
6 changed files with 32 additions and 10 deletions

22
.gitignore vendored Normal file
View File

@@ -0,0 +1,22 @@
# Ignore Python cache and virtual environments
__pycache__/
*.pyc
*.pyo
*.pyd
env/
venv/
ENV/
# macOS system files
.DS_Store
# Shell history and logs
*.log
*.history
# Exclude Rubrik API config files
rbk_api.conf
# Other common ignores
*.swp
*.swo

View File

@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
# #
# List MVs using API call to CDM, for diagnostic purposes # List MVs using API call to CDM, for diagnostic purposes
# Written for Avon # Written for HCL / Nokia
# v1.1 - James Pattinson - October 2023 # v1.1 - James Pattinson - October 2025
# #
# usage: list_mv.sh # usage: list_mv.sh

View File

@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
# #
# Oracle shell script support functions # Oracle shell script support functions
# Written for Avon # Written for HCL / Nokia
# v1.0 - James Pattinson - October 2023 # v1.0 - James Pattinson - October 2025
nowait=0 nowait=0

View File

@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
# #
# RMAN DB backup with incremental Merge # RMAN DB backup with incremental Merge
# Written for Avon # Written for HCL / Nokia
# v1.0 - James Pattinson - October 2023 # v1.0 - James Pattinson - October 2025
# #
# usage: rman_db.sh <ORACLE_SID> # usage: rman_db.sh <ORACLE_SID>

View File

@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
# #
# RMAN Log backup # RMAN Log backup
# Written for Avon # Written for HCL / Nokia
# v1.1 - James Pattinson - October 2023 # v1.1 - James Pattinson - October 2025
# #
# usage: rman_logs.sh <ORACLE_SID> # usage: rman_logs.sh <ORACLE_SID>

View File

@@ -1,8 +1,8 @@
#!/bin/bash #!/bin/bash
# #
# Open and Close MV using API call to CDM # Open and Close MV using API call to CDM
# Written for Avon # Written for AvonHCL / Nokia
# v1.0 - James Pattinson - October 2023 # v1.0 - James Pattinson - October 2025
# #
# usage: rubrik_mv_op.sh -d <DBNAME> -v <logs|data> -o <open|close> # usage: rubrik_mv_op.sh -d <DBNAME> -v <logs|data> -o <open|close>
# #