11 lines
313 B
Bash
Executable File
11 lines
313 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Spitting out todays date and time for the archive deletion cron ..."
|
|
date
|
|
|
|
echo "Deleting offline.voicegardens.org archive ..."
|
|
rm -rf /var/www/offline.voicegardens.org/voicegardens/archive/*
|
|
|
|
echo "Deleting voicegardens.org archive ..."
|
|
rm -rf /var/www/voicegardens.org/voicegardens/archive/*
|