Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Modeling Project Releng/Component Creation/Build Server Setup

< Modeling Project Releng‎ | Component Creation
Revision as of 16:26, 14 November 2007 by Codeslave.ca.ibm.com (Talk | contribs) (Add new component(s))

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Add new user

As root:

for newuser in newuser anotheruser; do \
  /usr/sbin/useradd -G www -p ${newuser}1 $newuser; \
done

Add new component(s)

As root:

/usr/sbin/addcomponent emft servus jcrm ecoretools mint emfatic
/usr/sbin/addcomponent mdt ocltools 

Edit firewall

As root, add a line such as this to the firewall, then reload it.

/sbin/iptables -I INPUT -p tcp -s newhost_or_IP --dport 22 -j ACCEPT # newuser (newcomponent)

Announcement

Finally, send the user an email or IM with his new .htaccess and ssh usernames/passwords.

Back to the top