-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
enabling support for wireguard and firewall #2713
Open
dr-bonez
wants to merge
31
commits into
next/minor
Choose a base branch
from
feature/wireguard-and-firewall
base: next/minor
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
0e0b7b8
wip: enabling support for wireguard and firewall
dr-bonez 1743b37
Merge branch 'next/minor' of github.com:Start9Labs/start-os into feat…
dr-bonez 25aa627
wip
dr-bonez e950c5e
wip
dr-bonez 9735a32
wip
dr-bonez 1079ca2
wip
dr-bonez fb76877
wip
dr-bonez 8af5f6d
implement some things
dr-bonez def6699
fix warning
dr-bonez 821460e
wip
dr-bonez e8895e4
Merge branch 'next/minor' of github.com:Start9Labs/start-os into feat…
dr-bonez 17d5d1c
alpha.23
dr-bonez cf1eefd
misc fixes
dr-bonez 637b2ad
Merge branch 'next/minor' of github.com:Start9Labs/start-os into feat…
dr-bonez eb5de04
remove ufw since no longer required
dr-bonez d5fe527
remove debug info
dr-bonez 309798b
add cli bindings
dr-bonez 8f68822
debugging
dr-bonez 282a451
Merge branch 'next/minor' of github.com:Start9Labs/start-os into feat…
dr-bonez 1c90ddb
fixes
dr-bonez a1b4311
individualized acme and privacy settings for domains and bindings
dr-bonez 926ef71
sdk version bump
dr-bonez 5908ec4
migration
dr-bonez 3fe54fc
misc fixes
dr-bonez 79725c8
refactor Host::update
dr-bonez 4a0716c
debug info
dr-bonez c8c5ee0
refactor webserver
dr-bonez 7546c36
misc fixes
dr-bonez b249269
misc fixes
dr-bonez 181d9f1
refactor port forwarding
dr-bonez d9a01e2
recheck interfaces every 5 min if no dbus event
dr-bonez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ set -e | |
|
||
# install dependencies | ||
/usr/bin/apt update | ||
/usr/bin/apt install --no-install-recommends -y xserver-xorg x11-xserver-utils xinit firefox-esr matchbox-window-manager libnss3-tools | ||
/usr/bin/apt install --no-install-recommends -y xserver-xorg x11-xserver-utils xinit firefox-esr matchbox-window-manager libnss3-tools p11-kit-modules | ||
|
||
#Change a default preference set by stock debian firefox-esr | ||
sed -i 's|^pref("extensions.update.enabled", true);$|pref("extensions.update.enabled", false);|' /etc/firefox-esr/firefox-esr.js | ||
|
@@ -83,6 +83,9 @@ user_pref("toolkit.telemetry.updatePing.enabled", false); | |
user_pref("toolkit.telemetry.cachedClientID", ""); | ||
EOF | ||
|
||
cp /usr/lib/firefox-esr/libnssckbi.so /usr/lib/firefox-esr/libnssckbi.so.bak | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🤷♀️ why? |
||
ln -sf /usr/lib/x86_64-linux-gnu/pkcs11/p11-kit-trust.so /usr/lib/firefox-esr/libnssckbi.so | ||
|
||
# create kiosk script | ||
cat > /home/kiosk/kiosk.sh << 'EOF' | ||
#!/bin/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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📓 https://en.wikipedia.org/wiki/PKCS_11