7c642067ac
All checks were successful
PikaOS Package Build & Release (amd64-v3) / build (push) Successful in 1m44s
12 lines
136 B
Bash
Executable File
12 lines
136 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$1" == "install" ]]
|
|
then
|
|
apt install -y ${@:2}
|
|
else
|
|
apt remove -y ${@:2}
|
|
apt autoremove -y
|
|
fi
|
|
exit 0 |