61 lines
1.7 KiB
Diff
61 lines
1.7 KiB
Diff
diff --git a/internal/config/config.go b/internal/config/config.go
|
|
index 79c2a36..12ba31e 100644
|
|
--- a/internal/config/config.go
|
|
+++ b/internal/config/config.go
|
|
@@ -3,7 +3,6 @@ package config
|
|
import (
|
|
"io/ioutil"
|
|
"net/url"
|
|
- "os"
|
|
"path"
|
|
"path/filepath"
|
|
|
|
@@ -59,16 +58,13 @@ func (c *Config) GetHttpClient() *client.HttpClient {
|
|
}
|
|
|
|
func New() (*Config, error) {
|
|
- dir, err := os.Getwd()
|
|
- if err != nil {
|
|
- return nil, err
|
|
- }
|
|
+ dir := "/run/gitlab"
|
|
|
|
return NewFromDir(dir)
|
|
}
|
|
|
|
func NewFromDir(dir string) (*Config, error) {
|
|
- return newFromFile(path.Join(dir, configFile))
|
|
+ return newFromFile("/run/gitlab/shell-config.yml")
|
|
}
|
|
|
|
func newFromFile(filename string) (*Config, error) {
|
|
diff --git a/internal/keyline/key_line.go b/internal/keyline/key_line.go
|
|
index c6f2422..fb0426b 100644
|
|
--- a/internal/keyline/key_line.go
|
|
+++ b/internal/keyline/key_line.go
|
|
@@ -37,7 +37,7 @@ func NewPrincipalKeyLine(keyId, principal string, config *config.Config) (*KeyLi
|
|
}
|
|
|
|
func (k *KeyLine) ToString() string {
|
|
- command := fmt.Sprintf("%s %s-%s", path.Join(k.Config.RootDir, executable.BinDir, executable.GitlabShell), k.Prefix, k.Id)
|
|
+ command := fmt.Sprintf("%s %s-%s", path.Join("/run/current-system/sw/bin", executable.GitlabShell), k.Prefix, k.Id)
|
|
|
|
return fmt.Sprintf(`command="%s",%s %s`, command, SshOptions, k.Value)
|
|
}
|
|
diff --git a/support/gitlab_config.rb b/support/gitlab_config.rb
|
|
index 52ac5ee..d96baa3 100644
|
|
--- a/support/gitlab_config.rb
|
|
+++ b/support/gitlab_config.rb
|
|
@@ -7,7 +7,7 @@ class GitlabConfig
|
|
attr_reader :config
|
|
|
|
def initialize
|
|
- @config = YAML.load_file(File.join(ROOT_PATH, 'config.yml'))
|
|
+ @config = YAML.load_file('/run/gitlab/shell-config.yml')
|
|
end
|
|
|
|
def auth_file
|
|
--
|
|
2.28.0
|
|
|