9 lines
133 B
Bash
9 lines
133 B
Bash
|
#!/bin/sh
|
||
|
set -ev
|
||
|
|
||
|
# Remove persistent data
|
||
|
rm -rf "${VOLUMES_DIR}/crismapp"
|
||
|
|
||
|
# Unregister application
|
||
|
vmmgr unregister-app crismapp
|