-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
63 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
These are notes from the early development versions. | ||
|
||
v0.0.2 - Backwards Forwards | ||
* [BREAKING] Removes the "Mount point" option for now | ||
* [bugfix] Fix display of serial numbers in the main StorageDevice view | ||
|
||
v0.0.1 - The First Drop | ||
* Basic functionality | ||
* Can set the following: | ||
* Name | ||
* Type of storage device (SAS, SATA, NVMe) | ||
* Serial number | ||
* Mount point |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Name,Storage device type,Serial number | ||
sda,SATA,YJUVWOLX9NVBDBT | ||
sdb,SATA,DVZN508A04J9FY3 | ||
sdc,SATA,YKVL6QF3G0KS475 | ||
sdd,SATA,AM03LTQZJJCXEU7 | ||
sde,SATA,WEZF9U6L6Z0EBES | ||
sdf,SATA,857E8NR8576M | ||
sdg,SATA,EQT6FUEWPFWK | ||
sdh,SATA,HJSAPO0Z7HQ4 | ||
sdi,SATA,ET5QMRQTRHDX | ||
sdj,SATA,JP1ICH9UE9XR | ||
sdk,SATA,938HUI8O0MTZ | ||
sdl,SATA,ZIX8620FN0VS | ||
sdm,SATA,JZ1VF24H1M5J | ||
sdn,SATA,4XFK605F3OMH | ||
sdo,SATA,L8AD04F7818K | ||
sdp,SATA,SKRX0B9YLDJ6 | ||
sdq,SATA,UTHL9IE30NT5 | ||
sdr,SATA,WKYJURN90S87 | ||
sds,SATA,QO6EPIE1AIGL | ||
sdt,SATA,KQ01YBPGWR1E | ||
sdu,SATA,LKXLG49AV4KA | ||
sdv,SATA,HJ0AWJQ0OB06 | ||
sdw,SATA,1NCYZM1X5BS1 | ||
sdx,SATA,PSVROJ7H0NIL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
netbox_physical_storage/migrations/0002_remove_storagedevice_mount_point.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 4.2.8 on 2023-12-31 04:42 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('netbox_physical_storage', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='storagedevice', | ||
name='mount_point', | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters