mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
8 lines
166 B
Bash
8 lines
166 B
Bash
#!/bin/bash
|
|
|
|
user=$1
|
|
MEDIA_DIRECTORY=/home/yunohost.multimedia
|
|
|
|
if [ -n "$user" ] && [ -e "$MEDIA_DIRECTORY/$user" ]; then
|
|
sudo rm -r "$MEDIA_DIRECTORY/$user"
|
|
fi
|