diff adduser.sh @ 0:0fa46413d0d9 draft

planemo upload for repository https://bitbucket.org/mvdbeek/dockertoolfactory/ commit 2f33eb59c06ac3d6ba6e22622fd4ae729eb5e4da-dirty
author mvdbeek
date Sat, 03 Oct 2015 08:34:39 -0400
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/adduser.sh	Sat Oct 03 08:34:39 2015 -0400
@@ -0,0 +1,6 @@
+#!/usr/bin/env bash
+USER=galaxy
+for uid in {1001..1500}
+do
+   adduser $USER$uid -u $uid --gid 1000 --no-create-home --quiet
+done