Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-shell
Commits
fcf70b91
Commit
fcf70b91
authored
Feb 04, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
install script
parent
1d180b7a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
bin/install
bin/install
+19
-0
No files found.
bin/install
0 → 100755
View file @
fcf70b91
#!/usr/bin/env ruby
#
# GitLab shell, invoked from ~/.ssh/authorized_keys
#
ROOT_PATH
=
File
.
join
(
File
.
expand_path
(
File
.
dirname
(
__FILE__
)),
".."
)
commands
=
[
"mkdir -p /home/git/repositories"
,
"mkdir -p /home/git/.ssh"
,
"chmod -R ug+rwX,o-rwx /home/git/repositories/"
,
"find /home/git/repositories -type d -print0 | xargs -0 chmod g+s"
]
commands
.
each
do
|
cmd
|
puts
"
#{
cmd
}
:
#{
system
(
cmd
)
}
"
end
exit
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment