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`
16 read -rd $'\000' newgroup <<EOF; arv group create --group "$newgroup"
18 "uuid":"$prefix-j7d0g-fffffffffffffff",
24 h3. "arvados" repository
26 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.
29 prefix=`arv --format=uuid user current | cut -d- -f1`
30 all_users_group_uuid="$prefix-j7d0g-fffffffffffffff"
31 repo_uuid=`arv --format=uuid repository create --repository '{"name":"arvados"}'`
32 echo "Arvados repository uuid is $repo_uuid"
34 read -rd $'\000' newlink <<EOF; arv link create --link "$newlink"
36 "tail_uuid":"$all_users_group_uuid",
37 "head_uuid":"$repo_uuid",
38 "link_class":"permission",
46 Currently, you need to tell Arvados about Keep disks manually.
49 secret=`ruby -e 'print rand(2**512).to_s(36)[0..49]'`
50 read -rd $'\000' keepdisk <<EOF; arv keep_disk create --keep-disk "$keepdisk"
52 "service_host":"keep0.xyzzy.arvadosapi.com",
54 "service_ssl_flag":false,
55 "ping_secret":"$secret"