Skip to main content
Jump to: navigation, search

Modeling Project Releng/Component Creation/Build Server Setup

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