Subversion Repositories ALCASAR

Rev

Rev 2304 | Rev 2314 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 2304 Rev 2308
Line 1... Line 1...
1
#!/bin/bash
1
#!/bin/bash
2
#  $Id: alcasar.sh 2304 2017-06-26 12:56:14Z tom.houdayer $ 
2
#  $Id: alcasar.sh 2308 2017-06-26 14:30:48Z tom.houdayer $ 
3
 
3
 
4
# alcasar.sh
4
# alcasar.sh
5
 
5
 
6
# ALCASAR Install script -  CopyLeft ALCASAR Team [Rexy + 3abtux + Steweb + Crox + ...] 
6
# ALCASAR Install script -  CopyLeft ALCASAR Team [Rexy + 3abtux + Steweb + Crox + ...] 
7
# Ce programme est un logiciel libre ; This software is free and open source
7
# Ce programme est un logiciel libre ; This software is free and open source
Line 2014... Line 2014...
2014
		--config-home $acmesh_confDir/data \
2014
		--config-home $acmesh_confDir/data \
2015
		--certhome $acmesh_confDir/certs \
2015
		--certhome $acmesh_confDir/certs \
2016
		--accountkey $acmesh_confDir/ca/account.key \
2016
		--accountkey $acmesh_confDir/ca/account.key \
2017
		--accountconf $acmesh_confDir/data/account.conf \
2017
		--accountconf $acmesh_confDir/data/account.conf \
2018
		--useragent $acmesh_userAgent \
2018
		--useragent $acmesh_userAgent \
2019
		--nocron
2019
		--nocron \
-
 
2020
		> /dev/null
2020
 
2021
 
2021
	if [ $? -ne 0 ]; then
2022
	if [ $? -ne 0 ]; then
2022
		echo "Error during installation of Let's Encrypt client (acme.sh)."
2023
		echo "Error during installation of Let's Encrypt client (acme.sh)."
2023
	fi
2024
	fi
2024
 
2025