14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
AppFS should normally be mounted on "/opt/appfs".
/opt/appfs/hostname
Fetches: http://hostname/appfs/index
Contains CSV file: hash,hashMethod,<certificateInDERFormatInHex>,<PKCS#1v1.5-signature-inDERFormatInHex>
\-------------/
^- Signed data
Fetches: http://hostname/appfs/sha1/<hash>
Contains CSV file: package,version,os,cpuArch,sha1,isLatest
/opt/appfs/hostname/package/os-cpuArch/version
/opt/appfs/hostname/sha1/
Fetches: http://hostname/appfs/sha1/<sha1>
Contains CSV file:
type,time,extraData,name
type == directory; extraData = (null)
type == symlink; extraData = source
type == file; extraData = size,perms,sha1
/opt/appfs/hostname/{sha1,package/os-cpuArch/version}/file
Fetches: http://hostname/appfs/sha1/<sha1>
Database
--------
packages(hostname, sha1, package, version, os, cpuArch, isLatest, haveManifest)
files(package_sha1, type, time, source, size, perms, file_sha1, file_name, file_directory)
Resources
---------
http://appfs.rkeene.org/
|
|
|
|
|
|
|
|
>
|
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
AppFS should normally be mounted on "/opt/appfs".
/opt/appfs/hostname
Fetches: http://hostname/appfs/index
Contains CSV file: hash,hashMethod,<certificateInDERFormatInHex>,<PKCS#1v1.5-signature-inDERFormatInHex>
\-------------/
^- Signed data
Fetches: http://hostname/appfs/<hashMethod>/<hash>
Contains CSV file: package,version,os,cpuArch,packageManifestHash,isLatest
/opt/appfs/hostname/package/os-cpuArch/version
/opt/appfs/hostname/<hashMethod>/
Fetches: http://hostname/appfs/<hashMethod>/<packageManifestHash>
Contains CSV file:
type,time,extraData,name
type == directory; extraData = (null)
type == symlink; extraData = source
type == file; extraData = size,perms,fileHash
/opt/appfs/hostname/{packageManifestHash,package/os-cpuArch/version}/file
Fetches: http://hostname/appfs/<hashMethod>/<fileHash>
Database
--------
sites(hostname, hashMethod, lastUpdate, ttl)
packages(hostname, packageManifestHash, package, version, os, cpuArch, isLatest, haveManifest)
files(packageManifestHash, type, time, source, size, perms, fileHash, file_name, file_directory)
Resources
---------
http://appfs.rkeene.org/
|