Skip to content

Commit 3e94cd4

Browse files
authored
Merge pull request #91 from Ontotext-AD/GDB-11621
GDB-11621 Run cronjob as root, to make sure that backup rotation works correctly.
2 parents 31fbccc + ef7a610 commit 3e94cd4

File tree

3 files changed

+39
-20
lines changed

3 files changed

+39
-20
lines changed

modules/graphdb/templates/04_gdb_conf_overrides.sh.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ GDB_PROPERTIES=$(aws --cli-connect-timeout 300 ssm get-parameter --region ${regi
8282
extra_graphdb_java_options="$(aws --cli-connect-timeout 300 ssm get-parameter --region ${region} --name "/${name}/graphdb/graphdb_java_options" --with-decryption 2>/dev/null | jq -r .Parameter.Value || /bin/true )"
8383
if [[ -n $extra_graphdb_java_options ]]; then
8484
if grep GDB_JAVA_OPTS /etc/graphdb/graphdb.env &>/dev/null; then
85-
sed -ie "s/GDB_JAVA_OPTS=\"\(.*\)\"/GDB_JAVA_OPTS=\"\1 $extra_graphdb_java_options\"/g" /etc/graphdb/graphdb.env
85+
sed -ie "s|GDB_JAVA_OPTS=\"\(.*\)\"|GDB_JAVA_OPTS=\"\1 $extra_graphdb_java_options\"|g" /etc/graphdb/graphdb.env
8686
else
8787
echo "GDB_JAVA_OPTS=$extra_graphdb_java_options" > /etc/graphdb/graphdb.env
8888
fi

modules/graphdb/templates/05_gdb_backup_conf.sh.tpl

+13-4
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,19 @@ echo "# Configuring the GraphDB backup cron job #"
1717
echo "#################################################"
1818

1919
if [ ${deploy_backup} == "true" ]; then
20-
GRAPHDB_ADMIN_PASSWORD="$(aws --cli-connect-timeout 300 ssm get-parameter --region ${region} --name "/${name}/graphdb/admin_password" --with-decryption | jq -r .Parameter.Value | base64 -d)"
20+
# Create the backup user. ID : 1010
21+
echo "Creating the backup user"
22+
useradd -r -M -s /usr/sbin/nologin gdb-backup
23+
# Initialize the log file so that we are safe from potential attacks
24+
[[ -f /var/opt/graphdb/node/graphdb_backup.log ]] && rm /var/opt/graphdb/node/graphdb_backup.log
25+
touch /var/opt/graphdb/node/graphdb_backup.log
26+
chown gdb-backup:gdb-backup /var/opt/graphdb/node/graphdb_backup.log
27+
chmod og-rw /var/opt/graphdb/node/graphdb_backup.log
2128
cat <<-EOF >/usr/bin/graphdb_backup
2229
#!/bin/bash
2330
2431
set -euo pipefail
25-
GRAPHDB_ADMIN_PASSWORD="\$1"
32+
GRAPHDB_ADMIN_PASSWORD="\$(aws --cli-connect-timeout 300 ssm get-parameter --region ${region} --name "/${name}/graphdb/admin_password" --with-decryption | jq -r .Parameter.Value | base64 -d)"
2633
NODE_STATE="\$(curl --silent -u "admin:\$GRAPHDB_ADMIN_PASSWORD" http://localhost:7201/rest/cluster/node/status | jq -r .nodeState)"
2734
2835
function trigger_backup {
@@ -83,9 +90,11 @@ fi
8390
EOF
8491

8592
chmod +x /usr/bin/graphdb_backup
86-
echo "${backup_schedule} graphdb /usr/bin/graphdb_backup $GRAPHDB_ADMIN_PASSWORD" >/etc/cron.d/graphdb_backup
93+
echo "${backup_schedule} gdb-backup /usr/bin/graphdb_backup" >/etc/cron.d/graphdb_backup
8794
chmod og-rwx /etc/cron.d/graphdb_backup
88-
95+
# Set ownership of aws-cli to backup user
96+
chown -R gdb-backup:gdb-backup /usr/local/aws-cli
97+
chmod -R og-rwx /usr/local/aws-cli/
8998
log_with_timestamp "Cron job created"
9099
else
91100
log_with_timestamp "Backup module is not deployed, skipping provisioning..."

modules/graphdb/user_data.tf

+25-15
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,20 @@ data "cloudinit_config" "graphdb_user_data" {
7272
})
7373
}
7474

75-
part {
76-
content_type = "text/x-shellscript"
77-
content = templatefile("${path.module}/templates/05_gdb_backup_conf.sh.tpl", {
78-
name : var.resource_name_prefix
79-
region : var.aws_region
80-
backup_schedule : var.backup_schedule
81-
backup_retention_count : var.backup_retention_count
82-
backup_bucket_name : var.backup_bucket_name
83-
deploy_backup : var.deploy_backup
84-
})
75+
dynamic "part" {
76+
for_each = var.deploy_backup ? [1] : []
77+
78+
content {
79+
content_type = "text/x-shellscript"
80+
content = templatefile("${path.module}/templates/05_gdb_backup_conf.sh.tpl", {
81+
name : var.resource_name_prefix
82+
region : var.aws_region
83+
backup_schedule : var.backup_schedule
84+
backup_retention_count : var.backup_retention_count
85+
backup_bucket_name : var.backup_bucket_name
86+
deploy_backup : var.deploy_backup
87+
})
88+
}
8589
}
8690

8791
part {
@@ -154,13 +158,19 @@ data "cloudinit_config" "graphdb_user_data" {
154158
}
155159
}
156160

157-
# 12 Make aws-cli accessible only for root user
158-
part {
159-
content_type = "text/x-shellscript"
160-
content = <<-EOF
161-
#!/bin/bash
161+
# 12 Make aws-cli accessible only for root user iff backup is not enabled (otherwise, will be owned by the backup user)
162+
dynamic "part" {
163+
for_each = var.deploy_backup ? [] : [1]
164+
165+
content {
166+
content_type = "text/x-shellscript"
167+
content = <<-EOF
168+
#!/bin/bash
162169
set -euo pipefail
163170
chmod -R og-rwx /usr/local/aws-cli/
164171
EOF
172+
}
173+
165174
}
175+
166176
}

0 commit comments

Comments
 (0)