Enhance bash shebangs
This commit is contained in:
parent
8b3e09d41c
commit
b5f302ac61
24 changed files with 24 additions and 24 deletions
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash -e
|
||||
#!/usr/bin/env bash -e
|
||||
#-e Causes bash script to exit if any of the installers
|
||||
#return with a non-zero return value.
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Additional Repos
|
||||
yum install -y epel-release
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
DEBIAN_FRONTEND=noninteractive apt-get -y install alsa-utils
|
||||
usermod -a -G audio vagrant
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue