Added really lame script to update copyright year.
[hub.git] / contrib / cleanup.sh
1 #!/bin/sh
2
3 # Cleans up all created files to start from scratch
4
5 echo "$0: Cleaning up database ..."
6 rm -f db/*/*.serial*
7
8 echo "$0: Cleaning up stacks ..."
9 rm -f data/stacks/*.stack*
10
11 echo "$0: Removing socket ..."
12 rm -f /tmp/php_hub_ipc_socket
13
14 echo "$0: All done."
15 exit 0