-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example
More file actions
46 lines (38 loc) · 1.13 KB
/
config.example
File metadata and controls
46 lines (38 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
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
45
46
# Fedora Result Submit Method
# Default is no submit. Other options are 'anonymous' where we get results
# without requiring FAS authentication, or 'authenticated' which will use
# FAS authentication to upload and give you credit towards Fedora Badges.
submit=none
# submit=anonymous
# submit=authenticated
# Check duplication tests
# disable_retest=y
# Check Signature for Secure Boot
# checksig=y
# validsig="Fedora Secure Boot Signer"
# Test 3rd Party Modules
# thirdparty=y
# FAS User credentials.
# Storing your FAS password here is technically possible, but not advisable
# for security seasons
# username=''
# password=''
# **************** Nothing to edit below here ****************
case $submit in
anonymous)
commit=y
commithook="curl -H 'Expect:' -F "user=anonymous" -F "test_result=@$logfile\;type=text/x-log" https://apps.fedoraproject.org/kerneltest/upload/anonymous"
;;
authenticated)
commit=y
if [ -n "$username" ]; then
username="-u $username"
fi
if [ -n "$password" ]; then
password="-p $password"
fi
commithook="./fedora_submit.py $username $password -l $logfile"
;;
*)
commithook=/usr/bin/true
esac