Skip to content

Commit

Permalink
add mount-point type
Browse files Browse the repository at this point in the history
  • Loading branch information
dplore committed Aug 22, 2024
1 parent 5c402a1 commit bc2529c
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion release/models/system/openconfig-system.yang
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@ module openconfig-system {
Section 4.c of the IETF Trust's Legal Provisions Relating
to IETF Documents (http://trustee.ietf.org/license-info).";

oc-ext:openconfig-version "2.1.0";
oc-ext:openconfig-version "2.2.0";

revision "2024-08-21" {
description
"Added mount-point type leaf to describe the type of file system.";
reference "2.2.0";
}

revision "2024-07-15" {
description
Expand Down Expand Up @@ -378,6 +384,26 @@ module openconfig-system {
description
"The amount of space currently in use on the filesystem.";
}

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.";
}
}
}
}

grouping system-global-state {
Expand Down

0 comments on commit bc2529c

Please sign in to comment.