gitdeploy/delete.sh
William Mantly ad1c8e7205 stuff
2016-06-16 22:51:16 -04:00

11 lines
141 B
Bash

#!/bin/bash
name="$1"
sshURL="$2"
rm -rf /var/www/gitwrapper/$name
rm /etc/apache2/sites-enabled/$name.conf
service apache2 reload
exit 0