3 navsection: installguide
4 title: Create standard objects
12 The convention is to add every active user to this group. We give it a distinctive UUID that looks like an IP broadcast address.
15 prefix=`arv --format=uuid user current | cut -d- -f1`
17 echo "Site prefix is '$prefix'"
18 # (Make sure it matches your configured 5-character site prefix.)
20 read -rd $'\000' newgroup <<EOF; arv group create --group "$newgroup"
22 "uuid":"$prefix-j7d0g-fffffffffffffff",
28 h3. "arvados" repository
30 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.
33 prefix=`arv --format=uuid user current | cut -d- -f1`
35 echo "Site prefix is '$prefix'"
36 # (Make sure it matches your configured 5-character site prefix.)
38 all_users_group_uuid="$prefix-j7d0g-fffffffffffffff"
39 repo_uuid=`arv --format=uuid repository create --repository '{"name":"arvados"}'`
40 echo "Arvados repository uuid is '$repo_uuid'"
42 read -rd $'\000' newlink <<EOF; arv link create --link "$newlink"
44 "tail_uuid":"$all_users_group_uuid",
45 "head_uuid":"$repo_uuid",
46 "link_class":"permission",
54 Currently, you need to tell Arvados about Keep services manually. You'll need at least two "disk" services.
59 prefix=`arv --format=uuid user current | cut -d- -f1`
60 echo "Site prefix is '$prefix'"
61 # (Make sure it matches your configured 5-character site prefix.)
63 read -rd $'\000' keepservice <<EOF; arv keep_service create --keep-service "$keepservice"
65 "service_host":"keep0.$prefix.arvadosapi.com",
67 "service_ssl_flag":false,