forked from zerotier/ZeroTierOne
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into central-controller
- Loading branch information
Showing
27 changed files
with
3,303 additions
and
2,393 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: badstrings | ||
on: [pull_request, push] | ||
jobs: | ||
badstrings: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: scanning commit message for bad strings | ||
run: | | ||
#!/bin/bash | ||
set -euo pipefail | ||
IFS=$'\n\t' | ||
message="${{ github.event.head_commit.message }}" | ||
strings=($(curl -s https://raw.githubusercontent.com/someara/badstrings/main/strings.txt)) | ||
for i in ${strings[@]} ; do | ||
echo "${message}" | grep -v "$i" &>/dev/null; | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# vim: ft=dockerfile | ||
|
||
FROM ubuntu:21.04 as stage | ||
|
||
RUN apt-get update -qq && apt-get -qq install make clang | ||
COPY . . | ||
RUN /usr/bin/make | ||
RUN echo $PWD | ||
RUN cp zerotier-one /usr/sbin | ||
|
||
FROM ubuntu:21.04 | ||
|
||
COPY --from=stage /zerotier-one /usr/sbin | ||
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-idtool | ||
RUN ln -sf /usr/sbin/zerotier-one /usr/sbin/zerotier-cli | ||
|
||
RUN echo "${VERSION}" > /etc/zerotier-version | ||
RUN rm -rf /var/lib/zerotier-one | ||
|
||
|
||
RUN apt-get -qq update | ||
RUN apt-get -qq install iproute2 net-tools fping 2ping iputils-ping iputils-arping | ||
|
||
COPY entrypoint.sh.release /entrypoint.sh | ||
RUN chmod 755 /entrypoint.sh | ||
|
||
CMD [] | ||
ENTRYPOINT ["/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
zerotier-one (1.7.1) unstable; urgency=medium | ||
zerotier-one (1.8.0) unstable; urgency=medium | ||
|
||
* Version 1.8.0 PRE-release, beta testing. | ||
* See RELEASE-NOTES.md for release notes. | ||
|
||
-- Adam Ierymenko <[email protected]> Tue, 23 Aug 2021 01:00:00 -0700 | ||
-- Adam Ierymenko <[email protected]> Wed, 15 Sep 2021 01:00:00 -0700 | ||
|
||
zerotier-one (1.6.5) unstable; urgency=medium | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.