aboutsummaryrefslogtreecommitdiffstats
path: root/src/other/git-ro-daemon.pl
blob: f237bbc2531055f2b9c88778266594e54cf8196e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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__