From 5c59a9b1b516b378561b864868f6c81e1c9a416b Mon Sep 17 00:00:00 2001 From: Chris Mucciolo Date: Thu, 1 Aug 2024 16:01:55 -0400 Subject: [PATCH] stripped script headers --- Cargo.toml | 29 ----------------------------- Makefile | 17 ++++++++++------- auraed/Cargo.toml | 29 ----------------------------- auraescript/Cargo.toml | 29 ----------------------------- auraescript/default.config.toml | 29 ----------------------------- hack/certgen | 31 +------------------------------ hack/certgen-client | 31 +------------------------------ hack/code-format | 32 +------------------------------- hack/common | 32 +------------------------------- hack/container | 33 +-------------------------------- hack/file-definitions | 4 +++- hack/oci-alpine | 29 ----------------------------- hack/oci-busybox | 29 ----------------------------- hack/serve.sh | 31 +------------------------------ hack/server-tls-info | 29 ----------------------------- hack/spawn | 31 +------------------------------ proto/Cargo.toml | 29 ----------------------------- 17 files changed, 20 insertions(+), 454 deletions(-) mode change 100755 => 100644 hack/certgen mode change 100755 => 100644 hack/certgen-client mode change 100755 => 100644 hack/code-format mode change 100755 => 100644 hack/common mode change 100755 => 100644 hack/container mode change 100755 => 100644 hack/oci-alpine mode change 100755 => 100644 hack/oci-busybox mode change 100755 => 100644 hack/serve.sh mode change 100755 => 100644 hack/server-tls-info mode change 100755 => 100644 hack/spawn diff --git a/Cargo.toml b/Cargo.toml index 1419993cb..8cdf746a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,32 +1,3 @@ -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # [workspace] members = ["aer", "auraed", "auraescript", "client", "ebpf-shared", "proto"] diff --git a/Makefile b/Makefile index 18e288794..16e54ced6 100644 --- a/Makefile +++ b/Makefile @@ -447,13 +447,16 @@ fmt: headers ## Format the entire code base(s) # writes license headers to files that are missing them. from the root of the # repo, you can run `DRY_RUN=1 ./hack/headers-write` manually in case you are # unsure what the script is going to do -.PHONY: headers -headers: - ./hack/source-headers-write - -# strip old headers -.PHONY: headers-strip -headers-strip: ; ./hack/source-headers-strip +.PHONY: headers script-headers-write source-headers-write +headers: script-headers-write source-headers-write +script-headers-write: ; ./hack/script-headers-write +source-headers-write: ; ./hack/source-headers-write + +# strip old headers from source and scripts +.PHONY: headers-strip script-headers-strip source-headers-strip +headers-strip: source-headers-strip script-headers-strip +script-headers-strip: ; ./hack/script-headers-strip +source-headers-strip: ; ./hack/source-headers-strip .PHONY: check-deps check-deps: musl $(GEN_TS) $(GEN_RS) ## Check if there are any unused dependencies in Cargo.toml diff --git a/auraed/Cargo.toml b/auraed/Cargo.toml index f56fed1ad..8ba10e299 100644 --- a/auraed/Cargo.toml +++ b/auraed/Cargo.toml @@ -1,32 +1,3 @@ -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # [package] name = "auraed" diff --git a/auraescript/Cargo.toml b/auraescript/Cargo.toml index 32beccc9d..40f731b68 100644 --- a/auraescript/Cargo.toml +++ b/auraescript/Cargo.toml @@ -1,32 +1,3 @@ -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # [package] name = "auraescript" diff --git a/auraescript/default.config.toml b/auraescript/default.config.toml index 52bcaf812..961669c71 100644 --- a/auraescript/default.config.toml +++ b/auraescript/default.config.toml @@ -1,32 +1,3 @@ -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # # Client Cert Material diff --git a/hack/certgen b/hack/certgen old mode 100755 new mode 100644 index 56e63899a..ea5b2ff95 --- a/hack/certgen +++ b/hack/certgen @@ -1,33 +1,4 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # # set -e echo "" @@ -87,4 +58,4 @@ openssl verify -CAfile "./pki/ca.crt" "./pki/_signed.server.crt" 1>/dev/null && echo "x509 Version Numbers: " openssl x509 -noout -text -in "./pki/_signed.server.crt" | grep "Version" openssl x509 -noout -text -in "./pki/_signed.client.unsafe.crt" | grep "Version" -echo "" +echo "" \ No newline at end of file diff --git a/hack/certgen-client b/hack/certgen-client old mode 100755 new mode 100644 index b426ee009..d7a3f4f28 --- a/hack/certgen-client +++ b/hack/certgen-client @@ -1,33 +1,4 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # # set -e # certgen-client assumes certgen has been ran @@ -63,4 +34,4 @@ openssl x509 \ ## Verify the client material is signed echo " -> Verify Client Material (Root CA): client.${NAME}.csr..." -openssl verify -CAfile "./pki/ca.crt" "./pki/_signed.client.${NAME}.crt" 1>/dev/null && echo " -> Root Verification: Success!" +openssl verify -CAfile "./pki/ca.crt" "./pki/_signed.client.${NAME}.crt" 1>/dev/null && echo " -> Root Verification: Success!" \ No newline at end of file diff --git a/hack/code-format b/hack/code-format old mode 100755 new mode 100644 index 9e4a84022..b0a33dab4 --- a/hack/code-format +++ b/hack/code-format @@ -1,33 +1,4 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # D=$(pwd) if [[ $D == *"hack"* ]]; then @@ -52,5 +23,4 @@ echo "" rustfmt --edition=2021 ${RUSTSOURCES} ## Protobuf -clang-format -i ./auraed/proto/*.proto - +clang-format -i ./auraed/proto/*.proto \ No newline at end of file diff --git a/hack/common b/hack/common old mode 100755 new mode 100644 index f39738163..e719f27bc --- a/hack/common +++ b/hack/common @@ -1,33 +1,4 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # D=$(pwd) if [[ D == *"hack"* ]]; then @@ -41,5 +12,4 @@ if [[ D == *"hack"* ]]; then exit 99 fi -# This script assumes running from the top level directory within a Makefile - +# This script assumes running from the top level directory within a Makefile \ No newline at end of file diff --git a/hack/container b/hack/container old mode 100755 new mode 100644 index f3e60272c..4b4b28fd0 --- a/hack/container +++ b/hack/container @@ -1,38 +1,7 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # sha=$(git rev-parse HEAD) sudo -E docker build -t krisnova/aurae:latest -t krisnova/aurae:$sha -f images/Dockerfile.nested . sudo -E docker push krisnova/aurae:latest -sudo -E docker push krisnova/aurae:$sha - - +sudo -E docker push krisnova/aurae:$sha \ No newline at end of file diff --git a/hack/file-definitions b/hack/file-definitions index 6c4d00fe9..2912f8bc8 100644 --- a/hack/file-definitions +++ b/hack/file-definitions @@ -41,7 +41,9 @@ HACKSCRIPTS=$(find -s hack -type f -not \( \ -name 'certgen.client.ext' -or \ -name 'certgen.server.ext' -or \ -name '.header.script' -or \ - -name '.header.source' \ + -name '.header.script.strip' -or \ + -name '.header.source' -or \ + -name '.header.source.strip' \ \)) ### Define Sources diff --git a/hack/oci-alpine b/hack/oci-alpine old mode 100755 new mode 100644 index 2fd3cdc3c..ead5e6e34 --- a/hack/oci-alpine +++ b/hack/oci-alpine @@ -1,33 +1,4 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # rm -rf target/alpine mkdir -p target/alpine/rootfs diff --git a/hack/oci-busybox b/hack/oci-busybox old mode 100755 new mode 100644 index d7ca99d4b..ace4421fa --- a/hack/oci-busybox +++ b/hack/oci-busybox @@ -1,33 +1,4 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # rm -rf target/busybox mkdir -p target/busybox/rootfs diff --git a/hack/serve.sh b/hack/serve.sh old mode 100755 new mode 100644 index d10cc7a35..7b19182f7 --- a/hack/serve.sh +++ b/hack/serve.sh @@ -1,35 +1,6 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # docker run --rm -it \ -p 8000:8000 \ -v $PWD:/docs:ro \ - squidfunk/mkdocs-material + squidfunk/mkdocs-material \ No newline at end of file diff --git a/hack/server-tls-info b/hack/server-tls-info old mode 100755 new mode 100644 index 043ff3442..3a4870a14 --- a/hack/server-tls-info +++ b/hack/server-tls-info @@ -1,32 +1,3 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # openssl s_client -showcerts -unix /var/run/aurae/aurae.sock \ No newline at end of file diff --git a/hack/spawn b/hack/spawn old mode 100755 new mode 100644 index 17327439c..527247969 --- a/hack/spawn +++ b/hack/spawn @@ -1,33 +1,4 @@ #!/usr/bin/env bash -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # CID="aurae-spawn-hack" BUNDLE="target/aurae-spawn" @@ -45,4 +16,4 @@ echo "Create: ${CID}" sudo -E youki create --bundle ${BUNDLE} ${CID} echo "Start : ${CID}" -sudo -E youki start ${CID} +sudo -E youki start ${CID} \ No newline at end of file diff --git a/proto/Cargo.toml b/proto/Cargo.toml index c64f6e03e..8eb5cbca6 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,32 +1,3 @@ -# ---------------------------------------------------------------------------- # -# Apache 2.0 License Copyright © 2022-2023 The Aurae Authors # -# # -# +--------------------------------------------+ # -# | █████╗ ██╗ ██╗██████╗ █████╗ ███████╗ | # -# | ██╔══██╗██║ ██║██╔══██╗██╔══██╗██╔════╝ | # -# | ███████║██║ ██║██████╔╝███████║█████╗ | # -# | ██╔══██║██║ ██║██╔══██╗██╔══██║██╔══╝ | # -# | ██║ ██║╚██████╔╝██║ ██║██║ ██║███████╗ | # -# | ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | # -# +--------------------------------------------+ # -# # -# Distributed Systems Runtime # -# # -# ---------------------------------------------------------------------------- # -# # -# Licensed under the Apache License, Version 2.0 (the "License"); # -# you may not use this file except in compliance with the License. # -# You may obtain a copy of the License at # -# # -# http://www.apache.org/licenses/LICENSE-2.0 # -# # -# Unless required by applicable law or agreed to in writing, software # -# distributed under the License is distributed on an "AS IS" BASIS, # -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # -# See the License for the specific language governing permissions and # -# limitations under the License. # -# # -# ---------------------------------------------------------------------------- # [package] name = "proto"