From ca837490e1556cf67186b698406d1c2320aa08df Mon Sep 17 00:00:00 2001 From: dplore Date: Wed, 21 Aug 2024 17:17:30 -0700 Subject: [PATCH] revise type to a string --- release/models/system/openconfig-system.yang | 22 +++++--------------- 1 file changed, 5 insertions(+), 17 deletions(-) diff --git a/release/models/system/openconfig-system.yang b/release/models/system/openconfig-system.yang index 69f4df0da..f690cfd5a 100644 --- a/release/models/system/openconfig-system.yang +++ b/release/models/system/openconfig-system.yang @@ -386,23 +386,11 @@ module openconfig-system { } leaf type { - type enumeration { - enum FLASH { - description - "The storage type for the mount point is flash memory - based."; - } - enum HDD { - description - "The storage type for the mount point is hard disk - based."; - } - enum NETWORK { - description - "The storage type for the mount point is a remotely - connected network storage."; - } - } + type string; + description + "A human readable string indicating the filesystem type used + for storage. Examples might include flash, hard disk, tmpfs/ramdisk + or remote/network based storage."; } }