Overview
| Comment: | Updated root CA certificate, the previous one expired, and made errors about this more informative |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
7241c0986cedff4f020022f3c9170bc4 |
| User & Date: | rkeene on 2019-12-13 00:11:33 |
| Other Links: | manifest | tags |
References
|
2020-05-12
| ||
| 15:08 | Commit [7241c0986c] broke writing because error messages were checked, fix the check and fix writing check-in: b5b196f3f3 user: rkeene tags: trunk | |
Context
|
2019-12-13
| ||
| 00:33 | Cleaned up code in preparation for Windows build check-in: fdf89fd103 user: rkeene tags: trunk | |
| 00:11 | Updated root CA certificate, the previous one expired, and made errors about this more informative check-in: 7241c0986c user: rkeene tags: trunk | |
| 00:10 | Updated to support tagging a package as beta when doing CPIO check-in: ecf92091f8 user: rkeene tags: trunk | |
Changes
Modified appfsd.tcl from [ced6c30241] to [15b349e52e].
| ︙ | |||
275 276 277 278 279 280 281 | 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 | - - + + - - - - - - + + + + + + |
set ::appfs::init_called 1
# Add a default CA to list of trusted CAs
lappend ::appfs::trusted_cas [::pki::x509::parse_cert {
-----BEGIN CERTIFICATE-----
MIIC7DCCAdSgAwIBAgIBATANBgkqhkiG9w0BAQUFADAvMRIwEAYDVQQKEwlSb3kg
|
| ︙ | |||
734 735 736 737 738 739 740 | 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | + - + + + |
return -code error "Invalid or unacceptable path: $dir"
}
proc getattr {path} {
array set pathinfo [_parsepath $path]
array set retval [list]
set fetchIndexError "no fetch error"
|
| ︙ | |||
894 895 896 897 898 899 900 | 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 | - + |
}
}
}
}
if {![info exists retval(type)]} {
|
| ︙ |