Skip to content
Snippets Groups Projects
Select Git revision
  • efd11b6b4b1cc230ca56bf990f209f60c7f8bc4e
  • master default protected
  • hsh_v4.5
  • hsh_v4-4
  • hsh_v4.4
  • hsh_v4.3
  • hsh_v4.1.x
  • hsh_v4.2
  • hsh_v4.1
  • hsh_v3.11
  • hsh_3.10
  • v3.11-r2-hsh
  • v3.11-r2
  • v3.11-r1
  • v3.10-r1
  • v3.9-r1
  • v3.8-r2
  • v3.8-r1
  • v3.7-r1
19 results

lib.php

Blame
  • delete_container_data_folder.sh 432 B
    #!/bin/bash
    
    # Define the folders to be deleted
    folders=(
        "./infrastructure/neo4j/container_e/data"
        "./infrastructure/ongdb/container/data"
        "./infrastructure/sql/docker/data"
    )
    
    # Iterate through the folders and delete them
    for folder in "${folders[@]}"; do
        if [ -d "$folder" ]; then
            echo "Deleting folder: $folder"
            sudo rm -rf "$folder"
        else
            echo "Folder not found: $folder"
        fi
    done