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
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: tailscale | |
# Required-Start: $local_fs $all $network | |
# Required-Stop: | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: | |
# Short-Description: Tailscale daemon | |
# Description: Runs the tailscale daemon. | |
### END INIT INFO |
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
#!/bin/sh | |
set -ue | |
# Copyright 2021 Alin Mr. <[email protected]>. Licensed under the MIT license (https://opensource.org/licenses/MIT). | |
eval "${HYF_WR7PPER_ENV:-}" | |
set -- "${XDG_CONFIG_HOME:-$HOME/.config}"/hyperfine/hyf_wr7pper.env "$@" | |
! [ -r "$1" ] || . "$1" | |
shift | |
eval set -- "${HYF_WR7PPER_OPTS:-}" '"$@"' |