ddev snapshot fails with bash "Is a directory" error

49 Views Asked by At

I have several DDEV sites. Each one has multiple git branches, with a snapshot on each branch. Before I change a branch, I delete the snapshot and take a new one. The branches randomly start to fail ddev snapshot.

What am I doing wrong?

ddev snapshot --name=main
Creating database snapshot main 
bash: /var/tmp/main-mysql_5.7.gz: Is a directory 
Failed to create snapshot: composeCmd failed to run 'COMPOSE_PROJECT_NAME=ddev-hcanews docker-compose -f /home/hca/sites/hcanews/.ddev/.ddev-docker-compose-full.yaml exec -T db bash -c set -eu && ( set -eu -o pipefail; xtrabackup --backup --stream=xbstream --user=root --password=root --socket=/var/tmp/mysql.sock  2>/tmp/snapshot_main-mysql_5.7.gz.log | gzip > "/var/tmp/main-mysql_5.7.gz" )', action='[]', err='exit status 1', stdout='', stderr='bash: /var/tmp/main-mysql_5.7.gz: Is a directory', stdout=, stderr=bash: /var/tmp/main-mysql_5.7.gz: Is a directory 
Failed to snapshot hcanews: composeCmd failed to run 'COMPOSE_PROJECT_NAME=ddev-hcanews docker-compose -f /home/hca/sites/hcanews/.ddev/.ddev-docker-compose-full.yaml exec -T db bash -c set -eu && ( set -eu -o pipefail; xtrabackup --backup --stream=xbstream --user=root --password=root --socket=/var/tmp/mysql.sock  2>/tmp/snapshot_main-mysql_5.7.gz.log | gzip > "/var/tmp/main-mysql_5.7.gz" )', action='[]', err='exit status 1', stdout='', stderr='bash: /var/tmp/main-mysql_5.7.gz: Is a directory' `

ddev debug test gist here: https://gist.github.com/misthufe/4f2b509cd29747a288c7d6532ca4ece0

This error is happening when I run my script:

# Delete snapshot...
verbose "$LINENO" "ddev snapshot --cleanup --name $SNAPSHOT"
echo -e "/usr/bin/ddev snapshot --cleanup --name $SNAPSHOT" >> "$LOG"
/usr/bin/ddev snapshot --cleanup --name "$SNAPSHOT"

verbose $LINENO
separator
# Create snapshot...
verbose "$LINENO" "ddev snapshot --name=$SNAPSHOT"
echo -e "/usr/bin/ddev snapshot --name=$SNAPSHOT" >> "$LOG"                                                                         
/usr/bin/ddev snapshot --name="$SNAPSHOT"

Is there a way to change the script so it doesn't happen?

0

There are 0 best solutions below