From c935f5da5dbfc95e6dc13c328e1885051e268768 Mon Sep 17 00:00:00 2001 From: Vulfox Date: Tue, 19 May 2020 14:14:16 -0400 Subject: [PATCH] License Headers and README Update --- README.md | 7 +++++++ iis/driver.go | 17 +++++++++++++++++ iis/handle.go | 17 +++++++++++++++++ iis/iis.go | 17 +++++++++++++++++ iis/iis_test.go | 17 +++++++++++++++++ iis/state.go | 17 +++++++++++++++++ main.go | 17 +++++++++++++++++ 7 files changed, 109 insertions(+) diff --git a/README.md b/README.md index 9338356..0aa0160 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,10 @@ Cleanup make clean ```` This will destroy your vagrant VM (along with all your changes) and remove the executable (win_iis.exe). + +License +------------------- + +Copyright 2020 Roblox Corporation + +Licensed under the Apache License, Version 2.0 (the "License"). For more information read the [License](LICENSE). diff --git a/iis/driver.go b/iis/driver.go index 46eb3e6..509f7d9 100644 --- a/iis/driver.go +++ b/iis/driver.go @@ -1,3 +1,20 @@ +/* +Copyright 2020 Roblox Corporation + +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 iis import ( diff --git a/iis/handle.go b/iis/handle.go index 75f7576..919c5e2 100644 --- a/iis/handle.go +++ b/iis/handle.go @@ -1,3 +1,20 @@ +/* +Copyright 2020 Roblox Corporation + +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 iis import ( diff --git a/iis/iis.go b/iis/iis.go index 9380c8a..5b8421f 100644 --- a/iis/iis.go +++ b/iis/iis.go @@ -1,3 +1,20 @@ +/* +Copyright 2020 Roblox Corporation + +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 iis import ( diff --git a/iis/iis_test.go b/iis/iis_test.go index 1ffde4f..1f10567 100644 --- a/iis/iis_test.go +++ b/iis/iis_test.go @@ -1,3 +1,20 @@ +/* +Copyright 2020 Roblox Corporation + +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 iis // This is a test file for iis.go and IIS on a Windows Server diff --git a/iis/state.go b/iis/state.go index 5dd4bed..4ff68d0 100644 --- a/iis/state.go +++ b/iis/state.go @@ -1,3 +1,20 @@ +/* +Copyright 2020 Roblox Corporation + +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 iis import ( diff --git a/main.go b/main.go index 95dd9b5..a47874a 100644 --- a/main.go +++ b/main.go @@ -1,3 +1,20 @@ +/* +Copyright 2020 Roblox Corporation + +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 main import (