summarylogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorMark Blakeney2019-08-21 10:06:02 +1000
committerMark Blakeney2019-08-21 10:06:02 +1000
commit57c6024d620b6a23676989324e883c3a4a176621 (patch)
treeae282a3815f47ee9b8f51c59afa06a2778400df4 /install.sh
parentbc6789d5845df691fab73a7ca7bc44c76047f837 (diff)
downloadaur-57c6024d620b6a23676989324e883c3a4a176621.tar.gz
Warn if kernel.unprivileged_userns_clone not set
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/install.sh b/install.sh
new file mode 100644
index 000000000000..a0ac241d9fbf
--- /dev/null
+++ b/install.sh
@@ -0,0 +1,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
+}