File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 4.1.19 2025-05-28 <dave at tiredofit dot ca >
2+
3+ ### Changed
4+ - Force overwrite manual scripts as opposed to append (#414)
5+
6+
17## 4.1.18 2025-05-12 <dave at tiredofit dot ca >
28
39 ### Changed
Original file line number Diff line number Diff line change @@ -1247,7 +1247,7 @@ create_schedulers() {
12471247 cp -R /assets/dbbackup/template-dbbackup /etc/services.available/dbbackup-"${instance}"
12481248 sed -i "s|{{BACKUP_NUMBER}}|${instance}|g" /etc/services.available/dbbackup-"${instance}"/run
12491249 if [ "${MODE,,}" = "manual" ] ; then service_stop dbbackup-"${instance}" ; fi
1250- cat <<EOF >> /usr/bin/backup"${instance}"-now
1250+ cat <<EOF > /usr/bin/backup"${instance}"-now
12511251#!/bin/bash
12521252source /assets/functions/00-container
12531253PROCESS_NAME=db-backup${instance}
@@ -1267,7 +1267,7 @@ EOF
12671267
12681268EOF
12691269 else
1270- echo "/usr/bin/backup${instance}-now now" >> /usr/bin/backup-now
1270+ echo "/usr/bin/backup${instance}-now now" > /usr/bin/backup-now
12711271 fi
12721272
12731273 instance=$(echo "${instance} +1" | bc)
You can’t perform that action at this time.
0 commit comments