29 lines
1.2 KiB
Text
29 lines
1.2 KiB
Text
|
{{- if and (stat (joinPath .host.home ".config" "age" "chezmoi.txt")) (stat (joinPath .chezmoi.sourceDir ".chezmoitemplates" "secrets" "key-cloudflare-r2-id")) (stat (joinPath .chezmoi.sourceDir ".chezmoitemplates" "secrets" "key-cloudflare-r2-secret")) (ne .user.cloudflare.r2 "") -}}
|
||
|
#!/usr/bin/env bash
|
||
|
|
||
|
CONFIG_FILE="$HOME/.config/rclone/rclone.conf"
|
||
|
if cat "$CONFIG_FILE" | grep '# MEGABYTE LABS MANAGED S3'; then
|
||
|
# TODO: Remove old block
|
||
|
START_LINE="$(echo `grep -n -m 1 "# MEGABYTE LABS MANAGED S3" .zshrc | cut -f1 -d ":"`)"
|
||
|
END_LINE="$(echo `grep -n -m 1 "# MEGABYTE LABS MANAGED S3" .zshrc | cut -f1 -d ":"`)"
|
||
|
if command -v gsed > /dev/null; then
|
||
|
gsed -i "$START_LINE,$END_LINEd" "$CONFIG_FILE"
|
||
|
else
|
||
|
sed -i "$START_LINE,$END_LINEd" "$CONFIG_FILE"
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
tee -a "$CONFIG_FILE" > /dev/null <<EOT
|
||
|
# MEGABYTE LABS MANAGED S3
|
||
|
[{{ .user.username}}-s3]
|
||
|
type = s3
|
||
|
provider = Cloudflare
|
||
|
access_key_id = {{ includeTemplate "secrets/key-cloudflare-r2-id" | decrypt -}}
|
||
|
secret_access_key = {{ includeTemplate "secrets/key-cloudflare-r2-secret" | decrypt -}}
|
||
|
region = auto
|
||
|
endpoint = {{ .user.cloudflare.r2 }}.r2.cloudflarestorage.com/user
|
||
|
acl = private
|
||
|
# MEGABYTE LABS MANAGED S3
|
||
|
EOT
|
||
|
{{- end }}
|