summarylogtreecommitdiffstats
path: root/install.sh
blob: a0ac241d9fbff992615aa5ef28704f4d074743d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
_pkgname="skypeforlinux"
_userns="kernel.unprivileged_userns_clone"

post_install() {
    userns="$(sysctl -n $_userns 2>/dev/null)"
    if [[ $? -ne 0 || $userns -ne 1 ]]; then
	echo -ne "\e[34;1m"
	echo ===
	echo === !!! WARNING !!!
	echo ===
	echo === $_userns is not set on this system.
	echo === You will need to set it manually so $_pkgname can start.
	echo ===
    fi
}

post_upgrade() {
    post_install
}