From 95a6b8cbadbc2aa60bcaac4cf97729bf352a15d3 Mon Sep 17 00:00:00 2001 From: Damian Duesentrieb Date: Sun, 25 Oct 2015 21:28:19 +0100 Subject: [PATCH] Added support for Manjaro Linux in install-script --- bootstrap/manjaro.sh | 19 +++++++++++++++++++ letsencrypt-auto | 3 +++ 2 files changed, 22 insertions(+) create mode 100755 bootstrap/manjaro.sh diff --git a/bootstrap/manjaro.sh b/bootstrap/manjaro.sh new file mode 100755 index 000000000..18564cac9 --- /dev/null +++ b/bootstrap/manjaro.sh @@ -0,0 +1,19 @@ +#!/bin/sh + +# Manjaros package-management is very similiar to Arch-Linux. +# Therefore this script is currently identical to . +# This must not hold in future. + +# "python-virtualenv" is Python3, but "python2-virtualenv" provides +# only "virtualenv2" binary, not "virtualenv" necessary in +# ./bootstrap/dev/_common_venv.sh +pacman -S --needed \ + git \ + python2 \ + python-virtualenv \ + gcc \ + dialog \ + augeas \ + openssl \ + libffi \ + ca-certificates \ diff --git a/letsencrypt-auto b/letsencrypt-auto index 5b974c1f8..79d2b0501 100755 --- a/letsencrypt-auto +++ b/letsencrypt-auto @@ -41,6 +41,9 @@ then elif [ -f /etc/arch-release ] ; then echo "Bootstrapping dependencies for Archlinux..." $SUDO $BOOTSTRAP/archlinux.sh + elif [ -f /etc/manjaro-release ] ; then + echo "Bootstrapping dependencies for Manjaro linux..." + $SUDO $BOOTSTRAP/archlinux.sh elif [ -f /etc/redhat-release ] ; then echo "Bootstrapping dependencies for RedHat-based OSes..." $SUDO $BOOTSTRAP/_rpm_common.sh