diff options
| author | dd <dd@wx.tnyzeq.icu> | 2026-08-24 12:56:43 +0200 |
|---|---|---|
| committer | dd <dd@wx.tnyzeq.icu> | 2026-08-24 12:56:43 +0200 |
| commit | 93d3f030604552719adc762fa249144e6ee86ee3 (patch) | |
| tree | d5b58880fb761c57c5b8b1269a4a21ad92726285 /scripts | |
| download | vyos-modifyiso-93d3f030604552719adc762fa249144e6ee86ee3.tar.gz vyos-modifyiso-93d3f030604552719adc762fa249144e6ee86ee3.zip | |
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/example.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/example.sh b/scripts/example.sh new file mode 100644 index 0000000..7c3daa3 --- /dev/null +++ b/scripts/example.sh @@ -0,0 +1,14 @@ +#!/bin/sh +set -e + +# basics +export DEBIAN_FRONTEND=noninteractive +apt-get update +apt_install="apt-get install --no-upgrade -y" + +# example +$apt_install strace + +# cleanup +apt clean +rm -rf /var/lib/apt/lists/* |
