summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorIsmael Luceno2022-08-08 20:27:41 +0200
committerIsmael Luceno2022-08-08 21:26:52 +0200
commit03d8a18b6273e0ec0b932b798101baae9dff9f5d (patch)
tree14c80101ff4e6d312bd32680f1c72e3c4e17faf6 /net
parentaaf7d7e90c1f1a42f15526d11f1aff8c5e7bc50c (diff)
stunnel: Merge sedit commands into one
Diffstat (limited to 'net')
-rw-r--r--net/stunnel/HISTORY3
-rwxr-xr-xnet/stunnel/INSTALL14
2 files changed, 11 insertions, 6 deletions
diff --git a/net/stunnel/HISTORY b/net/stunnel/HISTORY
index b58780e80f..061cb48c0b 100644
--- a/net/stunnel/HISTORY
+++ b/net/stunnel/HISTORY
@@ -1,3 +1,6 @@
+2022-08-08 Ismael Luceno <ismael@sourcemage.org>
+ * INSTALL: merged sedit commands into one
+
2015-04-22 Vlad Glagolev <stealth@sourcemage.org>
* DETAILS: updated spell to 5.14; SECURITY_PATCH++
* stunnel.gpg: added DD3AAAA3 public key (MichaƂ Trojnara
diff --git a/net/stunnel/INSTALL b/net/stunnel/INSTALL
index 5ce2699c5d..2bd0f43579 100755
--- a/net/stunnel/INSTALL
+++ b/net/stunnel/INSTALL
@@ -1,11 +1,13 @@
local STUNNEL_CNF="tools/stunnel.cnf" &&
-sedit "s:^countryName_default.*:countryName_value = $COUNTRY_NAME:" $STUNNEL_CNF &&
-sedit "s:^stateOrProvinceName_default.*:stateOrProvinceName_value = $PROVINCE_NAME:" $STUNNEL_CNF &&
-sedit "s:^localityName_default.*:localityName_value = $LOCALITY_NAME:" $STUNNEL_CNF &&
-sedit "s:^organizationName_default.*:organizationName_value = $ORG_NAME:" $STUNNEL_CNF &&
-sedit "s:^organizationalUnitName_default.*:organizationalUnitName_value = $ORG_UNIT_NAME:" $STUNNEL_CNF &&
-sedit "s:^0\.commonName_default.*:0\.commonName_value = $COMMON_NAME:" $STUNNEL_CNF &&
+sedit "
+ s:^countryName_default.*:countryName_value = $COUNTRY_NAME:
+ s:^stateOrProvinceName_default.*:stateOrProvinceName_value = $PROVINCE_NAME:
+ s:^localityName_default.*:localityName_value = $LOCALITY_NAME:
+ s:^organizationName_default.*:organizationName_value = $ORG_NAME:
+ s:^organizationalUnitName_default.*:organizationalUnitName_value = $ORG_UNIT_NAME:
+ s:^0\.commonName_default.*:0\.commonName_value = $COMMON_NAME:
+" "$STUNNEL_CNF" &&
default_install &&