You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcpcfg/helper/fileformat_version

22 lines
519 B

#!/usr/bin/perl
# Purpose: report internal->fileformat setting of /etc/ngcp-config/config.yml
################################################################################
use strict;
use warnings;
use YAML::XS;
my $yaml = YAML::XS::LoadFile('/etc/ngcp-config/config.yml');
my $fileformat = $yaml->{internal}->{fileformat};
if (defined $fileformat) {
print "$fileformat\n";
exit 0;
} else {
print "undefined\n";
exit 1;
}
## END OF FILE #################################################################