aboutsummaryrefslogtreecommitdiffstats
path: root/src/other/git-ro-daemon.pl
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-04-27 16:46:41 +0200
committerJoe <bousset.rudy@gmail.com>2022-04-27 16:46:41 +0200
commit5bd0aa64082a044604d311895d3f95232f5e0816 (patch)
treef77787d9c41843a4f95f1610847b4a74a6c27f64 /src/other/git-ro-daemon.pl
parentRemoved this shit (diff)
downloadjoe-scripts-5bd0aa64082a044604d311895d3f95232f5e0816.tar.gz
joe-scripts-5bd0aa64082a044604d311895d3f95232f5e0816.tar.bz2
joe-scripts-5bd0aa64082a044604d311895d3f95232f5e0816.tar.xz
joe-scripts-5bd0aa64082a044604d311895d3f95232f5e0816.tar.zst
joe-scripts-5bd0aa64082a044604d311895d3f95232f5e0816.zip
Renamed file
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__