Apt should fail fast (and report) instead of forcing a broken installation. The version check is also not required anymore as most distribution now provide an apt version > 1.1.
6 lines
131 B
Bash
Executable File
6 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get -y install alsa-utils
|
|
usermod -a -G audio vagrant
|
|
usermod -a -G audio www-data
|