ARM release prepare

master
Tudor Stanciu 2022-06-18 18:30:10 +03:00
parent 5415b78b8c
commit eaa97cb0d7
5 changed files with 4 additions and 4 deletions

View File

@ -16,13 +16,13 @@
<None Update="Scripts\1.0.0\01.Machine table.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Scripts\1.0.1\01.Added RPi machines.sql">
<None Update="Scripts\1.0.2\01.Added RPi machines.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Scripts\1.0.1\02.Added new RPi machines.sql">
<None Update="Scripts\1.0.2\02.Added new RPi machines.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Scripts\1.0.2\01.Add ***REMOVED*** machine.sql">
<None Update="Scripts\1.0.1\01.Add ***REMOVED*** machine.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Scripts\1.0.3\01.Power actions configuration.sql">

View File

@ -15,9 +15,9 @@ if not exists (select top 1 1 from Machine)
begin
insert into Machine(MachineName, FullMachineName, MACAddress, IPv4Address, [Description])
select '***REMOVED***', '***REMOVED***', '***REMOVED***', '***REMOVED***', 'Personal main development station' union
select '***REMOVED***', '***REMOVED***', '***REMOVED***', '***REMOVED***', 'Main file server' union
select '***REMOVED***', '***REMOVED***', '***REMOVED***', '***REMOVED***', 'Proxmox node' union
select '***REMOVED***', '***REMOVED***', '***REMOVED***', '***REMOVED***', 'Proxmox node' union
select '***REMOVED***', '***REMOVED***', '***REMOVED***', '***REMOVED***', 'VMware ESXi Hypervisor' union
select '***REMOVED***', '***REMOVED***', '***REMOVED***', '***REMOVED***', 'Main file server' union
select '***REMOVED***', '***REMOVED***', '***REMOVED***', '***REMOVED***', 'OpenMediaVault Server'
end