Execute script with git permissions
This commit is contained in:
parent
0eb22fcfd9
commit
0eb9f4929d
@ -1,2 +1,2 @@
|
||||
#/usr/bin/env bash
|
||||
/usr/lib/github-fast-env/github-fast-env.rb "$@"
|
||||
sudo /usr/lib/github-fast-env/github-fast-env.rb "$@"
|
||||
|
@ -176,11 +176,11 @@ while true
|
||||
mode = arguments[1]
|
||||
|
||||
if mode == "named-pipes"
|
||||
if arguments.length < 3
|
||||
if arguments.length < 4
|
||||
raise ClientError.new "malformed command"
|
||||
end
|
||||
elsif mode == "pseudoterminal"
|
||||
if arguments.length < 4
|
||||
if arguments.length < 5
|
||||
raise ClientError.new "malformed command"
|
||||
end
|
||||
|
||||
@ -189,11 +189,13 @@ while true
|
||||
raise ClientError.new "unknown mode (#{mode})"
|
||||
end
|
||||
|
||||
script_path = Base64.decode64(arguments.last)
|
||||
working_directory = Base64.decode64(arguments[-2])
|
||||
script_path = Base64.decode64(arguments[-1])
|
||||
|
||||
connection_id += 1
|
||||
|
||||
child_process = fork {
|
||||
Dir.chdir(working_directory) do
|
||||
process_id = Process.pid
|
||||
control_socket.puts "pid #{process_id}"
|
||||
|
||||
@ -205,6 +207,9 @@ while true
|
||||
set_up_pseudoterminal(control_socket, pseudoterminal_path)
|
||||
end
|
||||
|
||||
Process.gid = Process.egid = "git"
|
||||
Process.uid = Process.euid = "git"
|
||||
|
||||
$original_stderr.puts " executing script #{script_path} (#{process_id})"
|
||||
|
||||
begin
|
||||
@ -252,8 +257,7 @@ while true
|
||||
end
|
||||
|
||||
$original_stderr.puts " finished handling request (#{process_id})"
|
||||
|
||||
Kernel.exit!
|
||||
end
|
||||
}
|
||||
|
||||
Process.detach(child_process)
|
||||
|
@ -156,6 +156,7 @@ end
|
||||
|
||||
log "info", "connected to control socket"
|
||||
|
||||
working_directory = Base64.encode64(Dir.pwd).delete("\n")
|
||||
encoded_script_path = Base64.encode64(script_path).delete("\n")
|
||||
|
||||
read_ios = [$control_socket]
|
||||
@ -164,9 +165,9 @@ if $options[:interactive]
|
||||
pseudoterminal_path = File.readlink("/proc/self/fd/0")
|
||||
encoded_pseudoterminal_path = Base64.encode64(pseudoterminal_path).delete("\n")
|
||||
|
||||
$control_socket.puts "new v1 pseudoterminal #{encoded_pseudoterminal_path} #{encoded_script_path}"
|
||||
$control_socket.puts "new v1 pseudoterminal #{encoded_pseudoterminal_path} #{working_directory} #{encoded_script_path}"
|
||||
else
|
||||
$control_socket.puts "new v1 named-pipes #{encoded_script_path}"
|
||||
$control_socket.puts "new v1 named-pipes #{working_directory} #{encoded_script_path}"
|
||||
end
|
||||
|
||||
pipes = {"stdin" => nil, "stdout" => nil, "stderr" => nil}
|
||||
|
Loading…
Reference in New Issue
Block a user