diff options
author | Joe <bousset.rudy@gmail.com> | 2022-04-27 16:46:41 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-04-27 16:46:41 +0200 |
commit | 5bd0aa64082a044604d311895d3f95232f5e0816 (patch) | |
tree | f77787d9c41843a4f95f1610847b4a74a6c27f64 | |
parent | Removed this shit (diff) | |
download | joe-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
-rwxr-xr-x | src/other/git-ro-daemon.csh | 3 | ||||
-rwxr-xr-x | src/other/git-ro-daemon.pl | 16 |
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__ |