initial commit of file from CVS for smeserver-webshare on Sat Sep 7 21:15:27 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 21:15:27 +10:00
parent 609e015cb7
commit e4661a6aa1
90 changed files with 5344 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
#!/usr/bin/perl -w
my $projectName = $ARGV[0];
#------------------------------------------------------------
# Delete the webshare project directory
#------------------------------------------------------------
if ( -e "/opt/webshare/$projectName" ) {
system("/bin/rm -Rf /opt/webshare/$projectName");
system("/bin/rm -f /home/e-smith/db/webshare/htpasswd.$projectName");
system("/sbin/e-smith/signal-event ibay-modify");
}
exit(0);