MCPcopy Create free account
hub / github.com/apache/httpd / get_apxs_var

Method get_apxs_var

test/modules/md/md_env.py:147–151  ·  view source on GitHub ↗
(self, name: str)

Source from the content-addressed store, hash-verified

145 "-d", self._store_dir, "-C", self.acme_ca_pemfile])
146
147 def get_apxs_var(self, name: str) -> str:
148 p = subprocess.run([self._apxs, "-q", name], capture_output=True, text=True)
149 if p.returncode != 0:
150 return ""
151 return p.stdout.strip()
152
153 @property
154 def acme_server(self):

Callers

nothing calls this directly

Calls 1

runMethod · 0.45

Tested by

no test coverage detected