begin config cleanup

This commit is contained in:
idk
2019-08-25 19:20:54 -04:00
parent bd255b651b
commit 38a4e1b3ad
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,7 @@ network = host
samhost = sam-host samhost = sam-host
samport = 7656 samport = 7656
args = -r args = -r
USER_GH=eyedeekay
PREFIX := / PREFIX := /
VAR := var/ VAR := var/
@ -16,7 +17,7 @@ LOG := log/
ETC := etc/ ETC := etc/
USR := usr/ USR := usr/
LOCAL := local/ LOCAL := local/
VERSION := 0.1 VERSION := 0.32.0
GO111MODULE=on GO111MODULE=on
@ -222,3 +223,6 @@ tar:
--exclude .go \ --exclude .go \
--exclude bin \ --exclude bin \
-cJvf ../$(packagename)_$(VERSION).orig.tar.xz . -cJvf ../$(packagename)_$(VERSION).orig.tar.xz .
tag:
gothub release -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(packagename) -t v$(VERSION) -d "I2P Tunnel Management tool for Go applications"

View File

@ -62,6 +62,7 @@ type Conf struct {
exists bool exists bool
UserName string UserName string
Password string Password string
CryptFile string
} }
// Print returns and prints a formatted list of configured tunnel settings. // Print returns and prints a formatted list of configured tunnel settings.