mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
* [ubuntu] Rename build scripts * [ubuntu] Change reboot to inline shell * [ubuntu] Move disk space validation to pester tests * [ubuntu] Rename helper and tests files * [ubuntu] Changes to cleanup, post-deployment and r scripts
10 lines
409 B
Bash
10 lines
409 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-apt-vital.sh
|
|
## Desc: Install vital command line utilities
|
|
################################################################################
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
vital_packages=$(get_toolset_value .apt.vital_packages[])
|
|
apt-get install -y --no-install-recommends $vital_packages
|