aboutsummaryrefslogtreecommitdiffstats
path: root/src/gitjoe/chowner.pl
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-08 16:43:14 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-08 16:43:14 +0200
commitf0cb40d9e4b8d3285ac7125fb40433d65fae172e (patch)
treedd4f02807e2744c2f21cef41d717c1778aa7d479 /src/gitjoe/chowner.pl
parentFile owner fixes (diff)
downloadjoe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.gz
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.bz2
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.xz
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.tar.zst
joe-scripts-f0cb40d9e4b8d3285ac7125fb40433d65fae172e.zip
Directory tree rework
Diffstat (limited to 'src/gitjoe/chowner.pl')
-rwxr-xr-xsrc/gitjoe/chowner.pl36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/gitjoe/chowner.pl b/src/gitjoe/chowner.pl
new file mode 100755
index 0000000..436959e
--- /dev/null
+++ b/src/gitjoe/chowner.pl
@@ -0,0 +1,36 @@
+#!/usr/local/bin/perl
+
+use strict;
+use warnings;
+use Term::ANSIColor;
+
+sub main {
+ my $argc = $#ARGV + 1;
+ if ($argc < 3) {
+ print colored("Failed!\n", 'bold red')
+ . "Missing argument, 3 needed "
+ . colored("[user - reponame - new owner]", 'bold')
+ . "\n";
+ exit 1;
+ }
+ my $usr = $ARGV[0];
+ my $repo = $ARGV[1];
+ my $owner = $ARGV[2];
+ my $home_dir = '/usr/home/' . $usr . '/';
+ if (substr($repo, -4) ne '.git') {
+ $repo = $repo . '.git';
+ }
+ $repo = $repo . '/';
+ open(my $owner_fh, '>:encoding(utf-8)', $home_dir . $repo . 'owner');
+ print $owner_fh $owner;
+ close($owner_fh);
+ system(
+ '/usr/local/bin/dash',
+ '-c',
+ '/usr/sbin/chown -v ' . $usr . ':' . $usr . ' ' . $home_dir . $repo . 'owner'
+ exit;
+}
+
+main();
+
+__END__