Home
last modified time | relevance | path

Searched refs:caCertPath (Results 1 – 25 of 68) sorted by relevance

123

/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/acceptance-tests/actors/
H A Dboshcli.go16 func (BOSHCLI) DirectorExists(address, username, password, caCertPath string) (bool, error) {
18 "--ca-cert", caCertPath,
30 func (BOSHCLI) Env(address, caCertPath string) (string, error) {
32 "--ca-cert", caCertPath,
42 func (b BOSHCLI) CloudConfig(address, caCertPath, username, password string) (string, error) {
44 "--ca-cert", caCertPath,
58 "--ca-cert", caCertPath,
72 func (b BOSHCLI) UploadStemcell(address, caCertPath, username, password, stemcellURL string) error {
74 "--ca-cert", caCertPath,
88 func (b BOSHCLI) Stemcells(address, caCertPath, username, password string) ([]string, error) {
[all …]
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/machine/machine-7b7a141da844/libmachine/cert/
H A Dcert_test.go18 caCertPath := filepath.Join(tmpDir, "ca.pem")
22 if err := GenerateCACertificate(caCertPath, caKeyPath, testOrg, bits); err != nil {
26 if _, err := os.Stat(caCertPath); err != nil {
42 caCertPath := filepath.Join(tmpDir, "ca.pem")
48 if err := GenerateCACertificate(caCertPath, caKeyPath, testOrg, bits); err != nil {
52 if _, err := os.Stat(caCertPath); err != nil {
63 CAFile: caCertPath,
H A Dbootstrap.go15 caCertPath := authOptions.CaCertPath
38 if _, err := os.Stat(caCertPath); os.IsNotExist(err) {
39 log.Infof("Creating CA: %s", caCertPath)
46 if err := GenerateCACertificate(caCertPath, caPrivateKeyPath, caOrg, bits); err != nil {
74 CAFile: caCertPath,
/dports/sysutils/docker-machine/machine-0.16.2/libmachine/cert/
H A Dcert_test.go18 caCertPath := filepath.Join(tmpDir, "ca.pem")
22 if err := GenerateCACertificate(caCertPath, caKeyPath, testOrg, bits); err != nil {
26 if _, err := os.Stat(caCertPath); err != nil {
42 caCertPath := filepath.Join(tmpDir, "ca.pem")
48 if err := GenerateCACertificate(caCertPath, caKeyPath, testOrg, bits); err != nil {
52 if _, err := os.Stat(caCertPath); err != nil {
63 CAFile: caCertPath,
H A Dbootstrap.go14 caCertPath := authOptions.CaCertPath
17 log.Infof("Creating CA: %s", caCertPath)
24 if err := GenerateCACertificate(caCertPath, caPrivateKeyPath, caOrg, bits); err != nil {
33 caCertPath := authOptions.CaCertPath
60 CAFile: caCertPath,
76 caCertPath := authOptions.CaCertPath
99 if _, err := os.Stat(caCertPath); os.IsNotExist(err) {
104 current, err := CheckCertificateDate(caCertPath)
/dports/net/bosh-bootloader/bosh-bootloader-7.2.12/acceptance-tests/bbl/
H A Dup_and_down_test.go22 caCertPath string
73 caCertPath = bbl.SaveDirectorCA()
76 …sts, err := boshcli.DirectorExists(directorAddress, directorUsername, directorPassword, caCertPath)
86 …cloudConfig, err := boshcli.CloudConfig(directorAddress, caCertPath, directorUsername, directorPas…
94 …_, err := boshcli.RuntimeConfig(directorAddress, caCertPath, directorUsername, directorPassword, "…
124 caCertPath = bbl.SaveDirectorCA()
155 …err := boshcli.UploadStemcell(directorAddress, caCertPath, directorUsername, directorPassword, ste…
158 …stemcellIDs, err := boshcli.Stemcells(directorAddress, caCertPath, directorUsername, directorPassw…
/dports/net-mgmt/ocsinventory-ocsreports/ocsinventory-ocsreports/vendor/jasig/phpcas/source/CAS/Request/
H A DAbstractRequest.php49 protected $caCertPath = null; variable in CAS_Request_AbstractRequest
202 * @param string $caCertPath path to cert
208 public function setSslCaCert ($caCertPath,$validate_cn=true) argument
215 $this->caCertPath = $caCertPath;
H A DCurlRequest.php121 if ($this->caCertPath) {
128 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
129 phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath);
/dports/www/ilias/ILIAS-5.4.25/Services/CAS/lib/CAS/Request/
H A DAbstractRequest.php47 protected $caCertPath = null; variable in CAS_Request_AbstractRequest
200 * @param string $caCertPath path to cert
206 public function setSslCaCert($caCertPath, $validate_cn = true) argument
213 $this->caCertPath = $caCertPath;
H A DCurlRequest.php118 if ($this->caCertPath) {
125 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
126 phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath);
/dports/www/ilias6/ILIAS-6.14/Services/CAS/lib/CAS/Request/
H A DAbstractRequest.php47 protected $caCertPath = null; variable in CAS_Request_AbstractRequest
200 * @param string $caCertPath path to cert
206 public function setSslCaCert($caCertPath, $validate_cn = true) argument
213 $this->caCertPath = $caCertPath;
H A DCurlRequest.php118 if ($this->caCertPath) {
125 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
126 phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath);
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/jasig/phpcas/source/CAS/Request/
H A DAbstractRequest.php49 protected $caCertPath = null; variable in CAS_Request_AbstractRequest
202 * @param string $caCertPath path to cert
208 public function setSslCaCert ($caCertPath,$validate_cn=true) argument
215 $this->caCertPath = $caCertPath;
H A DCurlRequest.php121 if ($this->caCertPath) {
128 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
129 phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath);
/dports/www/moodle310/moodle/auth/cas/CAS/CAS/Request/
H A DAbstractRequest.php49 protected $caCertPath = null; variable in CAS_Request_AbstractRequest
202 * @param string $caCertPath path to cert
208 public function setSslCaCert ($caCertPath,$validate_cn=true) argument
215 $this->caCertPath = $caCertPath;
H A DCurlRequest.php121 if ($this->caCertPath) {
128 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
129 phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath);
/dports/www/moodle311/moodle/auth/cas/CAS/CAS/Request/
H A DAbstractRequest.php49 protected $caCertPath = null; variable in CAS_Request_AbstractRequest
202 * @param string $caCertPath path to cert
208 public function setSslCaCert ($caCertPath,$validate_cn=true) argument
215 $this->caCertPath = $caCertPath;
H A DCurlRequest.php121 if ($this->caCertPath) {
128 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
129 phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath);
/dports/www/moodle39/moodle/auth/cas/CAS/CAS/Request/
H A DAbstractRequest.php49 protected $caCertPath = null; variable in CAS_Request_AbstractRequest
202 * @param string $caCertPath path to cert
208 public function setSslCaCert ($caCertPath,$validate_cn=true) argument
215 $this->caCertPath = $caCertPath;
H A DCurlRequest.php121 if ($this->caCertPath) {
128 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
129 phpCAS::trace('CURL: Set CURLOPT_CAINFO ' . $this->caCertPath);
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/legacy-cloud-providers/vsphere/vclib/testdata/
H A DcreateCerts.sh80 local caCertPath="./ca.pem"
87 createCaCert "$caCertPath" "$caKeyPath"
90 signCSR "$serverCertPath" "$serverCsrPath" "$caCertPath" "$caKeyPath"
/dports/sysutils/kubectl/kubernetes-1.22.2/cmd/kubeadm/app/util/config/strict/testdata/
H A Dinvalid_duplicate_field_joincfg.yaml3 caCertPath: relativepath
4 caCertPath: relativepath
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/prometheus/prometheus/scrape/
H A Dtarget_test.go36 caCertPath = "testdata/ca.cer" const
235 CAFile: caCertPath,
267 CAFile: caCertPath,
297 CAFile: caCertPath,
326 CAFile: caCertPath,
343 caCert, err := ioutil.ReadFile(caCertPath)
/dports/sysutils/istio/istio-1.6.7/security/pkg/k8s/chiron/
H A Dutils.go141 func readCACert(caCertPath string) ([]byte, error) {
142 caCert, err := ioutil.ReadFile(caCertPath)
144 log.Errorf("failed to read CA cert, cert. path: %v, error: %v", caCertPath, err)
145 return nil, fmt.Errorf("failed to read CA cert, cert. path: %v, error: %v", caCertPath, err)
242 readInterval time.Duration, maxNumRead int, caCertPath string) ([]byte, []byte, error) {
296 caCert, err := readCACert(caCertPath)
/dports/net-mgmt/prometheus1/prometheus-1.8.2/retrieval/
H A Dtarget_test.go36 caCertPath = "testdata/ca.cer" const
239 CAFile: caCertPath,
271 CAFile: caCertPath,
301 CAFile: caCertPath,
330 CAFile: caCertPath,
347 caCert, err := ioutil.ReadFile(caCertPath)

123