--- layout: default navsection: installguide title: Create standard objects ... h3. "All users" group The convention is to add every active user to this group. We give it a distinctive UUID that looks like an IP broadcast address.
prefix=`arv --format=uuid user current | cut -d- -f1`

echo "Site prefix is '$prefix'"
# (Make sure it matches your configured 5-character site prefix.)

read -rd $'\000' newgroup <

h3. "arvados" repository

This will be readable by the "All users" group, and therefore by every active user. This makes it possible for users to run the bundled Crunch scripts by specifying @"script_version":"master","repository":"arvados"@ rather than pulling the Arvados source tree into their own repositories.

prefix=`arv --format=uuid user current | cut -d- -f1`

echo "Site prefix is '$prefix'"
# (Make sure it matches your configured 5-character site prefix.)

all_users_group_uuid="$prefix-j7d0g-fffffffffffffff"
repo_uuid=`arv --format=uuid repository create --repository '{"name":"arvados"}'`
echo "Arvados repository uuid is '$repo_uuid'"

read -rd $'\000' newlink <

h3. Keep disks

Currently, you need to tell Arvados about Keep services manually. You'll need at least two "disk" services.

Example:

prefix=`arv --format=uuid user current | cut -d- -f1`
echo "Site prefix is '$prefix'"
# (Make sure it matches your configured 5-character site prefix.)

read -rd $'\000' keepservice <