From d8df470ae387b0ba8c795a8606cc4e3f29c505cf Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sat, 4 Feb 2023 13:18:03 +0200 Subject: [PATCH] remove old notes --- NetworkResurrector.sln | 8 ------- solution items/notes/generic.txt | 22 ------------------- solution items/notes/nugets.txt | 13 ----------- .../notes/proxmox-shutdown-notes.txt | 18 --------------- 4 files changed, 61 deletions(-) delete mode 100644 solution items/notes/generic.txt delete mode 100644 solution items/notes/nugets.txt delete mode 100644 solution items/notes/proxmox-shutdown-notes.txt diff --git a/NetworkResurrector.sln b/NetworkResurrector.sln index a151e98..1e7ab67 100644 --- a/NetworkResurrector.sln +++ b/NetworkResurrector.sln @@ -59,13 +59,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solution items", "solution ReleaseNotes.xml = ReleaseNotes.xml EndProjectSection EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "notes", "notes", "{A28CE618-9D99-491A-8DCF-23D4A19E7750}" - ProjectSection(SolutionItems) = preProject - solution items\notes\generic.txt = solution items\notes\generic.txt - solution items\notes\nugets.txt = solution items\notes\nugets.txt - solution items\notes\proxmox-shutdown-notes.txt = solution items\notes\proxmox-shutdown-notes.txt - EndProjectSection -EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -170,7 +163,6 @@ Global {388D632D-8104-45E2-8017-D04848941F29} = {6889D39C-D8DA-4B99-AFC1-F0B6355E73C0} {1EA9EAD7-8896-4756-A2C2-7969E9073FA6} = {43C78941-52E6-4AB8-9170-CC7C006E4784} {3624DFF4-C692-42F8-BDC2-1C2107E6EDC8} = {C04663A1-E0CD-41D6-A8D7-FADDF9DA8302} - {A28CE618-9D99-491A-8DCF-23D4A19E7750} = {C683E36F-A75F-4620-9D4F-2D73EE933AE1} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {351D76E9-FE02-4C30-A464-7B29AFC64BC7} diff --git a/solution items/notes/generic.txt b/solution items/notes/generic.txt deleted file mode 100644 index 18038d5..0000000 --- a/solution items/notes/generic.txt +++ /dev/null @@ -1,22 +0,0 @@ -####################################################################################################################################################### -Publish: -dotnet publish --configuration Release --runtime win7-x64 - -Create windows service: -sc create NetworkResurrector.Server binPath="" -sc create NetworkResurrector.Agent binPath="" -####################################################################################################################################################### -Resources: https://github.com/nikeee/wake-on-lan - -Multiple Directory.Build.props: -https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2019 -####################################################################################################################################################### -- masinile sunt afisate in ordinea numarului de porniri - -Agent: -Win: -https://www.programmerall.com/article/5237127008/ -https://www.programmerall.com/article/6418715755/ - -Linux: -https://www.programmerall.com/article/3856917681/ \ No newline at end of file diff --git a/solution items/notes/nugets.txt b/solution items/notes/nugets.txt deleted file mode 100644 index e198043..0000000 --- a/solution items/notes/nugets.txt +++ /dev/null @@ -1,13 +0,0 @@ -####################################################################################################################################################### -Push nuget packages: -# Create package -dotnet pack /*--include-symbols*/ - -# Server: -dotnet nuget push NetworkResurrector.Server.PublishedLanguage.1.1.0.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget -dotnet nuget push NetworkResurrector.Server.Wrapper.1.1.0.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget - -# Agent -dotnet nuget push NetworkResurrector.Agent.PublishedLanguage.1.1.0.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget -dotnet nuget push NetworkResurrector.Agent.Wrapper.1.1.0.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget -####################################################################################################################################################### \ No newline at end of file diff --git a/solution items/notes/proxmox-shutdown-notes.txt b/solution items/notes/proxmox-shutdown-notes.txt deleted file mode 100644 index c073807..0000000 --- a/solution items/notes/proxmox-shutdown-notes.txt +++ /dev/null @@ -1,18 +0,0 @@ -Hi Guys -So long story short I want to shut down my physical server that is running Proxmox VE using the API. I am fairly new to using API but what I have found thus far is this: -curl https://yourip:8006/api2/json//nodes/proxmox/stop -k -d 'username=root@pam&password=yourpassword' -Above does not seem to work, Anyone able to assist and just provide the correct curl to use - -Thanx - -!!!!!!! -Please don't use the root user for that. It is possible to create a new user, name it "shutdown" or something like that, create a new role like "shutdown", add the "shutdown" role to the "shutdown" user. If you then only give that role the rights to use "Sys.PowerMgmt" that user is only allowed to start/shutdown/reboot the node. -Never a good idea to use the root user and its password in clear text. The password could end up in logs if the command fails to execute and so on. - - - -URLS: -https://pve.proxmox.com/wiki/Proxmox_VE_API -https://forum.proxmox.com/threads/shutdown-the-server-via-api.98125/ - -https://github.com/Corsinvest/cv4pve-api-dotnet \ No newline at end of file