7 lines
180 B
Plaintext
7 lines
180 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
apt -y update
|
||
|
apt -y upgrade
|
||
|
apt -y install $OPUS_PACKAGES
|
||
|
apt -y install --download-only $OPUS_PACKAGES_DL
|
||
|
apt -y remove $OPUS_PACKAGES_REMOVE
|
||
|
apt -y autoclean
|