-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove PREREQ dropbear dependency in init-bottom; this is not needed for dropbear to work correctly. * Move initramfs scripts to `/etc/initramfs-tools` since there is no longer a dependency on the dropbear system package. * Update Makefile to handle new location and automatically remove the old location. * Added IPv6 DNS support if IPv6 use is detected. * Standardized, clarify code & documentation.
- Loading branch information
Showing
6 changed files
with
91 additions
and
100 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
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
#!/bin/sh | ||
|
||
PREREQ="dropbear" | ||
PREREQ="" | ||
|
||
prereqs() { | ||
echo "${PREREQ}" | ||
echo "${PREREQ}" | ||
} | ||
|
||
case "${1}" in | ||
prereqs) | ||
prereqs | ||
exit 0 | ||
;; | ||
prereqs) | ||
prereqs | ||
exit 0 | ||
;; | ||
esac | ||
|
||
. /scripts/functions | ||
|
||
. /etc/wireguard/config | ||
|
||
log_begin_msg 'Stopping wireguard boot network' | ||
ip link delete dev ${INTERFACE} | ||
log_end_msg |
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