Feature #11672
Compute stats about how much I2P is used in Tails
Start date:
2016-08-20
Due date:
% Done:
100%
Description
Subtasks
Related issues
Related to Tails - Bug #9563: FAQ: torrents with Tails -> use i2p | In Progress | 2015-06-12 | |
Blocked by Tails - |
Resolved | 2016-08-19 | |
Blocks Tails - |
Resolved | 2016-03-23 |
History
#1 Updated by intrigeri 2016-08-23 00:16:07
- blocked by
Feature #11675: Include /proc/cmdline in WhisperBack bug reports added
#2 Updated by intrigeri 2016-08-23 00:16:20
- Description updated
#3 Updated by sajolida 2016-08-23 10:00:40
- blocked by
Bug #11666: Add boot options parameters to Whisperback reports added
#4 Updated by intrigeri 2016-08-24 07:24:25
- blocks deleted (
)Bug #11666: Add boot options parameters to Whisperback reports
#5 Updated by sajolida 2016-08-30 03:59:39
- Target version set to Tails_2.7
I can do a first round right before 2.7.
#6 Updated by intrigeri 2016-11-02 10:55:03
- blocks
Bug #11276: Decide what to do wrt. I2P added
#7 Updated by sajolida 2016-11-04 11:14:45
- Assignee changed from sajolida to intrigeri
- QA Check set to Ready for QA
While doing this I realized that we actually already had the content of
cmdline three times in each WhisperBack report before 2.6 :)
So I could compute these stats on a bigger sample (from January 1):
| i2p | 16 | 1% |
| total | 943 | 100% |
The script I used for that:
find -type d | sort | while read folder ; do
echo "${folder}"
echo ""
total=$(grep -rl "BOOT_IMAGE=" ${folder} | wc -l)
i2p=$(grep -rl "BOOT_IMAGE=.*i2p" ${folder} | wc -l)
[ ${total} != '0' ] || continue
echo "| i2p | ${i2p} | $((${i2p}*100/${total}))% |"
echo "| total | ${total} | $((${total}*100/${total}))% |"
echo ""
done
#8 Updated by intrigeri 2016-11-04 11:25:21
- Status changed from Confirmed to Resolved
- QA Check changed from Ready for QA to Pass
> So I could compute these stats on a bigger sample (from January 1):
Excellent!
>
> | i2p | 16 | 1% |
> | total | 943 | 100% |
>
Thanks. I think this tells us enough to be comfortable removing I2P support if nobody steps up to maintain it in Tails (i.e. IMO we should not add this to our already copiously loaded plates).
#9 Updated by intrigeri 2016-11-04 11:27:01
- Assignee deleted (
intrigeri) - % Done changed from 0 to 100
#10 Updated by sajolida 2016-11-04 13:51:23
- related to Bug #9563: FAQ: torrents with Tails -> use i2p added