Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cookbook
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
cookbook
Merge requests
!173
More patches to make-ca.sh for NixOS
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
More patches to make-ca.sh for NixOS
jD91mZM2/cookbook:make-ca-patch
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
jD91mZM2
requested to merge
jD91mZM2/cookbook:make-ca-patch
into
master
6 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
This fixes missing
.0
files
Edited
6 years ago
by
jD91mZM2
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
501b3af1
1 commit,
6 years ago
1 file
+
11
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
recipes/ca-certificates/make-ca.sh.patch
+
11
−
3
Options
diff -ru source/make-ca.sh source2/make-ca.sh
--- source/make-ca.sh 2018-08-25 17:38:12.512463896 +0200
--- source/make-ca.sh 2018-05-08 10:27:57.829291956 +0200
+++ build/make-ca.sh 2018-09-23 14:45:12.492919202 +0200
+++ source2/make-ca.sh 2018-05-08 10:33:58.040239253 +0200
@@ -1,4 +1,4 @@
@@ -1,4 +1,4 @@
-#!/bin/bash
-#!/bin/bash
+#!/usr/bin/env bash
+#!/usr/bin/env bash
@@ -20,3 +19,12 @@ diff -ru source/make-ca.sh source2/make-ca.sh
@@ -20,3 +19,12 @@ diff -ru source/make-ca.sh source2/make-ca.sh
ANCHORDIR="${PKIDIR}/anchors"
ANCHORDIR="${PKIDIR}/anchors"
CABUNDLE="${SSLDIR}/ca-bundle.crt"
CABUNDLE="${SSLDIR}/ca-bundle.crt"
CERTDIR="${SSLDIR}/certs"
CERTDIR="${SSLDIR}/certs"
@@ -723,7 +723,7 @@
unset cert
fi
-/usr/bin/c_rehash "${DESTDIR}${CERTDIR}" 2>&1>/dev/null
+c_rehash "${DESTDIR}${CERTDIR}" 2>&1>/dev/null
popd > /dev/null
# Clean up the mess
Loading