Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion image/cli/install/permissions-updates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ chmod +x /mascli/mas
chmod +x /mascli/must-gather/*
chmod +x /mascli/debug/*
chmod +x /mascli/backup-restore/*
chmod -R ug+w /masfvt
# Only chmod /masfvt if it exists
if [ -d /masfvt ]; then
chmod -R ug+w /masfvt
fi
chmod +x /usr/bin/gather
chmod -R g+w $ANSIBLE_COLLECTIONS_PATH/ibm/mas_devops
ln -s $ANSIBLE_COLLECTIONS_PATH/ibm/mas_devops /mascli/ansible-devops
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ module "db2rds-{{RDS_APP}}" {
db2_enabled_cloudwatch_logs_exports = ["diag.log", "notify.log"]
db2_additional_security_groups = local.cluster.security_groups
region_name = "{{REGION_NAME}}"
db_name = "BLUDB"
db2_identifier = "rds"
engine_version = var.engine_version
multi_az = false
Expand Down
Loading