Browse Source

Use /usr/bin/env instead of hardcoding bash path.

pull/779/head
Christopher Kobayashi 3 years ago
parent
commit
b8561d05eb
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      dns_scripts/dns_add_vultr
  2. +1
    -1
      dns_scripts/dns_del_vultr

+ 1
- 1
dns_scripts/dns_add_vultr View File

@ -1,4 +1,4 @@
#!/bin/bash
#! /usr/bin/env bash
# Vultr Add DNS Record
api_url="https://api.vultr.com/v2"


+ 1
- 1
dns_scripts/dns_del_vultr View File

@ -1,4 +1,4 @@
#!/bin/bash
#! /usr/bin/env bash
# Vultr Delete DNS Record
# This script requires jq to be installed on the machine running it


Loading…
Cancel
Save