mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 08:12:15 -04:00
Support for Manjaro Linux
This commit is contained in:
parent
703254b95c
commit
49b6f37e77
4 changed files with 24 additions and 15 deletions
19
bootstrap/_arch_common.sh
Executable file
19
bootstrap/_arch_common.sh
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Tested with:
|
||||
# - Manjaro 15.09 (x86_64)
|
||||
# - ArchLinux (x86_64)
|
||||
|
||||
# "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 \
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
# "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 \
|
||||
1
bootstrap/archlinux.sh
Symbolic link
1
bootstrap/archlinux.sh
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
_arch_common.sh
|
||||
1
bootstrap/manjaro.sh
Symbolic link
1
bootstrap/manjaro.sh
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
_arch_common.sh
|
||||
|
|
@ -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/manjaro.sh
|
||||
elif [ -f /etc/redhat-release ] ; then
|
||||
echo "Bootstrapping dependencies for RedHat-based OSes..."
|
||||
$SUDO $BOOTSTRAP/_rpm_common.sh
|
||||
|
|
|
|||
Loading…
Reference in a new issue