mirror of https://github.com/tp4a/teleport
temp.
parent
eb39a062e5
commit
2ce6d4beda
|
@ -107,6 +107,13 @@ def clean_everything():
|
|||
utils.remove(os.path.join(env.root_path, 'external', 'python'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'libssh-win-static', 'lib'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'libssh-win-static', 'src'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'linux', 'tmp'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'linux', 'release', 'lib', 'libmbedcrypto.a'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'linux', 'release', 'lib', 'libmbedtls.a'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'linux', 'release', 'lib', 'libmbedx509.a'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'linux', 'release', 'lib', 'libsqlite3.a'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'linux', 'release', 'lib', 'libssh.a'))
|
||||
utils.remove(os.path.join(env.root_path, 'external', 'linux', 'release', 'lib', 'libuv.a'))
|
||||
|
||||
|
||||
def do_opt(opt):
|
||||
|
|
|
@ -29,3 +29,4 @@ wget = C:\Program Files (x86)\wget\wget.exe
|
|||
|
||||
# if not set cmake path, default to '/usr/bin/cmake'
|
||||
cmake = /opt/cmake/bin/cmake
|
||||
|
||||
|
|
|
@ -517,7 +517,7 @@ class InstallerLinux(InstallerBase):
|
|||
|
||||
def _fix_path(self):
|
||||
self._config_path = '/etc/teleport'
|
||||
self._data_path = os.path.join('/var/teleport')
|
||||
self._data_path = os.path.join('/var/lib/teleport')
|
||||
self._log_path = os.path.join('/var/log/teleport')
|
||||
|
||||
def _copy_files(self):
|
||||
|
|
Loading…
Reference in New Issue