12345678910111213141516171819 |
- # check if ubuntu/debain
- if [ -f /etc/debian_version ]; then
- sudo apt-get install pkg-config gcc libseccomp-dev
- # check if fedora
- elif [ -f /etc/fedora-release ]; then
- sudo dnf install pkgconfig gcc libseccomp-devel
- # check if arch
- elif [ -f /etc/arch-release ]; then
- sudo pacman -S pkg-config gcc libseccomp
- # check if alpine
- elif [ -f /etc/alpine-release ]; then
- sudo apk add pkgconfig gcc libseccomp-dev
- # check if centos
- elif [ -f /etc/centos-release ]; then
- sudo yum install pkgconfig gcc libseccomp-devel
- else
- echo "Unsupported distribution"
- exit 1
- fi
|