aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xsrc/other/git-ro-daemon.csh3
-rwxr-xr-xsrc/other/git-ro-daemon.pl16
2 files changed, 3 insertions, 16 deletions
diff --git a/src/other/git-ro-daemon.csh b/src/other/git-ro-daemon.csh
new file mode 100755
index 0000000..162fb84
--- /dev/null
+++ b/src/other/git-ro-daemon.csh
@@ -0,0 +1,3 @@
+#!/bin/csh
+
+exec git daemon --reuseaddr --base-path=/usr/local/git /usr/local/git &
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__