12 lines
213 B
Bash
12 lines
213 B
Bash
#!/bin/bash
|
|
set -e
|
|
source /build/config
|
|
set -x
|
|
|
|
## Often used tools
|
|
apt_get_install_permanent curl python-pip git
|
|
apt_get_install_temporary inetutils-ping telnet
|
|
|
|
## Often used python modules
|
|
pip install argparse
|