Files
librenms-librenms/scripts/Migration/Standard_Conversion/mkdir.sh
Jellyfrog 20b4215204 Swich links to https (#12511)
* Switch librenms links to https

* Convert librenms links in comments

* Switch gnu.org url to https

* switch php urls to https
2021-02-09 00:29:04 +01:00

27 lines
1.1 KiB
Bash

#!/usr/bin/env bash
# Observium to LibreNMS conversion
####################### SCRIPT DESCRIPTION ########################
# A simple script to create needed directories on LibreNMS server #
###################################################################
########################### DIRECTIONS ############################
# Enter values for NODELIST, L_RRDPATH. The default should work if#
# you put the files in the same location. #
###################################################################
############################# CREDITS #############################
# LibreNMS work is done by a great group - https://www.librenms.org #
# Script Written by - Dan Brown - http://vlan50.com #
###################################################################
# Enter path to node list text file
NODELIST=/tmp/nodelist.txt
# Enter path to LibreNMS RRD directories
L_RRDPATH=/opt/librenms/rrd/
# This loop enters the RRD folder and creates dir based on contents of node list text file
while read line
do mkdir -p $L_RRDPATH"${line%/*}"
done < $NODELIST