aboutsummaryrefslogtreecommitdiffstats
path: root/src/other/git-ro-daemon.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/other/git-ro-daemon.pl')
-rwxr-xr-xsrc/other/git-ro-daemon.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/other/git-ro-daemon.pl b/src/other/git-ro-daemon.pl
deleted file mode 100755
index f237bbc..0000000
--- a/src/other/git-ro-daemon.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/local/bin/perl
-
-use strict;
-use warnings;
-use Term::ANSIColor;
-
-sub main {
- system(
- 'git daemon --reuseaddr --base-path=/usr/local/git /usr/local/git &'
- );
- exit;
-}
-
-main();
-
-__END__