There are two issues with the following line.
# echo -e "deb http://deb.i2p2.no/ jessie main\ndeb-src http://deb.i2p2.no/ jessie main" >> /etc/apt/sources.list.d/i2p-release.list
-
We’ve been consistently using
sudo
instead of#
. -
>>
appends.>
overwrites. I think in this case, to make instructions idempotent,>
is better.