Restructure installation paths

This commit is contained in:
Patrick Lühne 2020-05-26 04:53:43 +02:00
parent 48c35aab63
commit 0eb22fcfd9
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
5 changed files with 10 additions and 7 deletions

View File

@ -7,10 +7,11 @@ edition = "2018"
[package.metadata.deb]
assets = [
["github-fast-env/github-fast-envd.rb", "usr/bin/github-fast-envd", "755"],
["github-fast-env/github-fast-env.rb", "usr/bin/github-fast-env", "755"],
["github-fast-env/bin/github-fast-envd", "usr/bin/", "755"],
["github-fast-env/bin/github-fast-env", "usr/bin/", "755"],
["github-fast-env/github-fast-env.rb", "usr/lib/github-fast-env/", "755"],
["github-fast-env/preload.rb", "usr/lib/github-fast-env/", "755"],
["github-fast-env/systemd/github-fast-envd.service", "usr/lib/systemd/system/", "644"],
["ghe-fast-tools/ghe-fast-console.rb", "usr/lib/ghe-fast-tools/", "644"],
["ghe-fast-tools/bin/ghe-fast-console.rb", "usr/bin/ghe-fast-console", "755"],
["ghe-fast-tools/bin/ghe-fast-console", "usr/bin/", "755"],
]

View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
/usr/bin/github-fast-env --interactive /usr/lib/ghe-fast-tools/ghe-fast-console.rb

View File

@ -1,2 +0,0 @@
#!/usr/bin/env bash
sudo /usr/bin/github-fast-env --interactive /usr/lib/ghe-fast-tools/ghe-fast-console.rb

View File

@ -0,0 +1,2 @@
#/usr/bin/env bash
/usr/lib/github-fast-env/github-fast-env.rb "$@"

View File

@ -85,7 +85,7 @@ def read_command(control_socket)
end
def set_up_named_pipes(control_socket, connection_id)
pipe_base_path = "/#{$run_base_path}/github-fast-envd.#{connection_id}"
pipe_base_path = "/#{$runtime_directory}/github-fast-envd.#{connection_id}"
pipe_base_path_encoded = Base64.encode64(pipe_base_path).delete("\n")
stdin = open_pipe("#{pipe_base_path}.stdin")
@ -119,7 +119,7 @@ def set_up_named_pipes(control_socket, connection_id)
end
def clean_up_named_pipes(control_socket, connection_id)
pipe_base_path = "/#{$run_base_path}/github-fast-envd.#{connection_id}"
pipe_base_path = "/#{$runtime_directory}/github-fast-envd.#{connection_id}"
if File.exist?("#{pipe_base_path}.stdin")
File.delete("#{pipe_base_path}.stdin")