本文整理匯總了Golang中github.com/openshift/geard/git.RepoIdentifier.HomePath方法的典型用法代碼示例。如果您正苦於以下問題:Golang RepoIdentifier.HomePath方法的具體用法?Golang RepoIdentifier.HomePath怎麽用?Golang RepoIdentifier.HomePath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/openshift/geard/git.RepoIdentifier
的用法示例。
在下文中一共展示了RepoIdentifier.HomePath方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: createUser
func createUser(repositoryId git.RepoIdentifier) error {
cmd := exec.Command("/usr/sbin/useradd", repositoryId.LoginFor(), "-m", "-d", repositoryId.HomePath(), "-c", "Repository user")
if out, err := cmd.CombinedOutput(); err != nil {
fmt.Println(out)
return err
}
selinux.RestoreCon(repositoryId.HomePath(), true)
return nil
}
示例2: InitializeRepository
func InitializeRepository(repositoryId git.RepoIdentifier, repositoryURL string) error {
var err error
if _, err = user.Lookup(repositoryId.LoginFor()); err != nil {
if _, ok := err.(user.UnknownUserError); !ok {
return err
}
if err = createUser(repositoryId); err != nil {
return err
}
}
if err := os.MkdirAll(repositoryId.HomePath(), 0700); err != nil {
return err
}
if err := os.MkdirAll(repositoryId.RepositoryPathFor(), 0700); err != nil {
return err
}
var u *user.User
if u, err = user.Lookup(repositoryId.LoginFor()); err != nil {
return err
}
uid, _ := strconv.Atoi(u.Uid)
gid, _ := strconv.Atoi(u.Gid)
if err = os.Chown(repositoryId.HomePath(), uid, gid); err != nil {
return err
}
if err = os.Chown(repositoryId.RepositoryPathFor(), uid, gid); err != nil {
return err
}
switchns := filepath.Join("/", "usr", "bin", "switchns")
cmd := exec.Command(switchns, "--container=geard-githost", "--", "/git/init-repo", repositoryId.RepositoryPathFor(), u.Uid, u.Gid, repositoryURL)
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
err = cmd.Run()
if err != nil {
return err
}
if err := selinux.RestoreCon(repositoryId.RepositoryPathFor(), true); err != nil {
return err
}
return nil
}