Skip to content

Commit

Permalink
Merge pull request #313 from acid-bong/patch-1
Browse files Browse the repository at this point in the history
src/get-facts.sh: remove the bashism
  • Loading branch information
Lassulus committed May 8, 2024
2 parents b965b37 + 2f5b494 commit 242444d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/get-facts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ is_kexec=$(if test -f /etc/is_kexec; then echo "y"; else echo "n"; fi)
is_nixos=$is_nixos
is_installer=$(if [ "$is_nixos" = "y" ] && grep -q VARIANT_ID=installer /etc/os-release; then echo "y"; else echo "n"; fi)
is_container=$(if [ "$(has systemd-detect-virt)" = "y" ]; then systemd-detect-virt --container; else echo "none"; fi)
has_ipv6_only=$(if [[ "$(has ip)" == "n" ]] || ip r g 1 >/dev/null 2>/dev/null || ! ip -6 r g :: >/dev/null 2>/dev/null; then echo "n"; else echo "y"; fi)
has_ipv6_only=$(if [ "$(has ip)" = "n" ] || ip r g 1 >/dev/null 2>/dev/null || ! ip -6 r g :: >/dev/null 2>/dev/null; then echo "n"; else echo "y"; fi)
has_tar=$(has tar)
has_sudo=$(has sudo)
has_doas=$(has doas)
Expand Down

0 comments on commit 242444d

Please sign in to comment.