Skip to content
Snippets Groups Projects
Commit 8bbcdf63 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Added constants for configmanager status

parent 8161595a
No related branches found
No related tags found
No related merge requests found
...@@ -25,12 +25,29 @@ require Exporter; ...@@ -25,12 +25,29 @@ require Exporter;
our (@ISA,@EXPORT,@EXPORT_OK); our (@ISA,@EXPORT,@EXPORT_OK);
@ISA = qw(Exporter); @ISA = qw(Exporter);
@EXPORT = qw( @EXPORT = qw(
CFGM_NEW
CFGM_OFFLINE
CFGM_ONLINE
CFGM_CHANGED
SHAPER_NOTLIVE SHAPER_NOTLIVE
SHAPER_PENDING SHAPER_PENDING
SHAPER_LIVE SHAPER_LIVE
); );
# CFGM_NEW - New
# CFGM_OFFLINE - Offline
# CFGM_ONLINE - Online
# CFGM_CHANGED - Changed
use constant {
CFGM_OFFLINE => 0,
CFGM_CHANGED => 1,
CFGM_ONLINE => 2,
CFGM_NEW => 4,
};
# SHAPER_NOTLIVE - Nothing is going on yet, something should happen # SHAPER_NOTLIVE - Nothing is going on yet, something should happen
# SHAPER_PENDING - Waiting on shaper to do a change # SHAPER_PENDING - Waiting on shaper to do a change
# SHAPER_LIVE - Shaper is up to date with our config # SHAPER_LIVE - Shaper is up to date with our config
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment