mirror of
https://github.com/go-i2p/reseed-tools.git
synced 2025-09-18 18:09:39 -04:00
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
6249b3f41e | ||
![]() |
8ed93440a4 | ||
![]() |
bd4f7d746d | ||
![]() |
d7bf080c43 | ||
![]() |
acaf528e9b | ||
![]() |
98293c4ded | ||
![]() |
c9c938911d | ||
![]() |
7b27889b3b | ||
![]() |
a8b0285358 |
@@ -1,3 +1,8 @@
|
|||||||
|
2021-12-14
|
||||||
|
* app.Version = "0.2.10"
|
||||||
|
* restart changelog
|
||||||
|
* fix websiteURL in plugin.config
|
||||||
|
|
||||||
2019-04-21
|
2019-04-21
|
||||||
* app.Version = "0.1.7"
|
* app.Version = "0.1.7"
|
||||||
* enabling TLS 1.3 *only*
|
* enabling TLS 1.3 *only*
|
||||||
|
14
Makefile
14
Makefile
@@ -1,9 +1,11 @@
|
|||||||
|
|
||||||
VERSION=0.2.6
|
VERSION=0.2.10
|
||||||
APP=reseed-tools
|
APP=reseed-tools
|
||||||
USER_GH=eyedeekay
|
USER_GH=eyedeekay
|
||||||
CGO_ENABLED=0
|
CGO_ENABLED=0
|
||||||
export CGO_ENABLED=0
|
export CGO_ENABLED=0
|
||||||
|
PLUGIN_PORT=7671
|
||||||
|
export PLUGIN_PORT=7671
|
||||||
|
|
||||||
GOOS?=$(shell uname -s | tr A-Z a-z)
|
GOOS?=$(shell uname -s | tr A-Z a-z)
|
||||||
GOARCH?="amd64"
|
GOARCH?="amd64"
|
||||||
@@ -182,7 +184,7 @@ jar: gojava
|
|||||||
release: version upload checkinstall upload-single-deb plugins upload-su3s upload-bin
|
release: version upload checkinstall upload-single-deb plugins upload-su3s upload-bin
|
||||||
|
|
||||||
version:
|
version:
|
||||||
cat README.md | gothub release -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -d -
|
cat README.md | gothub release -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION) -d -; true
|
||||||
|
|
||||||
delete-version:
|
delete-version:
|
||||||
gothub delete -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION)
|
gothub delete -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(APP) -t v$(VERSION)
|
||||||
@@ -235,7 +237,7 @@ upload-bin:
|
|||||||
rm-su3s:
|
rm-su3s:
|
||||||
rm *.su3 -f
|
rm *.su3 -f
|
||||||
|
|
||||||
download-su3s: rm-su3s
|
download-su3s:
|
||||||
GOOS=darwin GOARCH=amd64 make download-single-su3
|
GOOS=darwin GOARCH=amd64 make download-single-su3
|
||||||
GOOS=darwin GOARCH=arm64 make download-single-su3
|
GOOS=darwin GOARCH=arm64 make download-single-su3
|
||||||
GOOS=linux GOARCH=386 make download-single-su3
|
GOOS=linux GOARCH=386 make download-single-su3
|
||||||
@@ -288,13 +290,13 @@ su3s: tmp/content tmp/lib
|
|||||||
-author=hankhill19580@gmail.com \
|
-author=hankhill19580@gmail.com \
|
||||||
-autostart=true \
|
-autostart=true \
|
||||||
-clientname=reseed-tools-$(GOOS)-$(GOARCH) \
|
-clientname=reseed-tools-$(GOOS)-$(GOARCH) \
|
||||||
-command="reseed-tools-$(GOOS)-$(GOARCH) reseed --yes --signer=you@mail.i2p --netdb=\$$CONFIG/netDb" \
|
-command="reseed-tools-$(GOOS)-$(GOARCH) reseed --yes --signer=you@mail.i2p --port=$(PLUGIN_PORT)" \
|
||||||
-consolename="Reseed Tools" \
|
-consolename="Reseed Tools" \
|
||||||
-consoleurl="http://127.0.0.1:8443" \
|
-consoleurl="https://127.0.0.1:$(PLUGIN_PORT)" \
|
||||||
-updateurl="http://idk.i2p/reseed-tools/reseed-tools-$(GOOS)-$(GOARCH).su3" \
|
-updateurl="http://idk.i2p/reseed-tools/reseed-tools-$(GOOS)-$(GOARCH).su3" \
|
||||||
-website="http://idk.i2p/reseed-tools/" \
|
-website="http://idk.i2p/reseed-tools/" \
|
||||||
-icondata="content/images/reseed-icon.png" \
|
-icondata="content/images/reseed-icon.png" \
|
||||||
-delaystart="3" \
|
-delaystart="86400" \
|
||||||
-desc="`cat description-pak`" \
|
-desc="`cat description-pak`" \
|
||||||
-exename=reseed-tools-$(GOOS)-$(GOARCH) \
|
-exename=reseed-tools-$(GOOS)-$(GOARCH) \
|
||||||
-targetos="$(GOOS)" \
|
-targetos="$(GOOS)" \
|
||||||
|
30
README.md
30
README.md
@@ -34,6 +34,36 @@ and via the github mirror at https://github.com/eyedeekay/reseed-tools/releases.
|
|||||||
These can be installed by adding them on the
|
These can be installed by adding them on the
|
||||||
[http://127.0.0.1:7657/configplugins](http://127.0.0.1:7657/configplugins).
|
[http://127.0.0.1:7657/configplugins](http://127.0.0.1:7657/configplugins).
|
||||||
|
|
||||||
|
After installing the plugin, you should immediately edit the `clients.config`
|
||||||
|
file in order to set your `--signer` email, which is used to name your keys.
|
||||||
|
For example, change:
|
||||||
|
|
||||||
|
```
|
||||||
|
clientApp.0.main=net.i2p.app.CorrectedShellService
|
||||||
|
clientApp.0.name=reseed-tools-linux-amd64
|
||||||
|
clientApp.0.args=$PLUGIN/lib/reseed-tools-linux-amd64 -shellservice.name "reseed-tools-linux-amd64" -shellservice.displayname "Reseed Tools" reseed --yes --signer=you@mail.i2p --port=7671
|
||||||
|
^ change this line
|
||||||
|
clientApp.0.delay=86400
|
||||||
|
clientApp.0.startOnLoad=true
|
||||||
|
clientApp.0.classpath=$PLUGIN/lib/shellservice.jar
|
||||||
|
```
|
||||||
|
|
||||||
|
into:
|
||||||
|
|
||||||
|
```
|
||||||
|
clientApp.0.main=net.i2p.app.CorrectedShellService
|
||||||
|
clientApp.0.name=reseed-tools-linux-amd64
|
||||||
|
clientApp.0.args=$PLUGIN/lib/reseed-tools-linux-amd64 -shellservice.name "reseed-tools-linux-amd64" -shellservice.displayname "Reseed Tools" reseed --yes --signer=hankhill19580@gmail.com --port=7671
|
||||||
|
^ fill in your email
|
||||||
|
clientApp.0.delay=86400
|
||||||
|
^ remove this line when you're done
|
||||||
|
clientApp.0.startOnLoad=true
|
||||||
|
clientApp.0.classpath=$PLUGIN/lib/shellservice.jar
|
||||||
|
```
|
||||||
|
|
||||||
|
This will allow the developers to contact you if your reseed has issues
|
||||||
|
and authenticate your reseed.
|
||||||
|
|
||||||
- darwin/amd64: [http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3](http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3)
|
- darwin/amd64: [http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3](http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3)
|
||||||
- darwin/arm64: [http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3](http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3)
|
- darwin/arm64: [http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3](http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3)
|
||||||
- linux/386: [http://idk.i2p/reseed-tools/reseed-tools-linux-386.su3](http://idk.i2p/reseed-tools/reseed-tools-linux-386.su3)
|
- linux/386: [http://idk.i2p/reseed-tools/reseed-tools-linux-386.su3](http://idk.i2p/reseed-tools/reseed-tools-linux-386.su3)
|
||||||
|
@@ -1,2 +1 @@
|
|||||||
Reseed tools is a self-contained, easy-to-configure I2P reseed service
|
Reseed tools is a self-contained, easy-to-configure I2P reseed service which can be run on any OS.
|
||||||
which can be run on any OS.
|
|
||||||
|
18
index.html
18
index.html
@@ -16,6 +16,24 @@
|
|||||||
<p>Reseed-tools can be run as a user, as a freestanding service, or be installed as an I2P Plugin. It will attempt to configure itself automatically. You should make sure to set the <code>--signer</code> flag or the <code>RESEED_EMAIL</code> environment variable to configure your signing keys/contact info.</p>
|
<p>Reseed-tools can be run as a user, as a freestanding service, or be installed as an I2P Plugin. It will attempt to configure itself automatically. You should make sure to set the <code>--signer</code> flag or the <code>RESEED_EMAIL</code> environment variable to configure your signing keys/contact info.</p>
|
||||||
<h4 id="plugin-install-urls">Plugin install URL’s</h4>
|
<h4 id="plugin-install-urls">Plugin install URL’s</h4>
|
||||||
<p>Plugin releases are available inside of i2p at http://idk.i2p/reseed-tools/ and via the github mirror at https://github.com/eyedeekay/reseed-tools/releases. These can be installed by adding them on the <a href="http://127.0.0.1:7657/configplugins">http://127.0.0.1:7657/configplugins</a>.</p>
|
<p>Plugin releases are available inside of i2p at http://idk.i2p/reseed-tools/ and via the github mirror at https://github.com/eyedeekay/reseed-tools/releases. These can be installed by adding them on the <a href="http://127.0.0.1:7657/configplugins">http://127.0.0.1:7657/configplugins</a>.</p>
|
||||||
|
<p>After installing the plugin, you should immediately edit the <code>clients.config</code> file in order to set your <code>--signer</code> email, which is used to name your keys. For example, change:</p>
|
||||||
|
<pre><code>clientApp.0.main=net.i2p.app.CorrectedShellService
|
||||||
|
clientApp.0.name=reseed-tools-linux-amd64
|
||||||
|
clientApp.0.args=$PLUGIN/lib/reseed-tools-linux-amd64 -shellservice.name "reseed-tools-linux-amd64" -shellservice.displayname "Reseed Tools" reseed --yes --signer=you@mail.i2p --port=7671
|
||||||
|
^ change this line
|
||||||
|
clientApp.0.delay=86400
|
||||||
|
clientApp.0.startOnLoad=true
|
||||||
|
clientApp.0.classpath=$PLUGIN/lib/shellservice.jar</code></pre>
|
||||||
|
<p>into:</p>
|
||||||
|
<pre><code>clientApp.0.main=net.i2p.app.CorrectedShellService
|
||||||
|
clientApp.0.name=reseed-tools-linux-amd64
|
||||||
|
clientApp.0.args=$PLUGIN/lib/reseed-tools-linux-amd64 -shellservice.name "reseed-tools-linux-amd64" -shellservice.displayname "Reseed Tools" reseed --yes --signer=hankhill19580@gmail.com --port=7671
|
||||||
|
^ fill in your email
|
||||||
|
clientApp.0.delay=86400
|
||||||
|
^ remove this line when you're done
|
||||||
|
clientApp.0.startOnLoad=true
|
||||||
|
clientApp.0.classpath=$PLUGIN/lib/shellservice.jar</code></pre>
|
||||||
|
<p>This will allow the developers to contact you if your reseed has issues and authenticate your reseed.</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>darwin/amd64: <a href="http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3">http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3</a></li>
|
<li>darwin/amd64: <a href="http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3">http://idk.i2p/reseed-tools/reseed-tools-darwin-amd64.su3</a></li>
|
||||||
<li>darwin/arm64: <a href="http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3">http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3</a></li>
|
<li>darwin/arm64: <a href="http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3">http://idk.i2p/reseed-tools/reseed-tools-darwin-arm64.su3</a></li>
|
||||||
|
2
main.go
2
main.go
@@ -19,7 +19,7 @@ func main() {
|
|||||||
|
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "reseed-tools"
|
app.Name = "reseed-tools"
|
||||||
app.Version = "0.1.9"
|
app.Version = "0.2.9"
|
||||||
app.Usage = "I2P tools and reseed server"
|
app.Usage = "I2P tools and reseed server"
|
||||||
app.Author = "eyedeekay"
|
app.Author = "eyedeekay"
|
||||||
app.Email = "hankhill19580@gmail.com"
|
app.Email = "hankhill19580@gmail.com"
|
||||||
|
Reference in New Issue
Block a user