Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mybee
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
mybee
Commits
f53d25a4
Unverified
Commit
f53d25a4
authored
Nov 24, 2020
by
Ivan Vandot
Committed by
GitHub
Nov 24, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nicer package post install output (#1013)
parent
d85169e0
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
6 deletions
+19
-6
.goreleaser.yml
.goreleaser.yml
+3
-1
bee-get-addr
packaging/bee-get-addr
+1
-1
postinst
packaging/deb/postinst
+7
-2
bee-get-addr
packaging/homebrew/bee-get-addr
+2
-1
post
packaging/rpm/post
+6
-1
No files found.
.goreleaser.yml
View file @
f53d25a4
...
@@ -127,7 +127,9 @@ brews:
...
@@ -127,7 +127,9 @@ brews:
Bee has SWAP enabled by default and it needs ethereum endpoint to operate.
Bee has SWAP enabled by default and it needs ethereum endpoint to operate.
It is recommended to use external signer with bee.
It is recommended to use external signer with bee.
Check documentation for more info https://docs.ethswarm.org/
Check documentation for more info:
- SWAP https://docs.ethswarm.org/docs/installation/manual#swap-bandwidth-incentives
- External signer https://docs.ethswarm.org/docs/installation/bee-clef
After you finish configuration run 'bee-get-addr'.
After you finish configuration run 'bee-get-addr'.
test
:
|
test
:
|
...
...
packaging/bee-get-addr
View file @
f53d25a4
...
@@ -21,7 +21,7 @@ After you fix configuration run 'sudo bee-get-addr' again.
...
@@ -21,7 +21,7 @@ After you fix configuration run 'sudo bee-get-addr' again.
ETH_ADDRESS
=
$(
echo
"
$RESP
"
|
grep
ethereum |
cut
-d
' '
-f6
|
tr
-d
'"'
)
ETH_ADDRESS
=
$(
echo
"
$RESP
"
|
grep
ethereum |
cut
-d
' '
-f6
|
tr
-d
'"'
)
echo
"
echo
"
Please make sure there is sufficient eth and bzz available on
$ETH_ADDRESS
address.
Please make sure there is sufficient eth and bzz available on
$ETH_ADDRESS
address.
You can get both goerli eth and goerli bzz from https://faucet.ethswarm.org
You can get both goerli eth and goerli bzz from https://faucet.ethswarm.org
?address=
$ETH_ADDRESS
After you get the funds start service with 'systemctl start bee.service'.
After you get the funds start service with 'systemctl start bee.service'.
"
"
...
...
packaging/deb/postinst
View file @
f53d25a4
...
@@ -8,9 +8,14 @@ if [ "$1" = "configure" ]; then
...
@@ -8,9 +8,14 @@ if [ "$1" = "configure" ]; then
chown
-R
bee:bee /var/lib/bee/keys
chown
-R
bee:bee /var/lib/bee/keys
fi
fi
echo
"
echo
"
Logs: journalctl -f -u bee.service
Config: /etc/bee/bee.yaml
Bee has SWAP enabled by default and it needs ethereum endpoint to operate.
Bee has SWAP enabled by default and it needs ethereum endpoint to operate.
It is recommended to use external signer with bee.
It is recommended to use external signer with bee.
Check documentation for more info https://docs.ethswarm.org/
Check documentation for more info:
- SWAP https://docs.ethswarm.org/docs/installation/manual#swap-bandwidth-incentives
- External signer https://docs.ethswarm.org/docs/installation/bee-clef
After you finish configuration run 'sudo bee-get-addr'.
After you finish configuration run 'sudo bee-get-addr'.
"
"
...
...
packaging/homebrew/bee-get-addr
View file @
f53d25a4
...
@@ -13,7 +13,8 @@ After you fix configuration run 'bee-get-addr' again.
...
@@ -13,7 +13,8 @@ After you fix configuration run 'bee-get-addr' again.
ETH_ADDRESS
=
$(
echo
"
$RESP
"
|
grep
ethereum |
cut
-d
' '
-f6
|
tr
-d
'"'
)
ETH_ADDRESS
=
$(
echo
"
$RESP
"
|
grep
ethereum |
cut
-d
' '
-f6
|
tr
-d
'"'
)
echo
"
echo
"
Please make sure there is sufficient eth and bzz available on
$ETH_ADDRESS
address.
Please make sure there is sufficient eth and bzz available on
$ETH_ADDRESS
address.
You can get both goerli eth and goerli bzz from https://faucet.ethswarm.org
You can get both goerli eth and goerli bzz from https://faucet.ethswarm.org?address=
$ETH_ADDRESS
After you get the funds start service with 'brew services start swarm-bee'.
After you get the funds start service with 'brew services start swarm-bee'.
"
"
;;
;;
...
...
packaging/rpm/post
View file @
f53d25a4
...
@@ -7,9 +7,14 @@ if [ $1 -eq 1 ] ; then
...
@@ -7,9 +7,14 @@ if [ $1 -eq 1 ] ; then
systemctl --no-reload preset bee.service &>/dev/null || :
systemctl --no-reload preset bee.service &>/dev/null || :
systemctl --no-reload enable bee.service &>/dev/null || :
systemctl --no-reload enable bee.service &>/dev/null || :
echo "
echo "
Logs: journalctl -f -u bee.service
Config: /etc/bee/bee.yaml
Bee has SWAP enabled by default and it needs ethereum endpoint to operate.
Bee has SWAP enabled by default and it needs ethereum endpoint to operate.
It is recommended to use external signer with bee.
It is recommended to use external signer with bee.
Check documentation for more info https://docs.ethswarm.org/
Check documentation for more info:
- SWAP https://docs.ethswarm.org/docs/installation/manual#swap-bandwidth-incentives
- External signer https://docs.ethswarm.org/docs/installation/bee-clef
After you finish configuration run 'sudo bee-get-addr'.
After you finish configuration run 'sudo bee-get-addr'.
"
"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment