Skip to content

Commit

Permalink
fix(pycloudlib): missing tar option to not restore file timestamp #613 (
Browse files Browse the repository at this point in the history
#627)

* fix(pycloudlib): missing tar option to not restore file timestamp #613

* chore(jans-pycloudlib): updated build (#628)

Signed-off-by: mo-auto <54212639+mo-auto@users.noreply.github.com>

* chore(jans-pycloudlib): updated build (#652)

Signed-off-by: mo-auto <54212639+mo-auto@users.noreply.github.com>

Co-authored-by: mo-auto <54212639+mo-auto@users.noreply.github.com>
  • Loading branch information
iromli and mo-auto committed Jan 20, 2022
1 parent b35d5e6 commit d19fbfd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docker-jans-auth-server/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion docker-jans-certmanager/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
click==6.7
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion docker-jans-client-api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ruamel.yaml==0.16.10
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion docker-jans-config-api/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion docker-jans-configurator/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ click==6.7
marshmallow==3.10.0
fqdn==1.4.0
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion docker-jans-fido2/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion docker-jans-persistence-loader/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ldif==4.1.1
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion docker-jans-scim/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
libcst<0.4
git+https://github.com/JanssenProject/jans-cloud-native@f415213cfd992363f3fb85005df16e963a6ed8ff#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
git+https://github.com/JanssenProject/jans@ec0787973077308ceeeb63b611bd8ec21fe1bbe4#egg=jans-pycloudlib&subdirectory=jans-pycloudlib
2 changes: 1 addition & 1 deletion jans-pycloudlib/jans/pycloudlib/meta/kubernetes_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def copy_to_container(self, container, path: str) -> None:
self.client.connect_get_namespaced_pod_exec,
container.metadata.name,
container.metadata.namespace,
command=["tar", "xvf", "-", "-C", "/"],
command=["tar", "xmvf", "-", "-C", "/"],
container=self._get_main_container_name(container),
stderr=True,
stdin=True,
Expand Down

0 comments on commit d19fbfd

Please sign in to comment.