Service/git: Difference between revisions
Appearance
< Service
| Line 113: | Line 113: | ||
|- | |- | ||
|} | |} | ||
After pulling new sources, migrate database: | |||
cd /srv/gitorious/app/ | |||
sudo -u gitorious RAILS_ENV=production rake db:migrate | |||
Revision as of 14:12, 26 April 2011
Hostnames
Hardware
Administrative contact
git AT sugarlabs DOT org
Sysadmins
For non-emergency calls, preferably send email to the administrative contact.
- Aleksey Lim
- puppet related stuff is still in progress of settling down
Notes
Gitorious hosting.
| Home | /srv/gitorious
|
|---|---|
| Daemon | /etc/init.d/gitorious
|
| Logs | /srv/gitorious/app/log
|
| Config |
|
| SSL certs |
|
| Sources | http://gitorious.org/~alsroot/sugarlabs-org |
Database tips
To make runtime changes in Gitorious database, follow regular Rails workflow - run scripts/console:
cd /srv/gitorious/app sudo -u gitorious RAILS_ENV=production script/console
It is regular Ruby console and all feature like TAB completion work. To tweak Gitorious data, just use its model classes, e.g.:
# search of particular object by its attributes
user = User.find_by_login("user")
project = Project.find_by_title("project")
# get object attributes
user.email
# change object attributes
project.owner = User.find_by_email("foo@bar")
project.save!
# destroy object and all its dependencies
user.destroy
# reset user password
user = User.find_by_email("user")
password_key = user.forgot_password!
Mailer.deliver_forgotten_password(user, password_key)
# add repository committer
committer = User.find_by_login("user")
repo = Repository::find_by_path("sugar/mainline")
repo.committerships.create_with_permissions!({:committer => committer}, (Committership::CAN_COMMIT))
# delete repository committer
committer = User.find_by_login("user")
repo = Repository::find_by_path("sugar/mainline")
repo.committerships = repo.committerships.select {|i| !i.members.include? committer }
# change repository owner
new_owner = User.find_by_login("user")
repo = Repository::find_by_path("sugar/mainline")
cs = repo.committerships.select {|i| i.committer == new_owner}.pop
cs.permissions = (Committership::CAN_ADMIN | Committership::CAN_COMMIT | Committership::CAN_REVIEW)
cs.save!
repo.owner = new_owner
repo.save!
# move repository to another project
new_project = Project.find_by_title('sl-tweaks')
repo = Repository::find_by_path("sat-solver/mainline")
repo.project = new_project
repo.name = "sat-solver"
repo.save!
Upgrade notes
| git |
|
|---|
After pulling new sources, migrate database:
cd /srv/gitorious/app/ sudo -u gitorious RAILS_ENV=production rake db:migrate