11 lines
374 B
Bash
11 lines
374 B
Bash
#!/bin/sh
|
|
# Fix locales - needed for Ubuntu containers
|
|
#wget http://git.groesz.org/wp/fixlocale/raw/branch/master/fixlocale.sh && sh fixlocale.sh
|
|
|
|
# update packages
|
|
#apt update
|
|
#DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
|
|
|
|
# bootstrap salt minion
|
|
#wget -O bootstrap-salt.sh -L https://bootstrap.saltproject.io && sh bootstrap-salt.sh -P -A saltmaster -i `hostname -s`
|