aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt
diff options
context:
space:
mode:
authorBoris Samorodov <bsam@FreeBSD.org>2009-08-18 09:07:12 +0000
committerBoris Samorodov <bsam@FreeBSD.org>2009-08-18 09:07:12 +0000
commitcaac3bfcb3e034018f6e1018ac44dbaa13380aea (patch)
tree216340570038d1cbef6ae0bac0ce57926f0ebd3a /net-mgmt
parentd82a472a412ab03a5ba5f4e1289931db19a0b643 (diff)
downloadports-caac3bfcb3e034018f6e1018ac44dbaa13380aea.tar.gz
ports-caac3bfcb3e034018f6e1018ac44dbaa13380aea.zip
Notes
Diffstat (limited to 'net-mgmt')
-rw-r--r--net-mgmt/Makefile1
-rw-r--r--net-mgmt/noc/Makefile91
-rw-r--r--net-mgmt/noc/distinfo3
-rw-r--r--net-mgmt/noc/files/noc.sh.in57
-rw-r--r--net-mgmt/noc/files/patch-scripts_post-install33
-rw-r--r--net-mgmt/noc/files/pkg-deinstall.in28
-rw-r--r--net-mgmt/noc/files/pkg-install.in114
-rw-r--r--net-mgmt/noc/files/pkg-message.in20
-rw-r--r--net-mgmt/noc/pkg-descr21
-rw-r--r--net-mgmt/noc/pkg-plist2122
10 files changed, 2490 insertions, 0 deletions
diff --git a/net-mgmt/Makefile b/net-mgmt/Makefile
index 32431b7acb94..41772012f484 100644
--- a/net-mgmt/Makefile
+++ b/net-mgmt/Makefile
@@ -154,6 +154,7 @@
SUBDIR += ng_ipacct
SUBDIR += nipper
SUBDIR += nitpicker
+ SUBDIR += noc
SUBDIR += nocol
SUBDIR += nrg
SUBDIR += nrpe2
diff --git a/net-mgmt/noc/Makefile b/net-mgmt/noc/Makefile
new file mode 100644
index 000000000000..1cc2224649f8
--- /dev/null
+++ b/net-mgmt/noc/Makefile
@@ -0,0 +1,91 @@
+# New ports collection makefile for: noc
+# Date created: 27.08.2009
+# Whom: Stanislav Svirid <count@211.ru>
+#
+# $FreeBSD$
+#
+
+PORTNAME= noc
+PORTVERSION= 0.2.7
+CATEGORIES= net-mgmt python
+MASTER_SITES= http://trac.nocproject.org/trac/downloads/
+DISTNAME= noc-${PORTVERSION}
+
+MAINTAINER= count@211.ru
+COMMENT= Operation Support System (OSS) for the Telco, SP and Enterprise NOC
+
+LIB_DEPENDS= smi.2:${PORTSDIR}/net-mgmt/libsmi
+BUILD_DEPENDS= easy_install:${PORTSDIR}/devel/py-setuptools \
+ ${PYTHON_PKGNAMEPREFIX}sphinx>0:${PORTSDIR}/textproc/py-sphinx \
+ ${PYTHON_PKGNAMEPREFIX}flup>0:${PORTSDIR}/www/py-flup
+RUN_DEPENDS= django-admin.py:${PORTSDIR}/www/py-django \
+ ${PYTHON_SITELIBDIR}/psycopg2/_psycopg.so:${PORTSDIR}/databases/py-psycopg2 \
+ ${PYTHON_SITELIBDIR}/pysnmp/v4/__init__.py:${PORTSDIR}/net-mgmt/py-snmp4 \
+ ${PYTHON_PKGNAMEPREFIX}south>0:${PORTSDIR}/databases/py-south \
+ ${PYTHON_PKGNAMEPREFIX}creole>0:${PORTSDIR}/textproc/py-creole \
+ ${PYTHON_PKGNAMEPREFIX}netifaces>0:${PORTSDIR}/net/py-netifaces \
+ ${PYTHON_PKGNAMEPREFIX}protobuf>0:${PORTSDIR}/devel/py-protobuf
+
+USE_PYTHON= 2.6+
+USE_PYDISTUTILS= yes
+PYDISTUTILS_EGGINFODIR= ${NOCDIR}
+
+CONFLICTS= noc-devel-[0-9].*
+
+NOCUSER?= noc
+NOCGROUP?= noc
+NOCDIR?= ${PREFIX}/noc
+NOCDBDIR?= /var/db/noc
+LOCALSTATE_DIR?=/var/run/noc
+
+NOCUID= 182
+NOCGID= ${NOCUID}
+
+.include <bsd.port.pre.mk>
+
+PLIST_SUB= NOCDIR=${NOCDIR} \
+ NOCDBDIR=${NOCDBDIR} \
+ NOCUSER=${NOCUSER} \
+ NOCGROUP=${NOCGROUP} \
+ NOCUID=${NOCUID} \
+ NOCGID=${NOCGID} \
+ LOCALSTATE_DIR=${LOCALSTATE_DIR}
+
+SUB_FILES= pkg-install \
+ pkg-deinstall \
+ pkg-message
+
+SUB_LIST= PREFIX=${PREFIX} \
+ ${PLIST_SUB}
+
+USE_RC_SUBR= noc.sh
+
+NOC_CONF_FILES= etc/noc-activator.defaults \
+ etc/noc-classifier.defaults \
+ etc/noc-correlator.defaults \
+ etc/noc-fcgi.defaults \
+ etc/noc-launcher.defaults \
+ etc/noc-notifier.defaults \
+ etc/noc-sae.defaults \
+ etc/noc.defaults
+
+post-patch:
+ @(cd ${WRKSRC}; \
+ ${REINPLACE_CMD} -e "s@^\(pidfile *=\).*/\([^/]*.pid\)@\1 ${LOCALSTATE_DIR}/\2@" ${NOC_CONF_FILES}; \
+ ${REINPLACE_CMD} -e "s@^\(repo *=\).*@\1 ${NOCDBDIR}/repo@" -e "s@^\(backup_dir *=\).*@\1 ${NOCDBDIR}/backup@" etc/noc.defaults; \
+ ${REINPLACE_CMD} -e "s@^\(PREFIX=\"\).*@\1${NOCDIR}\"@" setup.py; \
+ _sed_script=`${MKTEMP} tmp.XXXXXX`; \
+ for cmd in telnet ssh rsync pg_dump tar gzip smidump smilint fping dig; do \
+ ${ECHO} "s@^\\($${cmd} *\\)=.*\$$@\\1 = "`${WHICH} $${cmd}`'@' >> $${_sed_script} ; \
+ done; \
+ ${REINPLACE_CMD} -f $${_sed_script} ${NOC_CONF_FILES}; \
+ ${RM} $${_sed_script}; )
+
+pre-install:
+ @${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL
+
+post-install:
+ @${SH} ${PKGINSTALL} ${DISTNAME} POST-INSTALL
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.post.mk>
diff --git a/net-mgmt/noc/distinfo b/net-mgmt/noc/distinfo
new file mode 100644
index 000000000000..95687a6a4914
--- /dev/null
+++ b/net-mgmt/noc/distinfo
@@ -0,0 +1,3 @@
+MD5 (noc-0.2.7.tar.gz) = fdeadb104be5ec5906deb8b6776e1f9d
+SHA256 (noc-0.2.7.tar.gz) = 010f7721c98fef6c22de8873610cdd4a23b3cf1c710464bff05196ba73256413
+SIZE (noc-0.2.7.tar.gz) = 1024056
diff --git a/net-mgmt/noc/files/noc.sh.in b/net-mgmt/noc/files/noc.sh.in
new file mode 100644
index 000000000000..7b81576b8ba9
--- /dev/null
+++ b/net-mgmt/noc/files/noc.sh.in
@@ -0,0 +1,57 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+# PROVIDE: noc
+# REQUIRE: DAEMON %%RCLDCONFIG%%
+# BEFORE: LOGIN
+# KEYWORD: shutdown
+
+#
+# Add the following lines to /etc/rc.conf to enable noc:
+# noc_enable (bool): Set to "NO" by default.
+# Set it to "YES" to enable noc.
+#
+# You may also wish to use the following variables to fine-tune startup:
+# noc_daemons="activator classifier correlator fcgi sae"
+#
+
+. %%RC_SUBR%%
+
+name="noc"
+rcvar=`set_rcvar`
+
+# set defaults
+
+load_rc_config $name
+
+: ${noc_enable="NO"}
+: ${noc_config="%%NOCDIR%%/etc/noc-launcher.conf"}
+: ${noc_flags="-c ${noc_config}"}
+
+noc_chdir=%%NOCDIR%%
+command=%%NOCDIR%%/scripts/noc-launcher.py
+command_interpreter=python
+pidfile=%%LOCALSTATE_DIR%%/noc-launcher.pid
+required_files=${noc_config}
+
+command_args=$1
+
+case "$command_args" in
+ force*)
+ command_args=${command_args#force};
+ ;;
+ fast*)
+ command_args=${command_args#fast};
+ ;;
+ restart)
+ command_args="stop"
+ run_rc_command "stop"
+ command_args="start"
+ run_rc_command "start"
+ exit 0
+ ;;
+esac
+
+run_rc_command "$1"
diff --git a/net-mgmt/noc/files/patch-scripts_post-install b/net-mgmt/noc/files/patch-scripts_post-install
new file mode 100644
index 000000000000..082b6070bbaf
--- /dev/null
+++ b/net-mgmt/noc/files/patch-scripts_post-install
@@ -0,0 +1,33 @@
+--- scripts/post-install.orig 2009-07-29 18:22:59.000000000 +0700
++++ scripts/post-install 2009-07-29 18:25:16.000000000 +0700
+@@ -5,7 +5,7 @@
+ ## Copyright (C) 2007-2009 The NOC Project
+ ## See LICENSE for details
+ ##----------------------------------------------------------------------
+-PREFIX=/opt/noc
++PREFIX=/usr/local/noc
+
+ cd $PREFIX
+
+@@ -15,7 +15,7 @@ cd $PREFIX
+ sed_script=`mktemp tmp.XXXXXX`
+ rm $sed_script
+ for cmd in telnet ssh rsync pg_dump tar gzip smidump smilint fping dig; do
+- echo 's@^\\($cmd *\\)=.*\$@\\1 = '`which $cmd`'@' >> $sed_script
++ echo "s@^\\($cmd *\\)=.*\$@\\1 = "`which $cmd`'@' >> $sed_script
+ done
+
+ ##
+@@ -30,10 +30,11 @@ done
+ rm $sed_script
+ chmod 640 etc/*.conf
+ chown noc:noc etc/*.conf
++chmod -R +r share/mibs/
+ ##
+ ## Create required directories
+ ##
+-for d in local static/doc /var/repo /var/backup /var/log/noc; do
++for d in local static/doc /var/db/noc /var/db/noc/repo /var/db/noc/backup /var/log/noc; do
+ [ ! -d $d ] && mkdir $d
+ chown noc:noc $d
+ done
diff --git a/net-mgmt/noc/files/pkg-deinstall.in b/net-mgmt/noc/files/pkg-deinstall.in
new file mode 100644
index 000000000000..7ac2e12ad018
--- /dev/null
+++ b/net-mgmt/noc/files/pkg-deinstall.in
@@ -0,0 +1,28 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+NOCDIR=%%NOCDIR%%
+NOCDBDIR=%%NOCDBDIR%%
+NOCUSER=%%NOCUSER%%
+NOCGROUP=%%NOCGROUP%%
+
+if [ "$2" = "POST-DEINSTALL" ]; then
+ if /usr/sbin/pw group show "${NOCGROUP}" 2>&1 >/dev/null; then
+ echo "You should manually remove the \"${NOCGROUP}\" group."
+ fi
+
+ if /usr/sbin/pw user show "${NOCUSER}" 2>&1 >/dev/null; then
+ echo "You should manually remove the \"${NOCUSER}\" user."
+ fi
+
+ ##
+ ## Remove created directories
+ ##
+ for d in ${NOCDIR}/local ${NOCDIR}/static/doc ${NOCDIR} ${NOCDBDIR}/repo ${NOCDBDIR}/backup ${NOCDBDIR} /var/log/noc; do
+ if [ -e $d ]; then
+ echo "You should manually remove the \"${d}\" directory."
+ fi
+ done
+fi
diff --git a/net-mgmt/noc/files/pkg-install.in b/net-mgmt/noc/files/pkg-install.in
new file mode 100644
index 000000000000..fba96d5fe509
--- /dev/null
+++ b/net-mgmt/noc/files/pkg-install.in
@@ -0,0 +1,114 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+NOCDIR=%%NOCDIR%%
+NOCDBDIR=%%NOCDBDIR%%
+NOCUSER=%%NOCUSER%%
+NOCGROUP=%%NOCGROUP%%
+NOCUID=%%NOCUID%%
+NOCGID=%%NOCGID%%
+LOCALSTATE_DIR=%%LOCALSTATE_DIR%%
+
+ask() {
+ local question default answer
+
+ question=$1
+ default=$2
+ if [ -z "${PACKAGE_BUILDING}" ]; then
+ read -p "${question} [${default}]? " answer
+ fi
+ if [ "x${answer}" = "x" ]; then
+ answer=${default}
+ fi
+ echo ${answer}
+}
+
+yesno() {
+ local default question answer
+
+ question=$1
+ default=$2
+ while :; do
+ answer=$(ask "${question}" "${default}")
+ case "${answer}" in
+ [Yy][Ee][Ss]|[Yy])
+ return 0
+ ;;
+ [Nn][Oo]|[Nn])
+ return 1
+ ;;
+ esac
+ echo "Please answer yes or no."
+ done
+}
+
+if [ "$2" = "PRE-INSTALL" ]; then
+ if /usr/sbin/pw group show "${NOCGROUP}" 2>&1 >/dev/null; then
+ echo "You already have a \"${NOCGROUP}\" group, so I will use it."
+ else
+ echo "You need a \"${NOCGROUP}\" group."
+ if yesno "Would you like me to create it" "YES"; then
+ /usr/sbin/pw groupadd "${NOCGROUP}" -g "${NOCGID}" -h - || \
+ /usr/sbin/pw groupadd "${NOCGROUP}" -h - || exit
+ echo "Done."
+ else
+ echo "Please create the \"${NOCGROUP}\" group manually and try again."
+ exit 1
+ fi
+ fi
+
+ if /usr/sbin/pw user show "${NOCUSER}" 2>&1 >/dev/null; then
+ echo "You already have a \"${NOCUSER}\" user, so I will use it."
+ else
+ echo "You need a \"${NOCUSER}\" user."
+ if yesno "Would you like me to create it" "YES"; then
+ /usr/sbin/pw useradd "${NOCUSER}" -u "${NOCUID}" -g "${NOCGROUP}" -h - -d "${NOCDIR}" \
+ -c "NOC pseudo-user" || \
+ /usr/sbin/pw useradd "${NOCUSER}" -g "${NOCGROUP}" -h - -d "${NOCDIR}" \
+ -c "NOC pseudo-user" || exit
+ else
+ echo "Please create the \"${NOCUSER}\" user manually and try again."
+ exit 1
+ fi
+ fi
+
+ if ! [ -x ${NOCDIR} ] ; then
+ mkdir -p ${NOCDIR};
+ chown ${NOCUSER}:${NOCGROUP} ${NOCDIR}
+ fi
+
+ mkdir -p ${LOCALSTATE_DIR}
+ if [ ! -d ${LOCALSTATE_DIR} ] ; then
+ echo "Creating \"${LOCALSTATE_DIR}\" failed."
+ exit 1
+ fi
+
+ chown -R ${NOCUSER}:${NOCGROUP} ${LOCALSTATE_DIR}
+fi
+
+if [ "$2" = "POST-INSTALL" ]; then
+ ##
+ ## Copy default config files
+ ##
+ for d in ${NOCDIR}/etc/*.defaults; do
+ conf=${d%%.defaults}.conf
+ if [ ! -f $conf ]; then
+ cp $d $conf
+ fi
+ done
+ ##
+ ## Fix privileges
+ ##
+ chmod 640 ${NOCDIR}/etc/*.conf
+ chown ${NOCUSER}:${NOCGROUP} ${NOCDIR}/etc/*.conf
+ chmod -R +r ${NOCDIR}/share/mibs/
+ ##
+ ## Create required directories
+ ##
+ for d in ${NOCDIR}/local ${NOCDIR}/static/doc ${NOCDBDIR}/repo ${NOCDBDIR}/backup /var/log/noc; do
+ [ ! -d $d ] && mkdir -p $d
+ chown -R ${NOCUSER}:${NOCGROUP} $d
+ done
+fi
diff --git a/net-mgmt/noc/files/pkg-message.in b/net-mgmt/noc/files/pkg-message.in
new file mode 100644
index 000000000000..8da17e05daaf
--- /dev/null
+++ b/net-mgmt/noc/files/pkg-message.in
@@ -0,0 +1,20 @@
+**********************************************************************
+
+ Enable NOC in /etc/rc.conf with the following line:
+
+ noc_enable="YES"
+
+ Configuration defaults are available in %%NOCDIR%%/etc as *.defaults
+ files. Copy them to *.cfg files where required and
+ edit to suit your needs.
+
+ Don't forget create DB in postgresql (see Documentation for NOC).
+ and run createlang after createdb:
+ createlang plpgsql noc
+
+ After create db (or if you updating from previous version) please
+ don't forget run following commnds under user '%%NOCUSER%%':
+ cd %%NOCDIR%%
+ ./scripts/post-update
+
+**********************************************************************
diff --git a/net-mgmt/noc/pkg-descr b/net-mgmt/noc/pkg-descr
new file mode 100644
index 000000000000..078551bdcdbb
--- /dev/null
+++ b/net-mgmt/noc/pkg-descr
@@ -0,0 +1,21 @@
+NOC Project is an Operation Support System (OSS) for the Telco,
+Service provider and Enterprise Network Operation Centers (NOC).
+
+Areas covered by NOC:
+ * Fault Management
+ * Service Activation/Provisioning
+ * Knowledge Base
+ * Multi-VRF Address space management
+ * Virtual Circuits management (VLAN, DLCI, etc)
+ * Configuration Management
+ * DNS provisioning
+ * Peering management, RPSL and BGP filters generator, integrated
+ looking glass
+ * Reporting
+
+NOC Project is distributed under the term of BSD-like LICENSE.
+
+Enjoy!
+The NOC Project Team
+
+WWW: http://www.nocproject.org/
diff --git a/net-mgmt/noc/pkg-plist b/net-mgmt/noc/pkg-plist
new file mode 100644
index 000000000000..40f03da117b8
--- /dev/null
+++ b/net-mgmt/noc/pkg-plist
@@ -0,0 +1,2122 @@
+noc/500.html
+noc/AUTHORS
+noc/CHANGELOG
+noc/INSTALL
+noc/LICENSE
+noc/MANIFEST
+noc/MANIFEST-ACTIVATOR
+noc/README
+noc/VERSION
+noc/__init__.py
+noc/__init__.pyc
+noc/__init__.pyo
+noc/cm/__init__.py
+noc/cm/__init__.pyc
+noc/cm/__init__.pyo
+noc/cm/admin.py
+noc/cm/admin.pyc
+noc/cm/admin.pyo
+noc/cm/diff.html
+noc/cm/management/__init__.py
+noc/cm/management/__init__.pyc
+noc/cm/management/__init__.pyo
+noc/cm/management/commands/__init__.py
+noc/cm/management/commands/__init__.pyc
+noc/cm/management/commands/__init__.pyo
+noc/cm/management/commands/pull.py
+noc/cm/management/commands/pull.pyc
+noc/cm/management/commands/pull.pyo
+noc/cm/management/commands/push.py
+noc/cm/management/commands/push.pyc
+noc/cm/management/commands/push.pyo
+noc/cm/migrations/0001_initial.py
+noc/cm/migrations/0001_initial.pyc
+noc/cm/migrations/0001_initial.pyo
+noc/cm/migrations/0002_register_vcs.py
+noc/cm/migrations/0002_register_vcs.pyc
+noc/cm/migrations/0002_register_vcs.pyo
+noc/cm/migrations/0003_access_profile.py
+noc/cm/migrations/0003_access_profile.pyc
+noc/cm/migrations/0003_access_profile.pyo
+noc/cm/migrations/0004_split_object.py
+noc/cm/migrations/0004_split_object.pyc
+noc/cm/migrations/0004_split_object.pyo
+noc/cm/migrations/0005_split_object_data.py
+noc/cm/migrations/0005_split_object_data.pyc
+noc/cm/migrations/0005_split_object_data.pyo
+noc/cm/migrations/0006_rpsl.py
+noc/cm/migrations/0006_rpsl.pyc
+noc/cm/migrations/0006_rpsl.pyo
+noc/cm/migrations/0007_last_modified.py
+noc/cm/migrations/0007_last_modified.pyc
+noc/cm/migrations/0007_last_modified.pyo
+noc/cm/migrations/0008_notify.py
+noc/cm/migrations/0008_notify.pyc
+noc/cm/migrations/0008_notify.pyo
+noc/cm/migrations/0009_access_and_notify.py
+noc/cm/migrations/0009_access_and_notify.pyc
+noc/cm/migrations/0009_access_and_notify.pyo
+noc/cm/migrations/0010_trap_source_ip.py
+noc/cm/migrations/0010_trap_source_ip.pyc
+noc/cm/migrations/0010_trap_source_ip.pyo
+noc/cm/migrations/0011_clean_up_config.py
+noc/cm/migrations/0011_clean_up_config.pyc
+noc/cm/migrations/0011_clean_up_config.pyo
+noc/cm/migrations/0012_object_notify_add_notification_group.py
+noc/cm/migrations/0012_object_notify_add_notification_group.pyc
+noc/cm/migrations/0012_object_notify_add_notification_group.pyo
+noc/cm/migrations/0013_create_notification_groups.py
+noc/cm/migrations/0013_create_notification_groups.pyc
+noc/cm/migrations/0013_create_notification_groups.pyo
+noc/cm/migrations/0014_object_notifify_drop_emails.py
+noc/cm/migrations/0014_object_notifify_drop_emails.pyc
+noc/cm/migrations/0014_object_notifify_drop_emails.pyo
+noc/cm/migrations/__init__.py
+noc/cm/migrations/__init__.pyc
+noc/cm/migrations/__init__.pyo
+noc/cm/models.py
+noc/cm/models.pyc
+noc/cm/models.pyo
+noc/cm/periodics/__init__.py
+noc/cm/periodics/__init__.pyc
+noc/cm/periodics/__init__.pyo
+noc/cm/periodics/config_pull.py
+noc/cm/periodics/config_pull.pyc
+noc/cm/periodics/config_pull.pyo
+noc/cm/periodics/dns_pull.py
+noc/cm/periodics/dns_pull.pyc
+noc/cm/periodics/dns_pull.pyo
+noc/cm/periodics/dns_push.py
+noc/cm/periodics/dns_push.pyc
+noc/cm/periodics/dns_push.pyo
+noc/cm/periodics/prefix_list_pull.py
+noc/cm/periodics/prefix_list_pull.pyc
+noc/cm/periodics/prefix_list_pull.pyo
+noc/cm/periodics/rpsl_pull.py
+noc/cm/periodics/rpsl_pull.pyc
+noc/cm/periodics/rpsl_pull.pyo
+noc/cm/reports/__init__.py
+noc/cm/reports/__init__.pyc
+noc/cm/reports/__init__.pyo
+noc/cm/reports/ip_addresses_in_config.py
+noc/cm/reports/ip_addresses_in_config.pyc
+noc/cm/reports/ip_addresses_in_config.pyo
+noc/cm/reports/last_changes.py
+noc/cm/reports/last_changes.pyc
+noc/cm/reports/last_changes.pyo
+noc/cm/reports/stale_configs.py
+noc/cm/reports/stale_configs.pyc
+noc/cm/reports/stale_configs.pyo
+noc/cm/urls.py
+noc/cm/urls.pyc
+noc/cm/urls.pyo
+noc/cm/vcs/__init__.py
+noc/cm/vcs/__init__.pyc
+noc/cm/vcs/__init__.pyo
+noc/cm/vcs/cvs.py
+noc/cm/vcs/cvs.pyc
+noc/cm/vcs/cvs.pyo
+noc/cm/vcs/hg.py
+noc/cm/vcs/hg.pyc
+noc/cm/vcs/hg.pyo
+noc/cm/view.html
+noc/cm/views.py
+noc/cm/views.pyc
+noc/cm/views.pyo
+noc/dns/__init__.py
+noc/dns/__init__.pyc
+noc/dns/__init__.pyo
+noc/dns/admin.py
+noc/dns/admin.pyc
+noc/dns/admin.pyo
+noc/dns/generators/__init__.py
+noc/dns/generators/__init__.pyc
+noc/dns/generators/__init__.pyo
+noc/dns/generators/bindv9.py
+noc/dns/generators/bindv9.pyc
+noc/dns/generators/bindv9.pyo
+noc/dns/migrations/0001_initial.py
+noc/dns/migrations/0001_initial.pyc
+noc/dns/migrations/0001_initial.pyo
+noc/dns/migrations/0002_dnsrecordtype_is_visible.py
+noc/dns/migrations/0002_dnsrecordtype_is_visible.pyc
+noc/dns/migrations/0002_dnsrecordtype_is_visible.pyo
+noc/dns/migrations/0003_dnszonerecordtype_initial_data.py
+noc/dns/migrations/0003_dnszonerecordtype_initial_data.pyc
+noc/dns/migrations/0003_dnszonerecordtype_initial_data.pyo
+noc/dns/migrations/0004_register_dns.py
+noc/dns/migrations/0004_register_dns.pyc
+noc/dns/migrations/0004_register_dns.pyo
+noc/dns/migrations/0005_dns_server_and_type.py
+noc/dns/migrations/0005_dns_server_and_type.pyc
+noc/dns/migrations/0005_dns_server_and_type.pyo
+noc/dns/migrations/0006_type_bindv9.py
+noc/dns/migrations/0006_type_bindv9.pyc
+noc/dns/migrations/0006_type_bindv9.pyo
+noc/dns/migrations/0007_migrate_ns_list.py
+noc/dns/migrations/0007_migrate_ns_list.pyc
+noc/dns/migrations/0007_migrate_ns_list.pyo
+noc/dns/migrations/0008_dnsserver_provisioning.py
+noc/dns/migrations/0008_dnsserver_provisioning.pyc
+noc/dns/migrations/0008_dnsserver_provisioning.pyo
+noc/dns/migrations/0009_unregister_dns.py
+noc/dns/migrations/0009_unregister_dns.pyc
+noc/dns/migrations/0009_unregister_dns.pyo
+noc/dns/migrations/0010_dns_server_generator_name.py
+noc/dns/migrations/0010_dns_server_generator_name.pyc
+noc/dns/migrations/0010_dns_server_generator_name.pyo
+noc/dns/migrations/0011_drop_dns_server_type.py
+noc/dns/migrations/0011_drop_dns_server_type.pyc
+noc/dns/migrations/0011_drop_dns_server_type.pyo
+noc/dns/migrations/0012_dnszoneprofile_masters_and_slaves.py
+noc/dns/migrations/0012_dnszoneprofile_masters_and_slaves.pyc
+noc/dns/migrations/0012_dnszoneprofile_masters_and_slaves.pyo
+noc/dns/migrations/0013_remove_dnszoneprofile_zone_transfer_acl.py
+noc/dns/migrations/0013_remove_dnszoneprofile_zone_transfer_acl.pyc
+noc/dns/migrations/0013_remove_dnszoneprofile_zone_transfer_acl.pyo
+noc/dns/migrations/0014_dnsserver_ip.py
+noc/dns/migrations/0014_dnsserver_ip.pyc
+noc/dns/migrations/0014_dnsserver_ip.pyo
+noc/dns/migrations/0015_dnszonerecordtype_validate.py
+noc/dns/migrations/0015_dnszonerecordtype_validate.pyc
+noc/dns/migrations/0015_dnszonerecordtype_validate.pyo
+noc/dns/migrations/0016_autozones_path.py
+noc/dns/migrations/0016_autozones_path.pyc
+noc/dns/migrations/0016_autozones_path.pyo
+noc/dns/migrations/__init__.py
+noc/dns/migrations/__init__.pyc
+noc/dns/migrations/__init__.pyo
+noc/dns/models.py
+noc/dns/models.pyc
+noc/dns/models.pyo
+noc/dns/reports/__init__.py
+noc/dns/reports/__init__.pyc
+noc/dns/reports/__init__.pyo
+noc/dns/reports/duplicated_fqdns.py
+noc/dns/reports/duplicated_fqdns.pyc
+noc/dns/reports/duplicated_fqdns.pyo
+noc/dns/reports/missed_p2p_addresses.py
+noc/dns/reports/missed_p2p_addresses.pyc
+noc/dns/reports/missed_p2p_addresses.pyo
+noc/dns/reports/ns_zones.py
+noc/dns/reports/ns_zones.pyc
+noc/dns/reports/ns_zones.pyo
+noc/dns/reports/supported_servers.py
+noc/dns/reports/supported_servers.pyc
+noc/dns/reports/supported_servers.pyo
+noc/dns/urls.py
+noc/dns/urls.pyc
+noc/dns/urls.pyo
+noc/dns/views.py
+noc/dns/views.pyc
+noc/dns/views.pyo
+noc/dns/zone.html
+@unexec if cmp -s %D/noc/etc/noc-activator.defaults %D/noc/etc/noc-activator.conf; then rm -f %D/noc/etc/noc-activator.conf; fi
+noc/etc/noc-activator.defaults
+@unexec if cmp -s %D/noc/etc/noc-classifier.defaults %D/noc/etc/noc-classifier.conf; then rm -f %D/noc/etc/noc-classifier.conf; fi
+noc/etc/noc-classifier.defaults
+@unexec if cmp -s %D/noc/etc/noc-correlator.defaults %D/noc/etc/noc-correlator.conf; then rm -f %D/noc/etc/noc-correlator.conf; fi
+noc/etc/noc-correlator.defaults
+@unexec if cmp -s %D/noc/etc/noc-fcgi.defaults %D/noc/etc/noc-fcgi.conf; then rm -f %D/noc/etc/noc-fcgi.conf; fi
+noc/etc/noc-fcgi.defaults
+@unexec if cmp -s %D/noc/etc/noc-launcher.defaults %D/noc/etc/noc-launcher.conf; then rm -f %D/noc/etc/noc-launcher.conf; fi
+noc/etc/noc-launcher.defaults
+@unexec if cmp -s %D/noc/etc/noc-notifier.defaults %D/noc/etc/noc-notifier.conf; then rm -f %D/noc/etc/noc-notifier.conf; fi
+noc/etc/noc-notifier.defaults
+@unexec if cmp -s %D/noc/etc/noc-sae.defaults %D/noc/etc/noc-sae.conf; then rm -f %D/noc/etc/noc-sae.conf; fi
+noc/etc/noc-sae.defaults
+@unexec if cmp -s %D/noc/etc/noc.defaults %D/noc/etc/noc.conf; then rm -f %D/noc/etc/noc.conf; fi
+noc/etc/noc.defaults
+noc/fm/__init__.py
+noc/fm/__init__.pyc
+noc/fm/__init__.pyo
+noc/fm/active_problems_summary.html
+noc/fm/admin.py
+noc/fm/admin.pyc
+noc/fm/admin.pyo
+noc/fm/classifier.py
+noc/fm/classifier.pyc
+noc/fm/classifier.pyo
+noc/fm/correlator.py
+noc/fm/correlator.pyc
+noc/fm/correlator.pyo
+noc/fm/event.html
+noc/fm/index.html
+noc/fm/management/__init__.py
+noc/fm/management/__init__.pyc
+noc/fm/management/__init__.pyo
+noc/fm/management/commands/__init__.py
+noc/fm/management/commands/__init__.pyc
+noc/fm/management/commands/__init__.pyo
+noc/fm/management/commands/import-mib.py
+noc/fm/management/commands/import-mib.pyc
+noc/fm/management/commands/import-mib.pyo
+noc/fm/management/commands/sync-rules.py
+noc/fm/management/commands/sync-rules.pyc
+noc/fm/management/commands/sync-rules.pyo
+noc/fm/mib_upload.html
+noc/fm/migrations/0001_initial.py
+noc/fm/migrations/0001_initial.pyc
+noc/fm/migrations/0001_initial.pyo
+noc/fm/migrations/0002_event.py
+noc/fm/migrations/0002_event.pyc
+noc/fm/migrations/0002_event.pyo
+noc/fm/migrations/0003_event_data.py
+noc/fm/migrations/0003_event_data.pyc
+noc/fm/migrations/0003_event_data.pyo
+noc/fm/migrations/0004_priority_color.py
+noc/fm/migrations/0004_priority_color.pyc
+noc/fm/migrations/0004_priority_color.pyo
+noc/fm/migrations/0005_default_colors.py
+noc/fm/migrations/0005_default_colors.pyc
+noc/fm/migrations/0005_default_colors.pyo
+noc/fm/migrations/0006_rule_drop_event.py
+noc/fm/migrations/0006_rule_drop_event.pyc
+noc/fm/migrations/0006_rule_drop_event.pyo
+noc/fm/migrations/0007_event_repeat.py
+noc/fm/migrations/0007_event_repeat.pyc
+noc/fm/migrations/0007_event_repeat.pyo
+noc/fm/migrations/0008_enlarge_event_data_key.py
+noc/fm/migrations/0008_enlarge_event_data_key.pyc
+noc/fm/migrations/0008_enlarge_event_data_key.pyo
+noc/fm/migrations/0009_mib_dependency.py
+noc/fm/migrations/0009_mib_dependency.pyc
+noc/fm/migrations/0009_mib_dependency.pyo
+noc/fm/migrations/0010_event_class_trigger.py
+noc/fm/migrations/0010_event_class_trigger.pyc
+noc/fm/migrations/0010_event_class_trigger.pyo
+noc/fm/migrations/0011_is_builtin.py
+noc/fm/migrations/0011_is_builtin.pyc
+noc/fm/migrations/0011_is_builtin.pyo
+noc/fm/migrations/0012_update_event_classification.py
+noc/fm/migrations/0012_update_event_classification.pyc
+noc/fm/migrations/0012_update_event_classification.pyo
+noc/fm/migrations/0013_event_lifecycle.py
+noc/fm/migrations/0013_event_lifecycle.pyc
+noc/fm/migrations/0013_event_lifecycle.pyo
+noc/fm/migrations/0014_update_event_classification.py
+noc/fm/migrations/0014_update_event_classification.pyc
+noc/fm/migrations/0014_update_event_classification.pyo
+noc/fm/migrations/0015_set_event_status.py
+noc/fm/migrations/0015_set_event_status.pyc
+noc/fm/migrations/0015_set_event_status.pyo
+noc/fm/migrations/0016_event_correlation_rule.py
+noc/fm/migrations/0016_event_correlation_rule.pyc
+noc/fm/migrations/0016_event_correlation_rule.pyo
+noc/fm/migrations/0017_event_log.py
+noc/fm/migrations/0017_event_log.pyc
+noc/fm/migrations/0017_event_log.pyo
+noc/fm/migrations/0018_update_event_classification.py
+noc/fm/migrations/0018_update_event_classification.pyc
+noc/fm/migrations/0018_update_event_classification.pyo
+noc/fm/migrations/0019_eventclassificationrule_action.py
+noc/fm/migrations/0019_eventclassificationrule_action.pyc
+noc/fm/migrations/0019_eventclassificationrule_action.pyo
+noc/fm/migrations/0020_drop_eventclassificationrule_drop_event.py
+noc/fm/migrations/0020_drop_eventclassificationrule_drop_event.pyc
+noc/fm/migrations/0020_drop_eventclassificationrule_drop_event.pyo
+noc/fm/migrations/0021_event_post_processing.py
+noc/fm/migrations/0021_event_post_processing.pyc
+noc/fm/migrations/0021_event_post_processing.pyo
+noc/fm/migrations/0022_drop_update_event_classification.py
+noc/fm/migrations/0022_drop_update_event_classification.pyc
+noc/fm/migrations/0022_drop_update_event_classification.pyo
+noc/fm/migrations/0023_eventclassificationre_expression.py
+noc/fm/migrations/0023_eventclassificationre_expression.pyc
+noc/fm/migrations/0023_eventclassificationre_expression.pyo
+noc/fm/migrations/0024_event_correlation_rule.py
+noc/fm/migrations/0024_event_correlation_rule.pyc
+noc/fm/migrations/0024_event_correlation_rule.pyo
+noc/fm/migrations/0025_eventarchivationrule.py
+noc/fm/migrations/0025_eventarchivationrule.pyc
+noc/fm/migrations/0025_eventarchivationrule.pyo
+noc/fm/migrations/__init__.py
+noc/fm/migrations/__init__.pyc
+noc/fm/migrations/__init__.pyo
+noc/fm/models.py
+noc/fm/models.pyc
+noc/fm/models.pyo
+noc/fm/periodics/__init__.py
+noc/fm/periodics/__init__.pyc
+noc/fm/periodics/__init__.pyo
+noc/fm/periodics/archive.py
+noc/fm/periodics/archive.pyc
+noc/fm/periodics/archive.pyo
+noc/fm/periodics/ping_check.py
+noc/fm/periodics/ping_check.pyc
+noc/fm/periodics/ping_check.pyo
+noc/fm/reports/__init__.py
+noc/fm/reports/__init__.pyc
+noc/fm/reports/__init__.pyo
+noc/fm/reports/classification_quality.py
+noc/fm/reports/classification_quality.pyc
+noc/fm/reports/classification_quality.pyo
+noc/fm/reports/event_class_events.py
+noc/fm/reports/event_class_events.pyc
+noc/fm/reports/event_class_events.pyo
+noc/fm/reports/event_priority_events.py
+noc/fm/reports/event_priority_events.pyc
+noc/fm/reports/event_priority_events.pyo
+noc/fm/reports/managed_object_events.py
+noc/fm/reports/managed_object_events.pyc
+noc/fm/reports/managed_object_events.pyo
+noc/fm/reports/mibs.py
+noc/fm/reports/mibs.pyc
+noc/fm/reports/mibs.pyo
+noc/fm/reports/profile_events.py
+noc/fm/reports/profile_events.pyc
+noc/fm/reports/profile_events.pyo
+noc/fm/reports/unclassified_trap_oids.py
+noc/fm/reports/unclassified_trap_oids.pyc
+noc/fm/reports/unclassified_trap_oids.pyo
+noc/fm/rules/__init__.py
+noc/fm/rules/__init__.pyc
+noc/fm/rules/__init__.pyo
+noc/fm/rules/classes/Cisco/IOS/__init__.py
+noc/fm/rules/classes/Cisco/IOS/__init__.pyc
+noc/fm/rules/classes/Cisco/IOS/__init__.pyo
+noc/fm/rules/classes/Cisco/IOS/qos.py
+noc/fm/rules/classes/Cisco/IOS/qos.pyc
+noc/fm/rules/classes/Cisco/IOS/qos.pyo
+noc/fm/rules/classes/Cisco/__init__.py
+noc/fm/rules/classes/Cisco/__init__.pyc
+noc/fm/rules/classes/Cisco/__init__.pyo
+noc/fm/rules/classes/__init__.py
+noc/fm/rules/classes/__init__.pyc
+noc/fm/rules/classes/__init__.pyo
+noc/fm/rules/classes/auth.py
+noc/fm/rules/classes/auth.pyc
+noc/fm/rules/classes/auth.pyo
+noc/fm/rules/classes/bgp.py
+noc/fm/rules/classes/bgp.pyc
+noc/fm/rules/classes/bgp.pyo
+noc/fm/rules/classes/config.py
+noc/fm/rules/classes/config.pyc
+noc/fm/rules/classes/config.pyo
+noc/fm/rules/classes/default.py
+noc/fm/rules/classes/default.pyc
+noc/fm/rules/classes/default.pyo
+noc/fm/rules/classes/dhcp.py
+noc/fm/rules/classes/dhcp.pyc
+noc/fm/rules/classes/dhcp.pyo
+noc/fm/rules/classes/dns.py
+noc/fm/rules/classes/dns.pyc
+noc/fm/rules/classes/dns.pyo
+noc/fm/rules/classes/dot11.py
+noc/fm/rules/classes/dot11.pyc
+noc/fm/rules/classes/dot11.pyo
+noc/fm/rules/classes/eigrp.py
+noc/fm/rules/classes/eigrp.pyc
+noc/fm/rules/classes/eigrp.pyo
+noc/fm/rules/classes/fallback.py
+noc/fm/rules/classes/fallback.pyc
+noc/fm/rules/classes/fallback.pyo
+noc/fm/rules/classes/ipsec.py
+noc/fm/rules/classes/ipsec.pyc
+noc/fm/rules/classes/ipsec.pyo
+noc/fm/rules/classes/ldp.py
+noc/fm/rules/classes/ldp.pyc
+noc/fm/rules/classes/ldp.pyo
+noc/fm/rules/classes/link.py
+noc/fm/rules/classes/link.pyc
+noc/fm/rules/classes/link.pyo
+noc/fm/rules/classes/loadbalance.py
+noc/fm/rules/classes/loadbalance.pyc
+noc/fm/rules/classes/loadbalance.pyo
+noc/fm/rules/classes/logging.py
+noc/fm/rules/classes/logging.pyc
+noc/fm/rules/classes/logging.pyo
+noc/fm/rules/classes/memory.py
+noc/fm/rules/classes/memory.pyc
+noc/fm/rules/classes/memory.pyo
+noc/fm/rules/classes/phone.py
+noc/fm/rules/classes/phone.pyc
+noc/fm/rules/classes/phone.pyo
+noc/fm/rules/classes/poe.py
+noc/fm/rules/classes/poe.pyc
+noc/fm/rules/classes/poe.pyo
+noc/fm/rules/classes/port.py
+noc/fm/rules/classes/port.pyc
+noc/fm/rules/classes/port.pyo
+noc/fm/rules/classes/process.py
+noc/fm/rules/classes/process.pyc
+noc/fm/rules/classes/process.pyo
+noc/fm/rules/classes/radius.py
+noc/fm/rules/classes/radius.pyc
+noc/fm/rules/classes/radius.pyo
+noc/fm/rules/classes/security.py
+noc/fm/rules/classes/security.pyc
+noc/fm/rules/classes/security.pyo
+noc/fm/rules/classes/stp.py
+noc/fm/rules/classes/stp.pyc
+noc/fm/rules/classes/stp.pyo
+noc/fm/rules/classes/system.py
+noc/fm/rules/classes/system.pyc
+noc/fm/rules/classes/system.pyo
+noc/fm/rules/classification/Audiocodes/Mediant2000/__init__.py
+noc/fm/rules/classification/Audiocodes/Mediant2000/__init__.pyc
+noc/fm/rules/classification/Audiocodes/Mediant2000/__init__.pyo
+noc/fm/rules/classification/Audiocodes/Mediant2000/config.py
+noc/fm/rules/classification/Audiocodes/Mediant2000/config.pyc
+noc/fm/rules/classification/Audiocodes/Mediant2000/config.pyo
+noc/fm/rules/classification/Audiocodes/__init__.py
+noc/fm/rules/classification/Audiocodes/__init__.pyc
+noc/fm/rules/classification/Audiocodes/__init__.pyo
+noc/fm/rules/classification/Cisco/IOS/__init__.py
+noc/fm/rules/classification/Cisco/IOS/__init__.pyc
+noc/fm/rules/classification/Cisco/IOS/__init__.pyo
+noc/fm/rules/classification/Cisco/IOS/bgp.py
+noc/fm/rules/classification/Cisco/IOS/bgp.pyc
+noc/fm/rules/classification/Cisco/IOS/bgp.pyo
+noc/fm/rules/classification/Cisco/IOS/config.py
+noc/fm/rules/classification/Cisco/IOS/config.pyc
+noc/fm/rules/classification/Cisco/IOS/config.pyo
+noc/fm/rules/classification/Cisco/IOS/dhcp.py
+noc/fm/rules/classification/Cisco/IOS/dhcp.pyc
+noc/fm/rules/classification/Cisco/IOS/dhcp.pyo
+noc/fm/rules/classification/Cisco/IOS/dns.py
+noc/fm/rules/classification/Cisco/IOS/dns.pyc
+noc/fm/rules/classification/Cisco/IOS/dns.pyo
+noc/fm/rules/classification/Cisco/IOS/dot11.py
+noc/fm/rules/classification/Cisco/IOS/dot11.pyc
+noc/fm/rules/classification/Cisco/IOS/dot11.pyo
+noc/fm/rules/classification/Cisco/IOS/eigrp.py
+noc/fm/rules/classification/Cisco/IOS/eigrp.pyc
+noc/fm/rules/classification/Cisco/IOS/eigrp.pyo
+noc/fm/rules/classification/Cisco/IOS/fallback.py
+noc/fm/rules/classification/Cisco/IOS/fallback.pyc
+noc/fm/rules/classification/Cisco/IOS/fallback.pyo
+noc/fm/rules/classification/Cisco/IOS/ipsec.py
+noc/fm/rules/classification/Cisco/IOS/ipsec.pyc
+noc/fm/rules/classification/Cisco/IOS/ipsec.pyo
+noc/fm/rules/classification/Cisco/IOS/link.py
+noc/fm/rules/classification/Cisco/IOS/link.pyc
+noc/fm/rules/classification/Cisco/IOS/link.pyo
+noc/fm/rules/classification/Cisco/IOS/loadbalance.py
+noc/fm/rules/classification/Cisco/IOS/loadbalance.pyc
+noc/fm/rules/classification/Cisco/IOS/loadbalance.pyo
+noc/fm/rules/classification/Cisco/IOS/logging.py
+noc/fm/rules/classification/Cisco/IOS/logging.pyc
+noc/fm/rules/classification/Cisco/IOS/logging.pyo
+noc/fm/rules/classification/Cisco/IOS/memory.py
+noc/fm/rules/classification/Cisco/IOS/memory.pyc
+noc/fm/rules/classification/Cisco/IOS/memory.pyo
+noc/fm/rules/classification/Cisco/IOS/misc.py
+noc/fm/rules/classification/Cisco/IOS/misc.pyc
+noc/fm/rules/classification/Cisco/IOS/misc.pyo
+noc/fm/rules/classification/Cisco/IOS/phone.py
+noc/fm/rules/classification/Cisco/IOS/phone.pyc
+noc/fm/rules/classification/Cisco/IOS/phone.pyo
+noc/fm/rules/classification/Cisco/IOS/poe.py
+noc/fm/rules/classification/Cisco/IOS/poe.pyc
+noc/fm/rules/classification/Cisco/IOS/poe.pyo
+noc/fm/rules/classification/Cisco/IOS/process.py
+noc/fm/rules/classification/Cisco/IOS/process.pyc
+noc/fm/rules/classification/Cisco/IOS/process.pyo
+noc/fm/rules/classification/Cisco/IOS/qos.py
+noc/fm/rules/classification/Cisco/IOS/qos.pyc
+noc/fm/rules/classification/Cisco/IOS/qos.pyo
+noc/fm/rules/classification/Cisco/IOS/radius.py
+noc/fm/rules/classification/Cisco/IOS/radius.pyc
+noc/fm/rules/classification/Cisco/IOS/radius.pyo
+noc/fm/rules/classification/Cisco/IOS/security.py
+noc/fm/rules/classification/Cisco/IOS/security.pyc
+noc/fm/rules/classification/Cisco/IOS/security.pyo
+noc/fm/rules/classification/Cisco/IOS/vtp.py
+noc/fm/rules/classification/Cisco/IOS/vtp.pyc
+noc/fm/rules/classification/Cisco/IOS/vtp.pyo
+noc/fm/rules/classification/Cisco/__init__.py
+noc/fm/rules/classification/Cisco/__init__.pyc
+noc/fm/rules/classification/Cisco/__init__.pyo
+noc/fm/rules/classification/DLink/DES3xxx/__init__.py
+noc/fm/rules/classification/DLink/DES3xxx/__init__.pyc
+noc/fm/rules/classification/DLink/DES3xxx/__init__.pyo
+noc/fm/rules/classification/DLink/DES3xxx/config.py
+noc/fm/rules/classification/DLink/DES3xxx/config.pyc
+noc/fm/rules/classification/DLink/DES3xxx/config.pyo
+noc/fm/rules/classification/DLink/DES3xxx/link.py
+noc/fm/rules/classification/DLink/DES3xxx/link.pyc
+noc/fm/rules/classification/DLink/DES3xxx/link.pyo
+noc/fm/rules/classification/DLink/__init__.py
+noc/fm/rules/classification/DLink/__init__.pyc
+noc/fm/rules/classification/DLink/__init__.pyo
+noc/fm/rules/classification/Force10/FTOS/__init__.py
+noc/fm/rules/classification/Force10/FTOS/__init__.pyc
+noc/fm/rules/classification/Force10/FTOS/__init__.pyo
+noc/fm/rules/classification/Force10/FTOS/config.py
+noc/fm/rules/classification/Force10/FTOS/config.pyc
+noc/fm/rules/classification/Force10/FTOS/config.pyo
+noc/fm/rules/classification/Force10/FTOS/link.py
+noc/fm/rules/classification/Force10/FTOS/link.pyc
+noc/fm/rules/classification/Force10/FTOS/link.pyo
+noc/fm/rules/classification/Force10/__init__.py
+noc/fm/rules/classification/Force10/__init__.pyc
+noc/fm/rules/classification/Force10/__init__.pyo
+noc/fm/rules/classification/Juniper/JUNOS/__init__.py
+noc/fm/rules/classification/Juniper/JUNOS/__init__.pyc
+noc/fm/rules/classification/Juniper/JUNOS/__init__.pyo
+noc/fm/rules/classification/Juniper/JUNOS/config.py
+noc/fm/rules/classification/Juniper/JUNOS/config.pyc
+noc/fm/rules/classification/Juniper/JUNOS/config.pyo
+noc/fm/rules/classification/Juniper/JUNOS/ldp.py
+noc/fm/rules/classification/Juniper/JUNOS/ldp.pyc
+noc/fm/rules/classification/Juniper/JUNOS/ldp.pyo
+noc/fm/rules/classification/Juniper/__init__.py
+noc/fm/rules/classification/Juniper/__init__.pyc
+noc/fm/rules/classification/Juniper/__init__.pyo
+noc/fm/rules/classification/Linksys/SPS2xx/__init__.py
+noc/fm/rules/classification/Linksys/SPS2xx/__init__.pyc
+noc/fm/rules/classification/Linksys/SPS2xx/__init__.pyo
+noc/fm/rules/classification/Linksys/SPS2xx/config.py
+noc/fm/rules/classification/Linksys/SPS2xx/config.pyc
+noc/fm/rules/classification/Linksys/SPS2xx/config.pyo
+noc/fm/rules/classification/Linksys/SPS2xx/link.py
+noc/fm/rules/classification/Linksys/SPS2xx/link.pyc
+noc/fm/rules/classification/Linksys/SPS2xx/link.pyo
+noc/fm/rules/classification/Linksys/__init__.py
+noc/fm/rules/classification/Linksys/__init__.pyc
+noc/fm/rules/classification/Linksys/__init__.pyo
+noc/fm/rules/classification/__init__.py
+noc/fm/rules/classification/__init__.pyc
+noc/fm/rules/classification/__init__.pyo
+noc/fm/rules/classification/auth.py
+noc/fm/rules/classification/auth.pyc
+noc/fm/rules/classification/auth.pyo
+noc/fm/rules/classification/bgp.py
+noc/fm/rules/classification/bgp.pyc
+noc/fm/rules/classification/bgp.pyo
+noc/fm/rules/classification/dot11.py
+noc/fm/rules/classification/dot11.pyc
+noc/fm/rules/classification/dot11.pyo
+noc/fm/rules/classification/f5/BIGIP/__init__.py
+noc/fm/rules/classification/f5/BIGIP/__init__.pyc
+noc/fm/rules/classification/f5/BIGIP/__init__.pyo
+noc/fm/rules/classification/f5/BIGIP/loadbalance.py
+noc/fm/rules/classification/f5/BIGIP/loadbalance.pyc
+noc/fm/rules/classification/f5/BIGIP/loadbalance.pyo
+noc/fm/rules/classification/f5/__init__.py
+noc/fm/rules/classification/f5/__init__.pyc
+noc/fm/rules/classification/f5/__init__.pyo
+noc/fm/rules/classification/fallback.py
+noc/fm/rules/classification/fallback.pyc
+noc/fm/rules/classification/fallback.pyo
+noc/fm/rules/classification/link.py
+noc/fm/rules/classification/link.pyc
+noc/fm/rules/classification/link.pyo
+noc/fm/rules/classification/stp.py
+noc/fm/rules/classification/stp.pyc
+noc/fm/rules/classification/stp.pyo
+noc/fm/rules/classification/system.py
+noc/fm/rules/classification/system.pyc
+noc/fm/rules/classification/system.pyo
+noc/fm/rules/correlation/__init__.py
+noc/fm/rules/correlation/__init__.pyc
+noc/fm/rules/correlation/__init__.pyo
+noc/fm/rules/correlation/bgp.krb
+noc/fm/rules/correlation/common.krb
+noc/fm/rules/correlation/ipsec.py
+noc/fm/rules/correlation/ipsec.pyc
+noc/fm/rules/correlation/ipsec.pyo
+noc/fm/rules/correlation/ldp.krb
+noc/fm/rules/correlation/link.py
+noc/fm/rules/correlation/link.pyc
+noc/fm/rules/correlation/link.pyo
+noc/fm/rules/correlation/loadbalance.py
+noc/fm/rules/correlation/loadbalance.pyc
+noc/fm/rules/correlation/loadbalance.pyo
+noc/fm/rules/correlation/system.py
+noc/fm/rules/correlation/system.pyc
+noc/fm/rules/correlation/system.pyo
+noc/fm/triggers/__init__.py
+noc/fm/triggers/__init__.pyc
+noc/fm/triggers/__init__.pyo
+noc/fm/triggers/on_config_changed.py
+noc/fm/triggers/on_config_changed.pyc
+noc/fm/triggers/on_config_changed.pyo
+noc/fm/urls.py
+noc/fm/urls.pyc
+noc/fm/urls.pyo
+noc/fm/view_rules.html
+noc/fm/views.py
+noc/fm/views.pyc
+noc/fm/views.pyo
+noc/ip/__init__.py
+noc/ip/__init__.pyc
+noc/ip/__init__.pyo
+noc/ip/admin.py
+noc/ip/admin.pyc
+noc/ip/admin.pyo
+noc/ip/allocate_block.html
+noc/ip/assign_address.html
+noc/ip/index.html
+noc/ip/migrations/0001_initial.py
+noc/ip/migrations/0001_initial.pyc
+noc/ip/migrations/0001_initial.pyo
+noc/ip/migrations/0002_plpgsql_triggers_and_functions.py
+noc/ip/migrations/0002_plpgsql_triggers_and_functions.pyc
+noc/ip/migrations/0002_plpgsql_triggers_and_functions.pyo
+noc/ip/migrations/0003_nocidr.py
+noc/ip/migrations/0003_nocidr.pyc
+noc/ip/migrations/0003_nocidr.pyo
+noc/ip/migrations/0004_default_vrf.py
+noc/ip/migrations/0004_default_vrf.pyc
+noc/ip/migrations/0004_default_vrf.pyo
+noc/ip/migrations/0005_free_ip.py
+noc/ip/migrations/0005_free_ip.pyc
+noc/ip/migrations/0005_free_ip.pyo
+noc/ip/migrations/__init__.py
+noc/ip/migrations/__init__.pyc
+noc/ip/migrations/__init__.pyo
+noc/ip/models.py
+noc/ip/models.pyc
+noc/ip/models.pyo
+noc/ip/reports/__init__.py
+noc/ip/reports/__init__.pyc
+noc/ip/reports/__init__.pyo
+noc/ip/reports/allocations.py
+noc/ip/reports/allocations.pyc
+noc/ip/reports/allocations.pyo
+noc/ip/reports/free.py
+noc/ip/reports/free.pyc
+noc/ip/reports/free.pyo
+noc/ip/reports/summary.py
+noc/ip/reports/summary.pyc
+noc/ip/reports/summary.pyo
+noc/ip/tools.html
+noc/ip/urls.py
+noc/ip/urls.pyc
+noc/ip/urls.pyo
+noc/ip/views.py
+noc/ip/views.pyc
+noc/ip/views.pyo
+noc/ip/vrf_index.html
+noc/kb/__init__.py
+noc/kb/__init__.pyc
+noc/kb/__init__.pyo
+noc/kb/admin.py
+noc/kb/admin.pyc
+noc/kb/admin.pyo
+noc/kb/index.html
+noc/kb/management/__init__.py
+noc/kb/management/__init__.pyc
+noc/kb/management/__init__.pyo
+noc/kb/management/commands/__init__.py
+noc/kb/management/commands/__init__.pyc
+noc/kb/management/commands/__init__.pyo
+noc/kb/management/commands/convert-moin.py
+noc/kb/management/commands/convert-moin.pyc
+noc/kb/management/commands/convert-moin.pyo
+noc/kb/migrations/0001_initial.py
+noc/kb/migrations/0001_initial.pyc
+noc/kb/migrations/0001_initial.pyo
+noc/kb/migrations/0002_kbentrypreviewlog.py
+noc/kb/migrations/0002_kbentrypreviewlog.pyc
+noc/kb/migrations/0002_kbentrypreviewlog.pyo
+noc/kb/migrations/0003_kb_entry_attachment.py
+noc/kb/migrations/0003_kb_entry_attachment.pyc
+noc/kb/migrations/0003_kb_entry_attachment.pyo
+noc/kb/migrations/0004_bookmarks.py
+noc/kb/migrations/0004_bookmarks.pyc
+noc/kb/migrations/0004_bookmarks.pyo
+noc/kb/migrations/0005_kb_entry_template.py
+noc/kb/migrations/0005_kb_entry_template.pyc
+noc/kb/migrations/0005_kb_entry_template.pyo
+noc/kb/migrations/__init__.py
+noc/kb/migrations/__init__.pyc
+noc/kb/migrations/__init__.pyo
+noc/kb/models.py
+noc/kb/models.pyc
+noc/kb/models.pyo
+noc/kb/parsers/__init__.py
+noc/kb/parsers/__init__.pyc
+noc/kb/parsers/__init__.pyo
+noc/kb/parsers/creole_parser.py
+noc/kb/parsers/creole_parser.pyc
+noc/kb/parsers/creole_parser.pyo
+noc/kb/parsers/csv_parser.py
+noc/kb/parsers/csv_parser.pyc
+noc/kb/parsers/csv_parser.pyo
+noc/kb/parsers/macros/__init__.py
+noc/kb/parsers/macros/__init__.pyc
+noc/kb/parsers/macros/__init__.pyo
+noc/kb/parsers/macros/format.py
+noc/kb/parsers/macros/format.pyc
+noc/kb/parsers/macros/format.pyo
+noc/kb/parsers/macros/now.py
+noc/kb/parsers/macros/now.pyc
+noc/kb/parsers/macros/now.pyo
+noc/kb/parsers/macros/rack.py
+noc/kb/parsers/macros/rack.pyc
+noc/kb/parsers/macros/rack.pyo
+noc/kb/parsers/macros/search.py
+noc/kb/parsers/macros/search.pyc
+noc/kb/parsers/macros/search.pyo
+noc/kb/parsers/plain_parser.py
+noc/kb/parsers/plain_parser.pyc
+noc/kb/parsers/plain_parser.pyo
+noc/kb/template_form.html
+noc/kb/template_index.html
+noc/kb/urls.py
+noc/kb/urls.pyc
+noc/kb/urls.pyo
+noc/kb/view.html
+noc/kb/views.py
+noc/kb/views.pyc
+noc/kb/views.pyo
+noc/lib/__init__.py
+noc/lib/__init__.pyc
+noc/lib/__init__.pyo
+noc/lib/daemon.py
+noc/lib/daemon.pyc
+noc/lib/daemon.pyo
+noc/lib/database_storage.py
+noc/lib/database_storage.pyc
+noc/lib/database_storage.pyo
+noc/lib/debug.py
+noc/lib/debug.pyc
+noc/lib/debug.pyo
+noc/lib/decorators.py
+noc/lib/decorators.pyc
+noc/lib/decorators.pyo
+noc/lib/ecma48.py
+noc/lib/ecma48.pyc
+noc/lib/ecma48.pyo
+noc/lib/fields.py
+noc/lib/fields.pyc
+noc/lib/fields.pyo
+noc/lib/fileutils.py
+noc/lib/fileutils.pyc
+noc/lib/fileutils.pyo
+noc/lib/fsm.py
+noc/lib/fsm.pyc
+noc/lib/fsm.pyo
+noc/lib/highlight.py
+noc/lib/highlight.pyc
+noc/lib/highlight.pyo
+noc/lib/ip.py
+noc/lib/ip.pyc
+noc/lib/ip.pyo
+noc/lib/nbsocket.py
+noc/lib/nbsocket.pyc
+noc/lib/nbsocket.pyo
+noc/lib/pyquote.py
+noc/lib/pyquote.pyc
+noc/lib/pyquote.pyo
+noc/lib/registry.py
+noc/lib/registry.pyc
+noc/lib/registry.pyo
+noc/lib/render.py
+noc/lib/render.pyc
+noc/lib/render.pyo
+noc/lib/rpsl.py
+noc/lib/rpsl.pyc
+noc/lib/rpsl.pyo
+noc/lib/svg.py
+noc/lib/svg.pyc
+noc/lib/svg.pyo
+noc/lib/sysutils.py
+noc/lib/sysutils.pyc
+noc/lib/sysutils.pyo
+noc/lib/text.py
+noc/lib/text.pyc
+noc/lib/text.pyo
+noc/lib/timepattern.py
+noc/lib/timepattern.pyc
+noc/lib/timepattern.pyo
+noc/lib/tt.py
+noc/lib/tt.pyc
+noc/lib/tt.pyo
+noc/lib/url.py
+noc/lib/url.pyc
+noc/lib/url.pyo
+noc/lib/validators.py
+noc/lib/validators.pyc
+noc/lib/validators.pyo
+noc/lib/version.py
+noc/lib/version.pyc
+noc/lib/version.pyo
+noc/lib/widgets.py
+noc/lib/widgets.pyc
+noc/lib/widgets.pyo
+noc/main/404.html
+noc/main/__init__.py
+noc/main/__init__.pyc
+noc/main/__init__.pyo
+noc/main/admin.py
+noc/main/admin.pyc
+noc/main/admin.pyo
+noc/main/config_index.html
+noc/main/config_view.html
+noc/main/failure.html
+noc/main/fcgi.py
+noc/main/fcgi.pyc
+noc/main/fcgi.pyo
+noc/main/index.html
+noc/main/launcher.py
+noc/main/launcher.pyc
+noc/main/launcher.pyo
+noc/main/management/__init__.py
+noc/main/management/__init__.pyc
+noc/main/management/__init__.pyo
+noc/main/management/commands/__init__.py
+noc/main/management/commands/__init__.pyc
+noc/main/management/commands/__init__.pyo
+noc/main/management/commands/build-manifest.py
+noc/main/management/commands/build-manifest.pyc
+noc/main/management/commands/build-manifest.pyo
+noc/main/management/commands/sync-doc.py
+noc/main/management/commands/sync-doc.pyc
+noc/main/management/commands/sync-doc.pyo
+noc/main/management/commands/sync-refbooks.py
+noc/main/management/commands/sync-refbooks.pyc
+noc/main/management/commands/sync-refbooks.pyo
+noc/main/menu.py
+noc/main/menu.pyc
+noc/main/menu.pyo
+noc/main/middleware.py
+noc/main/middleware.pyc
+noc/main/middleware.pyo
+noc/main/migrations/0001_initial.py
+noc/main/migrations/0001_initial.pyc
+noc/main/migrations/0001_initial.pyo
+noc/main/migrations/0002_no_task_schedule.py
+noc/main/migrations/0002_no_task_schedule.pyc
+noc/main/migrations/0002_no_task_schedule.pyo
+noc/main/migrations/0003_pg_dump.py
+noc/main/migrations/0003_pg_dump.pyc
+noc/main/migrations/0003_pg_dump.pyo
+noc/main/migrations/0004_language.py
+noc/main/migrations/0004_language.pyc
+noc/main/migrations/0004_language.pyo
+noc/main/migrations/0005_init_languages.py
+noc/main/migrations/0005_init_languages.pyc
+noc/main/migrations/0005_init_languages.pyo
+noc/main/migrations/0006_database_storage.py
+noc/main/migrations/0006_database_storage.pyc
+noc/main/migrations/0006_database_storage.pyo
+noc/main/migrations/0007_mimetype.py
+noc/main/migrations/0007_mimetype.pyc
+noc/main/migrations/0007_mimetype.pyo
+noc/main/migrations/0008_default_mime_types.py
+noc/main/migrations/0008_default_mime_types.pyc
+noc/main/migrations/0008_default_mime_types.pyo
+noc/main/migrations/0009_refbook.py
+noc/main/migrations/0009_refbook.pyc
+noc/main/migrations/0009_refbook.pyo
+noc/main/migrations/0010_refbook_data_array.py
+noc/main/migrations/0010_refbook_data_array.pyc
+noc/main/migrations/0010_refbook_data_array.pyo
+noc/main/migrations/0011_audit_trail.py
+noc/main/migrations/0011_audit_trail.pyc
+noc/main/migrations/0011_audit_trail.pyo
+noc/main/migrations/0012_time_pattern.py
+noc/main/migrations/0012_time_pattern.pyc
+noc/main/migrations/0012_time_pattern.pyo
+noc/main/migrations/0013_notifications.py
+noc/main/migrations/0013_notifications.pyc
+noc/main/migrations/0013_notifications.pyo
+noc/main/migrations/0014_default_time_patterns.py
+noc/main/migrations/0014_default_time_patterns.pyc
+noc/main/migrations/0014_default_time_patterns.pyo
+noc/main/migrations/0015_notification_link.py
+noc/main/migrations/0015_notification_link.pyc
+noc/main/migrations/0015_notification_link.pyo
+noc/main/migrations/0016_user_profile.py
+noc/main/migrations/0016_user_profile.pyc
+noc/main/migrations/0016_user_profile.pyo
+noc/main/migrations/0017_initial_userprofilecontacts.py
+noc/main/migrations/0017_initial_userprofilecontacts.pyc
+noc/main/migrations/0017_initial_userprofilecontacts.pyo
+noc/main/migrations/__init__.py
+noc/main/migrations/__init__.pyc
+noc/main/migrations/__init__.pyo
+noc/main/models.py
+noc/main/models.pyc
+noc/main/models.pyo
+noc/main/notifier.py
+noc/main/notifier.pyc
+noc/main/notifier.pyo
+noc/main/notify/__init__.py
+noc/main/notify/__init__.pyc
+noc/main/notify/__init__.pyo
+noc/main/notify/file.py
+noc/main/notify/file.pyc
+noc/main/notify/file.pyo
+noc/main/notify/mail.py
+noc/main/notify/mail.pyc
+noc/main/notify/mail.pyo
+noc/main/periodics/__init__.py
+noc/main/periodics/__init__.pyc
+noc/main/periodics/__init__.pyo
+noc/main/periodics/backup.py
+noc/main/periodics/backup.pyc
+noc/main/periodics/backup.pyo
+noc/main/periodics/cleanup_sessions.py
+noc/main/periodics/cleanup_sessions.pyc
+noc/main/periodics/cleanup_sessions.pyo
+noc/main/periodics/update_refbook.py
+noc/main/periodics/update_refbook.pyc
+noc/main/periodics/update_refbook.pyo
+noc/main/refbook_edit.html
+noc/main/refbook_index.html
+noc/main/refbook_item.html
+noc/main/refbook_new.html
+noc/main/refbook_view.html
+noc/main/refbooks/__init__.py
+noc/main/refbooks/__init__.pyc
+noc/main/refbooks/__init__.pyo
+noc/main/refbooks/downloaders/__init__.py
+noc/main/refbooks/downloaders/__init__.pyc
+noc/main/refbooks/downloaders/__init__.pyo
+noc/main/refbooks/downloaders/url_csv.py
+noc/main/refbooks/downloaders/url_csv.pyc
+noc/main/refbooks/downloaders/url_csv.pyo
+noc/main/refbooks/refbooks/__init__.py
+noc/main/refbooks/refbooks/__init__.pyc
+noc/main/refbooks/refbooks/__init__.pyo
+noc/main/refbooks/refbooks/e164.py
+noc/main/refbooks/refbooks/e164.pyc
+noc/main/refbooks/refbooks/e164.pyo
+noc/main/refbooks/refbooks/ieee.py
+noc/main/refbooks/refbooks/ieee.pyc
+noc/main/refbooks/refbooks/ieee.pyo
+noc/main/refbooks/refbooks/iso3166.py
+noc/main/refbooks/refbooks/iso3166.pyc
+noc/main/refbooks/refbooks/iso3166.pyo
+noc/main/refbooks/refbooks/q931.py
+noc/main/refbooks/refbooks/q931.pyc
+noc/main/refbooks/refbooks/q931.pyo
+noc/main/refbooks/refbooks/russian_number_plan.py
+noc/main/refbooks/refbooks/russian_number_plan.pyc
+noc/main/refbooks/refbooks/russian_number_plan.pyo
+noc/main/refbooks/refbooks/russian_number_registry.py
+noc/main/refbooks/refbooks/russian_number_registry.pyc
+noc/main/refbooks/refbooks/russian_number_registry.pyo
+noc/main/report.html
+noc/main/report.py
+noc/main/report.pyc
+noc/main/report.pyo
+noc/main/report_form.html
+noc/main/report_index.html
+noc/main/reports/__init__.py
+noc/main/reports/__init__.pyc
+noc/main/reports/__init__.pyo
+noc/main/reports/apps_loc.py
+noc/main/reports/apps_loc.pyc
+noc/main/reports/apps_loc.pyo
+noc/main/reports/backups.py
+noc/main/reports/backups.pyc
+noc/main/reports/backups.pyo
+noc/main/reports/database_summary.py
+noc/main/reports/database_summary.pyc
+noc/main/reports/database_summary.pyo
+noc/main/reports/system.py
+noc/main/reports/system.pyc
+noc/main/reports/system.pyo
+noc/main/search.html
+noc/main/search.py
+noc/main/search.pyc
+noc/main/search.pyo
+noc/main/success.html
+noc/main/templatetags/__init__.py
+noc/main/templatetags/__init__.pyc
+noc/main/templatetags/__init__.pyo
+noc/main/templatetags/paginator.html
+noc/main/templatetags/paginator.py
+noc/main/templatetags/paginator.pyc
+noc/main/templatetags/paginator.pyo
+noc/main/time_pattern_test.html
+noc/main/urls.py
+noc/main/urls.pyc
+noc/main/urls.pyo
+noc/main/views.py
+noc/main/views.pyc
+noc/main/views.pyo
+noc/main/wait.html
+noc/manage.py
+noc/manage.pyc
+noc/manage.pyo
+noc/peer/__init__.py
+noc/peer/__init__.pyc
+noc/peer/__init__.pyo
+noc/peer/admin.py
+noc/peer/admin.pyc
+noc/peer/admin.pyo
+noc/peer/as_dot.html
+noc/peer/builder.py
+noc/peer/builder.pyc
+noc/peer/builder.pyo
+noc/peer/lg.html
+noc/peer/migrations/0001_initial.py
+noc/peer/migrations/0001_initial.pyc
+noc/peer/migrations/0001_initial.pyo
+noc/peer/migrations/0002_register_rconfig.py
+noc/peer/migrations/0002_register_rconfig.pyc
+noc/peer/migrations/0002_register_rconfig.pyo
+noc/peer/migrations/0003_default_peeringpointtype.py
+noc/peer/migrations/0003_default_peeringpointtype.pyc
+noc/peer/migrations/0003_default_peeringpointtype.pyo
+noc/peer/migrations/0004_lg_query.py
+noc/peer/migrations/0004_lg_query.pyc
+noc/peer/migrations/0004_lg_query.pyo
+noc/peer/migrations/0005_lg_query_default_data.py
+noc/peer/migrations/0005_lg_query_default_data.pyc
+noc/peer/migrations/0005_lg_query_default_data.pyo
+noc/peer/migrations/0007_peering_point_lg_url.py
+noc/peer/migrations/0007_peering_point_lg_url.pyc
+noc/peer/migrations/0007_peering_point_lg_url.pyo
+noc/peer/migrations/0008_peering_point_location.py
+noc/peer/migrations/0008_peering_point_location.pyc
+noc/peer/migrations/0008_peering_point_location.pyo
+noc/peer/migrations/0009_filter_name.py
+noc/peer/migrations/0009_filter_name.pyc
+noc/peer/migrations/0009_filter_name.pyo
+noc/peer/migrations/0010_unregister_rconfig.py
+noc/peer/migrations/0010_unregister_rconfig.pyc
+noc/peer/migrations/0010_unregister_rconfig.pyo
+noc/peer/migrations/0011_remove_peering_point_type.py
+noc/peer/migrations/0011_remove_peering_point_type.pyc
+noc/peer/migrations/0011_remove_peering_point_type.pyo
+noc/peer/migrations/0012_community.py
+noc/peer/migrations/0012_community.pyc
+noc/peer/migrations/0012_community.pyo
+noc/peer/migrations/0013_community_types.py
+noc/peer/migrations/0013_community_types.pyc
+noc/peer/migrations/0013_community_types.pyo
+noc/peer/migrations/0014_inet_rtr.py
+noc/peer/migrations/0014_inet_rtr.pyc
+noc/peer/migrations/0014_inet_rtr.pyo
+noc/peer/migrations/0015_maintainer.py
+noc/peer/migrations/0015_maintainer.pyc
+noc/peer/migrations/0015_maintainer.pyo
+noc/peer/migrations/0016_no_lir.py
+noc/peer/migrations/0016_no_lir.pyc
+noc/peer/migrations/0016_no_lir.pyo
+noc/peer/migrations/0017_default_maintainer.py
+noc/peer/migrations/0017_default_maintainer.pyc
+noc/peer/migrations/0017_default_maintainer.pyo
+noc/peer/migrations/0018_no_lg.py
+noc/peer/migrations/0018_no_lg.pyc
+noc/peer/migrations/0018_no_lg.pyo
+noc/peer/migrations/0019_no_rcmd.py
+noc/peer/migrations/0019_no_rcmd.pyc
+noc/peer/migrations/0019_no_rcmd.pyo
+noc/peer/migrations/__init__.py
+noc/peer/migrations/__init__.pyc
+noc/peer/migrations/__init__.pyo
+noc/peer/models.py
+noc/peer/models.pyc
+noc/peer/models.pyo
+noc/peer/resolver.py
+noc/peer/resolver.pyc
+noc/peer/resolver.pyo
+noc/peer/tree.py
+noc/peer/tree.pyc
+noc/peer/tree.pyo
+noc/peer/urls.py
+noc/peer/urls.pyc
+noc/peer/urls.pyo
+noc/peer/views.py
+noc/peer/views.pyc
+noc/peer/views.pyo
+noc/peer/whois.py
+noc/peer/whois.pyc
+noc/peer/whois.pyo
+noc/pm/__init__.py
+noc/pm/__init__.pyc
+noc/pm/__init__.pyo
+noc/pm/models.py
+noc/pm/models.pyc
+noc/pm/models.pyo
+noc/pm/probes/__init__.py
+noc/pm/probes/__init__.pyc
+noc/pm/probes/__init__.pyo
+noc/pm/probes/http.py
+noc/pm/probes/http.pyc
+noc/pm/probes/http.pyo
+noc/pm/sla.py
+noc/pm/sla.pyc
+noc/pm/sla.pyo
+noc/pm/views.py
+noc/pm/views.pyc
+noc/pm/views.pyo
+noc/sa/__init__.py
+noc/sa/__init__.pyc
+noc/sa/__init__.pyo
+noc/sa/activator.py
+noc/sa/activator.pyc
+noc/sa/activator.pyo
+noc/sa/admin.py
+noc/sa/admin.pyc
+noc/sa/admin.pyo
+noc/sa/eventcollector.py
+noc/sa/eventcollector.pyc
+noc/sa/eventcollector.pyo
+noc/sa/interfaces/__init__.py
+noc/sa/interfaces/__init__.pyc
+noc/sa/interfaces/__init__.pyo
+noc/sa/interfaces/base.py
+noc/sa/interfaces/base.pyc
+noc/sa/interfaces/base.pyo
+noc/sa/interfaces/icommands.py
+noc/sa/interfaces/icommands.pyc
+noc/sa/interfaces/icommands.pyo
+noc/sa/interfaces/igetarp.py
+noc/sa/interfaces/igetarp.pyc
+noc/sa/interfaces/igetarp.pyo
+noc/sa/interfaces/igetconfig.py
+noc/sa/interfaces/igetconfig.pyc
+noc/sa/interfaces/igetconfig.pyo
+noc/sa/interfaces/igetdot11associations.py
+noc/sa/interfaces/igetdot11associations.pyc
+noc/sa/interfaces/igetdot11associations.pyo
+noc/sa/interfaces/igetmacaddresstable.py
+noc/sa/interfaces/igetmacaddresstable.pyc
+noc/sa/interfaces/igetmacaddresstable.pyo
+noc/sa/interfaces/igetversion.py
+noc/sa/interfaces/igetversion.pyc
+noc/sa/interfaces/igetversion.pyo
+noc/sa/interfaces/igetvlans.py
+noc/sa/interfaces/igetvlans.pyc
+noc/sa/interfaces/igetvlans.pyo
+noc/sa/interfaces/ihasvlan.py
+noc/sa/interfaces/ihasvlan.pyc
+noc/sa/interfaces/ihasvlan.pyo
+noc/sa/interfaces/iping.py
+noc/sa/interfaces/iping.pyc
+noc/sa/interfaces/iping.pyo
+noc/sa/management/__init__.py
+noc/sa/management/__init__.pyc
+noc/sa/management/__init__.pyo
+noc/sa/management/commands/__init__.py
+noc/sa/management/commands/__init__.pyc
+noc/sa/management/commands/__init__.pyo
+noc/sa/management/commands/debug-script.py
+noc/sa/management/commands/debug-script.pyc
+noc/sa/management/commands/debug-script.pyo
+noc/sa/management/commands/debug-xmlrpc.py
+noc/sa/management/commands/debug-xmlrpc.pyc
+noc/sa/management/commands/debug-xmlrpc.pyo
+noc/sa/migrations/0001_initial.py
+noc/sa/migrations/0001_initial.pyc
+noc/sa/migrations/0001_initial.pyo
+noc/sa/migrations/0002_trigger.py
+noc/sa/migrations/0002_trigger.pyc
+noc/sa/migrations/0002_trigger.pyo
+noc/sa/migrations/0003_task_schedule.py
+noc/sa/migrations/0003_task_schedule.pyc
+noc/sa/migrations/0003_task_schedule.pyo
+noc/sa/migrations/0004_no_task.py
+noc/sa/migrations/0004_no_task.pyc
+noc/sa/migrations/0004_no_task.pyo
+noc/sa/migrations/0005_activator.py
+noc/sa/migrations/0005_activator.pyc
+noc/sa/migrations/0005_activator.pyo
+noc/sa/migrations/0006_default_activator.py
+noc/sa/migrations/0006_default_activator.pyc
+noc/sa/migrations/0006_default_activator.pyo
+noc/sa/migrations/0007_managed_object.py
+noc/sa/migrations/0007_managed_object.pyc
+noc/sa/migrations/0007_managed_object.pyo
+noc/sa/migrations/0008_copy_objects.py
+noc/sa/migrations/0008_copy_objects.pyc
+noc/sa/migrations/0008_copy_objects.pyo
+noc/sa/migrations/0009_snmp_community.py
+noc/sa/migrations/0009_snmp_community.pyc
+noc/sa/migrations/0009_snmp_community.pyo
+noc/sa/migrations/0010_root_object.py
+noc/sa/migrations/0010_root_object.pyc
+noc/sa/migrations/0010_root_object.pyo
+noc/sa/migrations/0011_managedobject_location.py
+noc/sa/migrations/0011_managedobject_location.pyc
+noc/sa/migrations/0011_managedobject_location.pyo
+noc/sa/migrations/0012_managed_object_description.py
+noc/sa/migrations/0012_managed_object_description.pyc
+noc/sa/migrations/0012_managed_object_description.pyo
+noc/sa/migrations/0013_rename_DES3xxx.py
+noc/sa/migrations/0013_rename_DES3xxx.pyc
+noc/sa/migrations/0013_rename_DES3xxx.pyo
+noc/sa/migrations/0014_activator_to_ip.py
+noc/sa/migrations/0014_activator_to_ip.pyc
+noc/sa/migrations/0014_activator_to_ip.pyo
+noc/sa/migrations/0015_managedobjectselector.py
+noc/sa/migrations/0015_managedobjectselector.pyc
+noc/sa/migrations/0015_managedobjectselector.pyo
+noc/sa/migrations/0016_mapreduce.py
+noc/sa/migrations/0016_mapreduce.pyc
+noc/sa/migrations/0016_mapreduce.pyo
+noc/sa/migrations/0017_object_selector_filter_activator.py
+noc/sa/migrations/0017_object_selector_filter_activator.pyc
+noc/sa/migrations/0017_object_selector_filter_activator.pyo
+noc/sa/migrations/__init__.py
+noc/sa/migrations/__init__.pyc
+noc/sa/migrations/__init__.pyo
+noc/sa/models.py
+noc/sa/models.pyc
+noc/sa/models.pyo
+noc/sa/mr_task.html
+noc/sa/mr_task_result.html
+noc/sa/periodic.py
+noc/sa/periodic.pyc
+noc/sa/periodic.pyo
+noc/sa/profiles/Alcatel/AOS/__init__.py
+noc/sa/profiles/Alcatel/AOS/__init__.pyc
+noc/sa/profiles/Alcatel/AOS/__init__.pyo
+noc/sa/profiles/Alcatel/AOS/get_config.py
+noc/sa/profiles/Alcatel/AOS/get_config.pyc
+noc/sa/profiles/Alcatel/AOS/get_config.pyo
+noc/sa/profiles/Alcatel/AOS/get_version.py
+noc/sa/profiles/Alcatel/AOS/get_version.pyc
+noc/sa/profiles/Alcatel/AOS/get_version.pyo
+noc/sa/profiles/Alcatel/AOS/get_vlans.py
+noc/sa/profiles/Alcatel/AOS/get_vlans.pyc
+noc/sa/profiles/Alcatel/AOS/get_vlans.pyo
+noc/sa/profiles/Alcatel/AOS/supported.csv
+noc/sa/profiles/Alcatel/__init__.py
+noc/sa/profiles/Alcatel/__init__.pyc
+noc/sa/profiles/Alcatel/__init__.pyo
+noc/sa/profiles/Audiocodes/Mediant2000/__init__.py
+noc/sa/profiles/Audiocodes/Mediant2000/__init__.pyc
+noc/sa/profiles/Audiocodes/Mediant2000/__init__.pyo
+noc/sa/profiles/Audiocodes/Mediant2000/get_config.py
+noc/sa/profiles/Audiocodes/Mediant2000/get_config.pyc
+noc/sa/profiles/Audiocodes/Mediant2000/get_config.pyo
+noc/sa/profiles/Audiocodes/Mediant2000/get_version.py
+noc/sa/profiles/Audiocodes/Mediant2000/get_version.pyc
+noc/sa/profiles/Audiocodes/Mediant2000/get_version.pyo
+noc/sa/profiles/Audiocodes/Mediant2000/highlight.py
+noc/sa/profiles/Audiocodes/Mediant2000/highlight.pyc
+noc/sa/profiles/Audiocodes/Mediant2000/highlight.pyo
+noc/sa/profiles/Audiocodes/Mediant2000/supported.csv
+noc/sa/profiles/Audiocodes/__init__.py
+noc/sa/profiles/Audiocodes/__init__.pyc
+noc/sa/profiles/Audiocodes/__init__.pyo
+noc/sa/profiles/Cisco/ASA/__init__.py
+noc/sa/profiles/Cisco/ASA/__init__.pyc
+noc/sa/profiles/Cisco/ASA/__init__.pyo
+noc/sa/profiles/Cisco/ASA/get_config.py
+noc/sa/profiles/Cisco/ASA/get_config.pyc
+noc/sa/profiles/Cisco/ASA/get_config.pyo
+noc/sa/profiles/Cisco/ASA/get_version.py
+noc/sa/profiles/Cisco/ASA/get_version.pyc
+noc/sa/profiles/Cisco/ASA/get_version.pyo
+noc/sa/profiles/Cisco/ASA/highlight.py
+noc/sa/profiles/Cisco/ASA/highlight.pyc
+noc/sa/profiles/Cisco/ASA/highlight.pyo
+noc/sa/profiles/Cisco/ASA/supported.csv
+noc/sa/profiles/Cisco/FWSM/__init__.py
+noc/sa/profiles/Cisco/FWSM/__init__.pyc
+noc/sa/profiles/Cisco/FWSM/__init__.pyo
+noc/sa/profiles/Cisco/FWSM/get_config.py
+noc/sa/profiles/Cisco/FWSM/get_config.pyc
+noc/sa/profiles/Cisco/FWSM/get_config.pyo
+noc/sa/profiles/Cisco/FWSM/get_version.py
+noc/sa/profiles/Cisco/FWSM/get_version.pyc
+noc/sa/profiles/Cisco/FWSM/get_version.pyo
+noc/sa/profiles/Cisco/FWSM/highlight.py
+noc/sa/profiles/Cisco/FWSM/highlight.pyc
+noc/sa/profiles/Cisco/FWSM/highlight.pyo
+noc/sa/profiles/Cisco/FWSM/supported.csv
+noc/sa/profiles/Cisco/IOS/__init__.py
+noc/sa/profiles/Cisco/IOS/__init__.pyc
+noc/sa/profiles/Cisco/IOS/__init__.pyo
+noc/sa/profiles/Cisco/IOS/get_arp.py
+noc/sa/profiles/Cisco/IOS/get_arp.pyc
+noc/sa/profiles/Cisco/IOS/get_arp.pyo
+noc/sa/profiles/Cisco/IOS/get_config.py
+noc/sa/profiles/Cisco/IOS/get_config.pyc
+noc/sa/profiles/Cisco/IOS/get_config.pyo
+noc/sa/profiles/Cisco/IOS/get_dot11_associations.py
+noc/sa/profiles/Cisco/IOS/get_dot11_associations.pyc
+noc/sa/profiles/Cisco/IOS/get_dot11_associations.pyo
+noc/sa/profiles/Cisco/IOS/get_mac_address_table.py
+noc/sa/profiles/Cisco/IOS/get_mac_address_table.pyc
+noc/sa/profiles/Cisco/IOS/get_mac_address_table.pyo
+noc/sa/profiles/Cisco/IOS/get_version.py
+noc/sa/profiles/Cisco/IOS/get_version.pyc
+noc/sa/profiles/Cisco/IOS/get_version.pyo
+noc/sa/profiles/Cisco/IOS/get_vlans.py
+noc/sa/profiles/Cisco/IOS/get_vlans.pyc
+noc/sa/profiles/Cisco/IOS/get_vlans.pyo
+noc/sa/profiles/Cisco/IOS/highlight.py
+noc/sa/profiles/Cisco/IOS/highlight.pyc
+noc/sa/profiles/Cisco/IOS/highlight.pyo
+noc/sa/profiles/Cisco/IOS/ping.py
+noc/sa/profiles/Cisco/IOS/ping.pyc
+noc/sa/profiles/Cisco/IOS/ping.pyo
+noc/sa/profiles/Cisco/IOS/supported.csv
+noc/sa/profiles/Cisco/__init__.py
+noc/sa/profiles/Cisco/__init__.pyc
+noc/sa/profiles/Cisco/__init__.pyo
+noc/sa/profiles/DLink/DES3xxx/__init__.py
+noc/sa/profiles/DLink/DES3xxx/__init__.pyc
+noc/sa/profiles/DLink/DES3xxx/__init__.pyo
+noc/sa/profiles/DLink/DES3xxx/get_config.py
+noc/sa/profiles/DLink/DES3xxx/get_config.pyc
+noc/sa/profiles/DLink/DES3xxx/get_config.pyo
+noc/sa/profiles/DLink/DES3xxx/get_version.py
+noc/sa/profiles/DLink/DES3xxx/get_version.pyc
+noc/sa/profiles/DLink/DES3xxx/get_version.pyo
+noc/sa/profiles/DLink/DES3xxx/get_vlans.py
+noc/sa/profiles/DLink/DES3xxx/get_vlans.pyc
+noc/sa/profiles/DLink/DES3xxx/get_vlans.pyo
+noc/sa/profiles/DLink/DGS3xxx/__init__.py
+noc/sa/profiles/DLink/DGS3xxx/__init__.pyc
+noc/sa/profiles/DLink/DGS3xxx/__init__.pyo
+noc/sa/profiles/DLink/DGS3xxx/get_config.py
+noc/sa/profiles/DLink/DGS3xxx/get_config.pyc
+noc/sa/profiles/DLink/DGS3xxx/get_config.pyo
+noc/sa/profiles/DLink/DGS3xxx/get_version.py
+noc/sa/profiles/DLink/DGS3xxx/get_version.pyc
+noc/sa/profiles/DLink/DGS3xxx/get_version.pyo
+noc/sa/profiles/DLink/DGS3xxx/get_vlans.py
+noc/sa/profiles/DLink/DGS3xxx/get_vlans.pyc
+noc/sa/profiles/DLink/DGS3xxx/get_vlans.pyo
+noc/sa/profiles/DLink/__init__.py
+noc/sa/profiles/DLink/__init__.pyc
+noc/sa/profiles/DLink/__init__.pyo
+noc/sa/profiles/EdgeCore/ES35xx/__init__.py
+noc/sa/profiles/EdgeCore/ES35xx/__init__.pyc
+noc/sa/profiles/EdgeCore/ES35xx/__init__.pyo
+noc/sa/profiles/EdgeCore/ES35xx/get_config.py
+noc/sa/profiles/EdgeCore/ES35xx/get_config.pyc
+noc/sa/profiles/EdgeCore/ES35xx/get_config.pyo
+noc/sa/profiles/EdgeCore/ES35xx/get_version.py
+noc/sa/profiles/EdgeCore/ES35xx/get_version.pyc
+noc/sa/profiles/EdgeCore/ES35xx/get_version.pyo
+noc/sa/profiles/EdgeCore/ES35xx/highlight.py
+noc/sa/profiles/EdgeCore/ES35xx/highlight.pyc
+noc/sa/profiles/EdgeCore/ES35xx/highlight.pyo
+noc/sa/profiles/EdgeCore/ES35xx/supported.csv
+noc/sa/profiles/EdgeCore/ES4xxx/__init__.py
+noc/sa/profiles/EdgeCore/ES4xxx/__init__.pyc
+noc/sa/profiles/EdgeCore/ES4xxx/__init__.pyo
+noc/sa/profiles/EdgeCore/ES4xxx/get_config.py
+noc/sa/profiles/EdgeCore/ES4xxx/get_config.pyc
+noc/sa/profiles/EdgeCore/ES4xxx/get_config.pyo
+noc/sa/profiles/EdgeCore/ES4xxx/get_version.py
+noc/sa/profiles/EdgeCore/ES4xxx/get_version.pyc
+noc/sa/profiles/EdgeCore/ES4xxx/get_version.pyo
+noc/sa/profiles/EdgeCore/ES4xxx/highlight.py
+noc/sa/profiles/EdgeCore/ES4xxx/highlight.pyc
+noc/sa/profiles/EdgeCore/ES4xxx/highlight.pyo
+noc/sa/profiles/EdgeCore/ES4xxx/supported.csv
+noc/sa/profiles/EdgeCore/__init__.py
+noc/sa/profiles/EdgeCore/__init__.pyc
+noc/sa/profiles/EdgeCore/__init__.pyo
+noc/sa/profiles/Force10/FTOS/__init__.py
+noc/sa/profiles/Force10/FTOS/__init__.pyc
+noc/sa/profiles/Force10/FTOS/__init__.pyo
+noc/sa/profiles/Force10/FTOS/get_arp.py
+noc/sa/profiles/Force10/FTOS/get_arp.pyc
+noc/sa/profiles/Force10/FTOS/get_arp.pyo
+noc/sa/profiles/Force10/FTOS/get_config.py
+noc/sa/profiles/Force10/FTOS/get_config.pyc
+noc/sa/profiles/Force10/FTOS/get_config.pyo
+noc/sa/profiles/Force10/FTOS/get_mac_address_table.py
+noc/sa/profiles/Force10/FTOS/get_mac_address_table.pyc
+noc/sa/profiles/Force10/FTOS/get_mac_address_table.pyo
+noc/sa/profiles/Force10/FTOS/get_version.py
+noc/sa/profiles/Force10/FTOS/get_version.pyc
+noc/sa/profiles/Force10/FTOS/get_version.pyo
+noc/sa/profiles/Force10/FTOS/get_vlans.py
+noc/sa/profiles/Force10/FTOS/get_vlans.pyc
+noc/sa/profiles/Force10/FTOS/get_vlans.pyo
+noc/sa/profiles/Force10/FTOS/highlight.py
+noc/sa/profiles/Force10/FTOS/highlight.pyc
+noc/sa/profiles/Force10/FTOS/highlight.pyo
+noc/sa/profiles/Force10/FTOS/supported.csv
+noc/sa/profiles/Force10/__init__.py
+noc/sa/profiles/Force10/__init__.pyc
+noc/sa/profiles/Force10/__init__.pyo
+noc/sa/profiles/Generic/__init__.py
+noc/sa/profiles/Generic/__init__.pyc
+noc/sa/profiles/Generic/__init__.pyo
+noc/sa/profiles/Generic/commands.py
+noc/sa/profiles/Generic/commands.pyc
+noc/sa/profiles/Generic/commands.pyo
+noc/sa/profiles/Generic/has_vlan.py
+noc/sa/profiles/Generic/has_vlan.pyc
+noc/sa/profiles/Generic/has_vlan.pyo
+noc/sa/profiles/Huawei/UMG8900/__init__.py
+noc/sa/profiles/Huawei/UMG8900/__init__.pyc
+noc/sa/profiles/Huawei/UMG8900/__init__.pyo
+noc/sa/profiles/Huawei/UMG8900/get_config.py
+noc/sa/profiles/Huawei/UMG8900/get_config.pyc
+noc/sa/profiles/Huawei/UMG8900/get_config.pyo
+noc/sa/profiles/Huawei/VRP/__init__.py
+noc/sa/profiles/Huawei/VRP/__init__.pyc
+noc/sa/profiles/Huawei/VRP/__init__.pyo
+noc/sa/profiles/Huawei/VRP/get_config.py
+noc/sa/profiles/Huawei/VRP/get_config.pyc
+noc/sa/profiles/Huawei/VRP/get_config.pyo
+noc/sa/profiles/Huawei/VRP/get_version.py
+noc/sa/profiles/Huawei/VRP/get_version.pyc
+noc/sa/profiles/Huawei/VRP/get_version.pyo
+noc/sa/profiles/Huawei/VRP/get_vlans.py
+noc/sa/profiles/Huawei/VRP/get_vlans.pyc
+noc/sa/profiles/Huawei/VRP/get_vlans.pyo
+noc/sa/profiles/Huawei/VRP/highlight.py
+noc/sa/profiles/Huawei/VRP/highlight.pyc
+noc/sa/profiles/Huawei/VRP/highlight.pyo
+noc/sa/profiles/Huawei/VRP/supported.csv
+noc/sa/profiles/Huawei/__init__.py
+noc/sa/profiles/Huawei/__init__.pyc
+noc/sa/profiles/Huawei/__init__.pyo
+noc/sa/profiles/InfiNet/WANFlexX/__init__.py
+noc/sa/profiles/InfiNet/WANFlexX/__init__.pyc
+noc/sa/profiles/InfiNet/WANFlexX/__init__.pyo
+noc/sa/profiles/InfiNet/WANFlexX/get_config.py
+noc/sa/profiles/InfiNet/WANFlexX/get_config.pyc
+noc/sa/profiles/InfiNet/WANFlexX/get_config.pyo
+noc/sa/profiles/InfiNet/WANFlexX/get_version.py
+noc/sa/profiles/InfiNet/WANFlexX/get_version.pyc
+noc/sa/profiles/InfiNet/WANFlexX/get_version.pyo
+noc/sa/profiles/InfiNet/WANFlexX/supported.csv
+noc/sa/profiles/InfiNet/__init__.py
+noc/sa/profiles/InfiNet/__init__.pyc
+noc/sa/profiles/InfiNet/__init__.pyo
+noc/sa/profiles/Juniper/JUNOS/__init__.py
+noc/sa/profiles/Juniper/JUNOS/__init__.pyc
+noc/sa/profiles/Juniper/JUNOS/__init__.pyo
+noc/sa/profiles/Juniper/JUNOS/get_arp.py
+noc/sa/profiles/Juniper/JUNOS/get_arp.pyc
+noc/sa/profiles/Juniper/JUNOS/get_arp.pyo
+noc/sa/profiles/Juniper/JUNOS/get_config.py
+noc/sa/profiles/Juniper/JUNOS/get_config.pyc
+noc/sa/profiles/Juniper/JUNOS/get_config.pyo
+noc/sa/profiles/Juniper/JUNOS/get_version.py
+noc/sa/profiles/Juniper/JUNOS/get_version.pyc
+noc/sa/profiles/Juniper/JUNOS/get_version.pyo
+noc/sa/profiles/Juniper/JUNOS/highlight.py
+noc/sa/profiles/Juniper/JUNOS/highlight.pyc
+noc/sa/profiles/Juniper/JUNOS/highlight.pyo
+noc/sa/profiles/Juniper/JUNOS/supported.csv
+noc/sa/profiles/Juniper/JUNOSe/__init__.py
+noc/sa/profiles/Juniper/JUNOSe/__init__.pyc
+noc/sa/profiles/Juniper/JUNOSe/__init__.pyo
+noc/sa/profiles/Juniper/JUNOSe/get_config.py
+noc/sa/profiles/Juniper/JUNOSe/get_config.pyc
+noc/sa/profiles/Juniper/JUNOSe/get_config.pyo
+noc/sa/profiles/Juniper/JUNOSe/get_version.py
+noc/sa/profiles/Juniper/JUNOSe/get_version.pyc
+noc/sa/profiles/Juniper/JUNOSe/get_version.pyo
+noc/sa/profiles/Juniper/JUNOSe/supported.csv
+noc/sa/profiles/Juniper/SRCPE/__init__.py
+noc/sa/profiles/Juniper/SRCPE/__init__.pyc
+noc/sa/profiles/Juniper/SRCPE/__init__.pyo
+noc/sa/profiles/Juniper/SRCPE/get_config.py
+noc/sa/profiles/Juniper/SRCPE/get_config.pyc
+noc/sa/profiles/Juniper/SRCPE/get_config.pyo
+noc/sa/profiles/Juniper/SRCPE/get_version.py
+noc/sa/profiles/Juniper/SRCPE/get_version.pyc
+noc/sa/profiles/Juniper/SRCPE/get_version.pyo
+noc/sa/profiles/Juniper/ScreenOS/__init__.py
+noc/sa/profiles/Juniper/ScreenOS/__init__.pyc
+noc/sa/profiles/Juniper/ScreenOS/__init__.pyo
+noc/sa/profiles/Juniper/ScreenOS/get_config.py
+noc/sa/profiles/Juniper/ScreenOS/get_config.pyc
+noc/sa/profiles/Juniper/ScreenOS/get_config.pyo
+noc/sa/profiles/Juniper/ScreenOS/get_version.py
+noc/sa/profiles/Juniper/ScreenOS/get_version.pyc
+noc/sa/profiles/Juniper/ScreenOS/get_version.pyo
+noc/sa/profiles/Juniper/ScreenOS/highlight.py
+noc/sa/profiles/Juniper/ScreenOS/highlight.pyc
+noc/sa/profiles/Juniper/ScreenOS/highlight.pyo
+noc/sa/profiles/Juniper/ScreenOS/supported.csv
+noc/sa/profiles/Juniper/__init__.py
+noc/sa/profiles/Juniper/__init__.pyc
+noc/sa/profiles/Juniper/__init__.pyo
+noc/sa/profiles/Linksys/SPS2xx/__init__.py
+noc/sa/profiles/Linksys/SPS2xx/__init__.pyc
+noc/sa/profiles/Linksys/SPS2xx/__init__.pyo
+noc/sa/profiles/Linksys/SPS2xx/get_config.py
+noc/sa/profiles/Linksys/SPS2xx/get_config.pyc
+noc/sa/profiles/Linksys/SPS2xx/get_config.pyo
+noc/sa/profiles/Linksys/SPS2xx/get_version.py
+noc/sa/profiles/Linksys/SPS2xx/get_version.pyc
+noc/sa/profiles/Linksys/SPS2xx/get_version.pyo
+noc/sa/profiles/Linksys/SPS2xx/highlight.py
+noc/sa/profiles/Linksys/SPS2xx/highlight.pyc
+noc/sa/profiles/Linksys/SPS2xx/highlight.pyo
+noc/sa/profiles/Linksys/SPS2xx/supported.csv
+noc/sa/profiles/Linksys/__init__.py
+noc/sa/profiles/Linksys/__init__.pyc
+noc/sa/profiles/Linksys/__init__.pyo
+noc/sa/profiles/MikroTik/RouterOS/__init__.py
+noc/sa/profiles/MikroTik/RouterOS/__init__.pyc
+noc/sa/profiles/MikroTik/RouterOS/__init__.pyo
+noc/sa/profiles/MikroTik/RouterOS/get_config.py
+noc/sa/profiles/MikroTik/RouterOS/get_config.pyc
+noc/sa/profiles/MikroTik/RouterOS/get_config.pyo
+noc/sa/profiles/MikroTik/__init__.py
+noc/sa/profiles/MikroTik/__init__.pyc
+noc/sa/profiles/MikroTik/__init__.pyo
+noc/sa/profiles/Protei/MediaGateway/__init__.py
+noc/sa/profiles/Protei/MediaGateway/__init__.pyc
+noc/sa/profiles/Protei/MediaGateway/__init__.pyo
+noc/sa/profiles/Protei/MediaGateway/get_config.py
+noc/sa/profiles/Protei/MediaGateway/get_config.pyc
+noc/sa/profiles/Protei/MediaGateway/get_config.pyo
+noc/sa/profiles/Protei/MediaGateway/get_version.py
+noc/sa/profiles/Protei/MediaGateway/get_version.pyc
+noc/sa/profiles/Protei/MediaGateway/get_version.pyo
+noc/sa/profiles/Protei/MediaGateway/supported.csv
+noc/sa/profiles/Protei/__init__.py
+noc/sa/profiles/Protei/__init__.pyc
+noc/sa/profiles/Protei/__init__.pyo
+noc/sa/profiles/Ubiquiti/AirOS/__init__.py
+noc/sa/profiles/Ubiquiti/AirOS/__init__.pyc
+noc/sa/profiles/Ubiquiti/AirOS/__init__.pyo
+noc/sa/profiles/Ubiquiti/AirOS/get_config.py
+noc/sa/profiles/Ubiquiti/AirOS/get_config.pyc
+noc/sa/profiles/Ubiquiti/AirOS/get_config.pyo
+noc/sa/profiles/Ubiquiti/AirOS/get_version.py
+noc/sa/profiles/Ubiquiti/AirOS/get_version.pyc
+noc/sa/profiles/Ubiquiti/AirOS/get_version.pyo
+noc/sa/profiles/Ubiquiti/AirOS/supported.csv
+noc/sa/profiles/Ubiquiti/__init__.py
+noc/sa/profiles/Ubiquiti/__init__.pyc
+noc/sa/profiles/Ubiquiti/__init__.pyo
+noc/sa/profiles/VoiceFinder/AddPack/__init__.py
+noc/sa/profiles/VoiceFinder/AddPack/__init__.pyc
+noc/sa/profiles/VoiceFinder/AddPack/__init__.pyo
+noc/sa/profiles/VoiceFinder/AddPack/get_config.py
+noc/sa/profiles/VoiceFinder/AddPack/get_config.pyc
+noc/sa/profiles/VoiceFinder/AddPack/get_config.pyo
+noc/sa/profiles/VoiceFinder/AddPack/get_version.py
+noc/sa/profiles/VoiceFinder/AddPack/get_version.pyc
+noc/sa/profiles/VoiceFinder/AddPack/get_version.pyo
+noc/sa/profiles/VoiceFinder/AddPack/highlight.py
+noc/sa/profiles/VoiceFinder/AddPack/highlight.pyc
+noc/sa/profiles/VoiceFinder/AddPack/highlight.pyo
+noc/sa/profiles/VoiceFinder/AddPack/supported.csv
+noc/sa/profiles/VoiceFinder/__init__.py
+noc/sa/profiles/VoiceFinder/__init__.pyc
+noc/sa/profiles/VoiceFinder/__init__.pyo
+noc/sa/profiles/ZTE/ZXDSL531/__init__.py
+noc/sa/profiles/ZTE/ZXDSL531/__init__.pyc
+noc/sa/profiles/ZTE/ZXDSL531/__init__.pyo
+noc/sa/profiles/ZTE/ZXDSL531/get_config.py
+noc/sa/profiles/ZTE/ZXDSL531/get_config.pyc
+noc/sa/profiles/ZTE/ZXDSL531/get_config.pyo
+noc/sa/profiles/ZTE/ZXDSL531/get_dot11_associations.py
+noc/sa/profiles/ZTE/ZXDSL531/get_dot11_associations.pyc
+noc/sa/profiles/ZTE/ZXDSL531/get_dot11_associations.pyo
+noc/sa/profiles/ZTE/ZXDSL531/get_version.py
+noc/sa/profiles/ZTE/ZXDSL531/get_version.pyc
+noc/sa/profiles/ZTE/ZXDSL531/get_version.pyo
+noc/sa/profiles/ZTE/ZXDSL531/highlight.py
+noc/sa/profiles/ZTE/ZXDSL531/highlight.pyc
+noc/sa/profiles/ZTE/ZXDSL531/highlight.pyo
+noc/sa/profiles/ZTE/ZXDSL531/supported.csv
+noc/sa/profiles/ZTE/__init__.py
+noc/sa/profiles/ZTE/__init__.pyc
+noc/sa/profiles/ZTE/__init__.pyo
+noc/sa/profiles/Zebra/Zebra/__init__.py
+noc/sa/profiles/Zebra/Zebra/__init__.pyc
+noc/sa/profiles/Zebra/Zebra/__init__.pyo
+noc/sa/profiles/Zebra/Zebra/get_config.py
+noc/sa/profiles/Zebra/Zebra/get_config.pyc
+noc/sa/profiles/Zebra/Zebra/get_config.pyo
+noc/sa/profiles/Zebra/__init__.py
+noc/sa/profiles/Zebra/__init__.pyc
+noc/sa/profiles/Zebra/__init__.pyo
+noc/sa/profiles/Zyxel/ZyNOS/__init__.py
+noc/sa/profiles/Zyxel/ZyNOS/__init__.pyc
+noc/sa/profiles/Zyxel/ZyNOS/__init__.pyo
+noc/sa/profiles/Zyxel/ZyNOS/get_config.py
+noc/sa/profiles/Zyxel/ZyNOS/get_config.pyc
+noc/sa/profiles/Zyxel/ZyNOS/get_config.pyo
+noc/sa/profiles/Zyxel/ZyNOS/get_version.py
+noc/sa/profiles/Zyxel/ZyNOS/get_version.pyc
+noc/sa/profiles/Zyxel/ZyNOS/get_version.pyo
+noc/sa/profiles/Zyxel/ZyNOS/highlight.py
+noc/sa/profiles/Zyxel/ZyNOS/highlight.pyc
+noc/sa/profiles/Zyxel/ZyNOS/highlight.pyo
+noc/sa/profiles/Zyxel/ZyNOS/supported.csv
+noc/sa/profiles/Zyxel/__init__.py
+noc/sa/profiles/Zyxel/__init__.pyc
+noc/sa/profiles/Zyxel/__init__.pyo
+noc/sa/profiles/__init__.py
+noc/sa/profiles/__init__.pyc
+noc/sa/profiles/__init__.pyo
+noc/sa/profiles/f5/BIGIP/__init__.py
+noc/sa/profiles/f5/BIGIP/__init__.pyc
+noc/sa/profiles/f5/BIGIP/__init__.pyo
+noc/sa/profiles/f5/BIGIP/get_config.py
+noc/sa/profiles/f5/BIGIP/get_config.pyc
+noc/sa/profiles/f5/BIGIP/get_config.pyo
+noc/sa/profiles/f5/BIGIP/get_version.py
+noc/sa/profiles/f5/BIGIP/get_version.pyc
+noc/sa/profiles/f5/BIGIP/get_version.pyo
+noc/sa/profiles/f5/BIGIP/highlight.py
+noc/sa/profiles/f5/BIGIP/highlight.pyc
+noc/sa/profiles/f5/BIGIP/highlight.pyo
+noc/sa/profiles/f5/BIGIP/supported.csv
+noc/sa/profiles/f5/__init__.py
+noc/sa/profiles/f5/__init__.pyc
+noc/sa/profiles/f5/__init__.pyo
+noc/sa/protocols/Makefile
+noc/sa/protocols/__init__.py
+noc/sa/protocols/__init__.pyc
+noc/sa/protocols/__init__.pyo
+noc/sa/protocols/sae.proto
+noc/sa/protocols/sae_pb2.py
+noc/sa/protocols/sae_pb2.pyc
+noc/sa/protocols/sae_pb2.pyo
+noc/sa/reports/__init__.py
+noc/sa/reports/__init__.pyc
+noc/sa/reports/__init__.pyo
+noc/sa/reports/activator_status.py
+noc/sa/reports/activator_status.pyc
+noc/sa/reports/activator_status.pyo
+noc/sa/reports/objects_by_administrative_domains.py
+noc/sa/reports/objects_by_administrative_domains.pyc
+noc/sa/reports/objects_by_administrative_domains.pyo
+noc/sa/reports/objects_by_groups.py
+noc/sa/reports/objects_by_groups.pyc
+noc/sa/reports/objects_by_groups.pyo
+noc/sa/reports/objects_by_profiles.py
+noc/sa/reports/objects_by_profiles.pyc
+noc/sa/reports/objects_by_profiles.pyo
+noc/sa/reports/objects_by_profiles_and_domains.py
+noc/sa/reports/objects_by_profiles_and_domains.pyc
+noc/sa/reports/objects_by_profiles_and_domains.pyo
+noc/sa/reports/scripts.py
+noc/sa/reports/scripts.pyc
+noc/sa/reports/scripts.pyo
+noc/sa/reports/supported_equipment.py
+noc/sa/reports/supported_equipment.pyc
+noc/sa/reports/supported_equipment.pyo
+noc/sa/rpc.py
+noc/sa/rpc.pyc
+noc/sa/rpc.pyo
+noc/sa/sae.py
+noc/sa/sae.pyc
+noc/sa/sae.pyo
+noc/sa/script.html
+noc/sa/script.py
+noc/sa/script.pyc
+noc/sa/script.pyo
+noc/sa/scripts.html
+noc/sa/scripts/__init__.py
+noc/sa/scripts/__init__.pyc
+noc/sa/scripts/__init__.pyo
+noc/sa/scripts/check_supported.py
+noc/sa/scripts/check_supported.pyc
+noc/sa/scripts/check_supported.pyo
+noc/sa/scripts/matrix_report.py
+noc/sa/scripts/matrix_report.pyc
+noc/sa/scripts/matrix_report.pyo
+noc/sa/scripts/result_report.py
+noc/sa/scripts/result_report.pyc
+noc/sa/scripts/result_report.pyo
+noc/sa/syslogcollector.py
+noc/sa/syslogcollector.pyc
+noc/sa/syslogcollector.pyo
+noc/sa/test_selector.html
+noc/sa/tools.html
+noc/sa/trapcollector.py
+noc/sa/trapcollector.pyc
+noc/sa/trapcollector.pyo
+noc/sa/urls.py
+noc/sa/urls.pyc
+noc/sa/urls.pyo
+noc/sa/views.py
+noc/sa/views.pyc
+noc/sa/views.pyo
+noc/scripts/clone-activator
+noc/scripts/noc-activator.py
+noc/scripts/noc-classifier.py
+noc/scripts/noc-correlator.py
+noc/scripts/noc-fcgi.py
+noc/scripts/noc-launcher.py
+noc/scripts/noc-notifier.py
+noc/scripts/noc-sae.py
+noc/scripts/noc-sla.py
+noc/scripts/post-install
+noc/scripts/post-update
+noc/scripts/stdin-wrapper
+noc/scripts/update-supported
+noc/settings.py
+noc/settings.pyc
+noc/settings.pyo
+noc/setup.cfg
+noc/setup.py
+noc/share/dns/bind/README
+noc/share/dns/bind/hgrc
+noc/share/dns/bind/named-update
+noc/share/dns/bind/named-update.conf
+noc/share/doc/en/ag/Makefile
+noc/share/doc/en/ag/conf.py
+noc/share/doc/en/ag/configuration.rst
+noc/share/doc/en/ag/conventions.rst
+noc/share/doc/en/ag/database.rst
+noc/share/doc/en/ag/index.rst
+noc/share/doc/en/ag/install.rst
+noc/share/doc/en/ag/install_source.rst
+noc/share/doc/en/ag/license.rst
+noc/share/doc/en/ag/linux.rst
+noc/share/doc/en/ag/overview.rst
+noc/share/doc/en/ag/solaris10.rst
+noc/share/doc/en/ag/specific.rst
+noc/share/doc/en/ag/testing.rst
+noc/share/doc/en/ag/update.rst
+noc/share/doc/en/ag/webserver.rst
+noc/share/doc/en/index/Makefile
+noc/share/doc/en/index/conf.py
+noc/share/doc/en/index/index.rst
+noc/share/doc/en/ug/Makefile
+noc/share/doc/en/ug/cm.rst
+noc/share/doc/en/ug/conf.py
+noc/share/doc/en/ug/configuration.rst
+noc/share/doc/en/ug/conventions.rst
+noc/share/doc/en/ug/datetime_format.rst
+noc/share/doc/en/ug/dns.rst
+noc/share/doc/en/ug/dns_workflow.png
+noc/share/doc/en/ug/features.rst
+noc/share/doc/en/ug/fm.rst
+noc/share/doc/en/ug/fm_event_classification.png
+noc/share/doc/en/ug/fm_event_processing.png
+noc/share/doc/en/ug/index.rst
+noc/share/doc/en/ug/ip.rst
+noc/share/doc/en/ug/kb.rst
+noc/share/doc/en/ug/license.rst
+noc/share/doc/en/ug/main.rst
+noc/share/doc/en/ug/modules.rst
+noc/share/doc/en/ug/overview.rst
+noc/share/doc/en/ug/peer.rst
+noc/share/doc/en/ug/profiles/Alcatel.AOS.rst
+noc/share/doc/en/ug/profiles/Audiocodes.Mediant2000.rst
+noc/share/doc/en/ug/profiles/Cisco.ASA.rst
+noc/share/doc/en/ug/profiles/Cisco.FWSM.rst
+noc/share/doc/en/ug/profiles/Cisco.IOS.rst
+noc/share/doc/en/ug/profiles/DLink.DES3xxx.rst
+noc/share/doc/en/ug/profiles/DLink.DGS3xxx.rst
+noc/share/doc/en/ug/profiles/EdgeCore.ES35xx.rst
+noc/share/doc/en/ug/profiles/EdgeCore.ES4xxx.rst
+noc/share/doc/en/ug/profiles/Force10.FTOS.rst
+noc/share/doc/en/ug/profiles/Huawei.UMG8900.rst
+noc/share/doc/en/ug/profiles/Huawei.VRP.rst
+noc/share/doc/en/ug/profiles/InfiNet.WANFlexX.rst
+noc/share/doc/en/ug/profiles/Juniper.JUNOS.rst
+noc/share/doc/en/ug/profiles/Juniper.JUNOSe.rst
+noc/share/doc/en/ug/profiles/Juniper.SRCPE.rst
+noc/share/doc/en/ug/profiles/Juniper.ScreenOS.rst
+noc/share/doc/en/ug/profiles/Linksys.SPS2xx.rst
+noc/share/doc/en/ug/profiles/MikroTik.RouterOS.rst
+noc/share/doc/en/ug/profiles/Protei.MediaGateway.rst
+noc/share/doc/en/ug/profiles/Ubiquity.AirOS.rst
+noc/share/doc/en/ug/profiles/VoiceFinder.AddPack.rst
+noc/share/doc/en/ug/profiles/ZTE.ZXDSL531.rst
+noc/share/doc/en/ug/profiles/Zebra.Zebra.rst
+noc/share/doc/en/ug/profiles/ZyXEL.ZyNOS.rst
+noc/share/doc/en/ug/profiles/f5.BIGIP.rst
+noc/share/doc/en/ug/sa.rst
+noc/share/doc/en/ug/sa_activator_fsm.png
+noc/share/doc/en/ug/sa_arch.png
+noc/share/doc/en/ug/supported.rst
+noc/share/doc/en/ug/vc.rst
+noc/share/doc/ext/supported.py
+noc/share/doc/index/Makefile
+noc/share/doc/index/conf.py
+noc/share/doc/index/index.rst
+noc/share/linux/lsb/init.d/noc-launcher
+noc/share/linux/lsb/sysconfig/noc
+noc/share/linux/ubuntu/init.d/noc-launcher
+noc/share/mibs/BGP4-MIB.mib
+noc/share/mibs/BRIDGE-MIB.mib
+noc/share/mibs/CISCO-BGP4-MIB.mib
+noc/share/mibs/CISCO-CONFIG-MAN-MIB.mib
+noc/share/mibs/CISCO-DIAL-CONTROL-MIB.mib
+noc/share/mibs/CISCO-IPSEC-FLOW-MONITOR-MIB.mib
+noc/share/mibs/CISCO-IPSEC-MIB.mib
+noc/share/mibs/CISCO-ISDN-MIB.mib
+noc/share/mibs/CISCO-MEDIA-GATEWAY-MIB.mib
+noc/share/mibs/CISCO-SMI.mib
+noc/share/mibs/CISCO-STP-EXTENSIONS-MIB.mib
+noc/share/mibs/CISCO-SYSLOG-MIB.mib
+noc/share/mibs/CISCO-TC.mib
+noc/share/mibs/CISCO-VTP-MIB.mib
+noc/share/mibs/CISCOTRAP-MIB.mib
+noc/share/mibs/DIAL-CONTROL-MIB.mib
+noc/share/mibs/F5-BIGIP-COMMON-MIB.mib
+noc/share/mibs/HCNUM-TC.mib
+noc/share/mibs/IANAifType-MIB.mib
+noc/share/mibs/IEEE802dot11-MIB.mib
+noc/share/mibs/IF-MIB.mib
+noc/share/mibs/INET-ADDRESS-MIB.mib
+noc/share/mibs/ISDN-MIB.mib
+noc/share/mibs/JUNIPER-CFGMGMT-MIB.mib
+noc/share/mibs/JUNIPER-CHASSIS-DEFINES-MIB.mib
+noc/share/mibs/JUNIPER-COLLECTOR-MIB.mib
+noc/share/mibs/JUNIPER-LDP-MIB.mib
+noc/share/mibs/JUNIPER-MPLS-LDP-MIB.mib
+noc/share/mibs/JUNIPER-SMI.mib
+noc/share/mibs/JUNIPER-VPN-MIB.mib
+noc/share/mibs/MPLS-TC-STD-MIB.mib
+noc/share/mibs/MPLS-VPN-MIB.mib
+noc/share/mibs/OLD-CISCO-INTERFACES-MIB.mib
+noc/share/mibs/OLD-CISCO-SYSTEM-MIB.mib
+noc/share/mibs/OLD-CISCO-TCP-MIB.mib
+noc/share/mibs/OLD-CISCO-TS-MIB.mib
+noc/share/mibs/OSPF-MIB.mib
+noc/share/mibs/OSPF-TRAP-MIB.mib
+noc/share/mibs/RFC-1212.mib
+noc/share/mibs/RFC-1215.mib
+noc/share/mibs/RFC1155-SMI.mib
+noc/share/mibs/RFC1213-MIB.mib
+noc/share/mibs/SNMP-FRAMEWORK-MIB.mib
+noc/share/mibs/SNMPv2-CONF.mib
+noc/share/mibs/SNMPv2-MIB.mib
+noc/share/mibs/SNMPv2-SMI.mib
+noc/share/mibs/SNMPv2-TC.mib
+noc/share/sphinx/templates/layout.html
+noc/share/sunos/manifest/noc-activator.xml
+noc/share/sunos/manifest/noc-classifier.xml
+noc/share/sunos/manifest/noc-correlator.xml
+noc/share/sunos/manifest/noc-fcgi.xml
+noc/share/sunos/manifest/noc-sae.xml
+noc/static/css/databrowse.css
+noc/static/css/diff.css
+noc/static/css/highlight.css
+noc/static/css/jquery.autocomplete.css
+noc/static/css/jquery.pager.css
+noc/static/css/login.css
+noc/static/css/main.css
+noc/static/css/menu.css
+noc/static/css/pygments.css
+noc/static/css/rack.css
+noc/static/css/sphinx.css
+noc/static/img/indicator.gif
+noc/static/img/logo.png
+noc/static/js/jquery.autocomplete.js
+noc/static/js/jquery.form.js
+noc/static/js/jquery.js
+noc/static/js/jquery.pager.js
+noc/static/js/menu.js
+noc/template/admin/base.html
+noc/template/admin/base_site.html
+noc/template/admin/change_list.html
+noc/template/admin/cm/config/change_list.html
+noc/template/admin/cm/dns/change_list.html
+noc/template/admin/cm/prefixlist/change_list.html
+noc/template/admin/cm/rpsl/change_list.html
+noc/template/admin/fm/eventclassificationrule/change_form.html
+noc/template/admin/fm/eventclassificationrule/change_list.html
+noc/template/admin/fm/eventcorrelationrule/change_list.html
+noc/template/admin/fm/eventpostprocessingrule/change_form.html
+noc/template/admin/fm/eventpostprocessingrule/change_list.html
+noc/template/admin/fm/mib/change_list.html
+noc/template/admin/kb/kbentry/change_form.html
+noc/template/admin/login.html
+noc/template/admin/sa/managedobject/change_list.html
+noc/template/admin/vc/vc/change_list.html
+noc/template/databrowse/base.html
+noc/template/login.html
+noc/template/template.html
+noc/urls.py
+noc/urls.pyc
+noc/urls.pyo
+noc/vc/__init__.py
+noc/vc/__init__.pyc
+noc/vc/__init__.pyo
+noc/vc/admin.py
+noc/vc/admin.pyc
+noc/vc/admin.pyo
+noc/vc/migrations/0001_initial.py
+noc/vc/migrations/0001_initial.pyc
+noc/vc/migrations/0001_initial.pyo
+noc/vc/migrations/0002_default_vc_domain.py
+noc/vc/migrations/0002_default_vc_domain.pyc
+noc/vc/migrations/0002_default_vc_domain.pyo
+noc/vc/migrations/0003_vc_type.py
+noc/vc/migrations/0003_vc_type.pyc
+noc/vc/migrations/0003_vc_type.pyo
+noc/vc/migrations/__init__.py
+noc/vc/migrations/__init__.pyc
+noc/vc/migrations/__init__.pyo
+noc/vc/models.py
+noc/vc/models.pyc
+noc/vc/models.pyo
+noc/vc/sa_import_vlans.html
+noc/vc/urls.py
+noc/vc/urls.pyc
+noc/vc/urls.pyo
+noc/vc/views.py
+noc/vc/views.pyc
+noc/vc/views.pyo
+@dirrm noc/vc/migrations
+@dirrm noc/vc
+@dirrm noc/template/databrowse
+@dirrm noc/template/admin/vc/vc
+@dirrm noc/template/admin/vc
+@dirrm noc/template/admin/sa/managedobject
+@dirrm noc/template/admin/sa
+@dirrm noc/template/admin/kb/kbentry
+@dirrm noc/template/admin/kb
+@dirrm noc/template/admin/fm/mib
+@dirrm noc/template/admin/fm/eventpostprocessingrule
+@dirrm noc/template/admin/fm/eventcorrelationrule
+@dirrm noc/template/admin/fm/eventclassificationrule
+@dirrm noc/template/admin/fm
+@dirrm noc/template/admin/cm/rpsl
+@dirrm noc/template/admin/cm/prefixlist
+@dirrm noc/template/admin/cm/dns
+@dirrm noc/template/admin/cm/config
+@dirrm noc/template/admin/cm
+@dirrm noc/template/admin
+@dirrm noc/template
+@dirrm noc/share/sunos/manifest
+@dirrm noc/share/sunos
+@dirrm noc/share/sphinx/templates
+@dirrm noc/share/sphinx
+@dirrm noc/share/mibs
+@dirrm noc/share/linux/ubuntu/init.d
+@dirrm noc/share/linux/ubuntu
+@dirrm noc/share/linux/lsb/sysconfig
+@dirrm noc/share/linux/lsb/init.d
+@dirrm noc/share/linux/lsb
+@dirrm noc/share/linux
+@dirrm noc/share/doc/index
+@dirrm noc/share/doc/ext
+@dirrm noc/share/doc/en/ug/profiles
+@dirrm noc/share/doc/en/ug
+@dirrm noc/share/doc/en/index
+@dirrm noc/share/doc/en/ag
+@dirrm noc/share/doc/en
+@dirrm noc/share/doc
+@dirrm noc/share/dns/bind
+@dirrm noc/share/dns
+@dirrm noc/share
+@dirrm noc/scripts
+@dirrm noc/sa/scripts
+@dirrm noc/sa/reports
+@dirrm noc/sa/protocols
+@dirrm noc/sa/profiles/f5/BIGIP
+@dirrm noc/sa/profiles/f5
+@dirrm noc/sa/profiles/Zyxel/ZyNOS
+@dirrm noc/sa/profiles/Zyxel
+@dirrm noc/sa/profiles/Zebra/Zebra
+@dirrm noc/sa/profiles/Zebra
+@dirrm noc/sa/profiles/ZTE/ZXDSL531
+@dirrm noc/sa/profiles/ZTE
+@dirrm noc/sa/profiles/VoiceFinder/AddPack
+@dirrm noc/sa/profiles/VoiceFinder
+@dirrm noc/sa/profiles/Ubiquiti/AirOS
+@dirrm noc/sa/profiles/Ubiquiti
+@dirrm noc/sa/profiles/Protei/MediaGateway
+@dirrm noc/sa/profiles/Protei
+@dirrm noc/sa/profiles/MikroTik/RouterOS
+@dirrm noc/sa/profiles/MikroTik
+@dirrm noc/sa/profiles/Linksys/SPS2xx
+@dirrm noc/sa/profiles/Linksys
+@dirrm noc/sa/profiles/Juniper/ScreenOS
+@dirrm noc/sa/profiles/Juniper/SRCPE
+@dirrm noc/sa/profiles/Juniper/JUNOSe
+@dirrm noc/sa/profiles/Juniper/JUNOS
+@dirrm noc/sa/profiles/Juniper
+@dirrm noc/sa/profiles/InfiNet/WANFlexX
+@dirrm noc/sa/profiles/InfiNet
+@dirrm noc/sa/profiles/Huawei/VRP
+@dirrm noc/sa/profiles/Huawei/UMG8900
+@dirrm noc/sa/profiles/Huawei
+@dirrm noc/sa/profiles/Generic
+@dirrm noc/sa/profiles/Force10/FTOS
+@dirrm noc/sa/profiles/Force10
+@dirrm noc/sa/profiles/EdgeCore/ES4xxx
+@dirrm noc/sa/profiles/EdgeCore/ES35xx
+@dirrm noc/sa/profiles/EdgeCore
+@dirrm noc/sa/profiles/DLink/DGS3xxx
+@dirrm noc/sa/profiles/DLink/DES3xxx
+@dirrm noc/sa/profiles/DLink
+@dirrm noc/sa/profiles/Cisco/IOS
+@dirrm noc/sa/profiles/Cisco/FWSM
+@dirrm noc/sa/profiles/Cisco/ASA
+@dirrm noc/sa/profiles/Cisco
+@dirrm noc/sa/profiles/Audiocodes/Mediant2000
+@dirrm noc/sa/profiles/Audiocodes
+@dirrm noc/sa/profiles/Alcatel/AOS
+@dirrm noc/sa/profiles/Alcatel
+@dirrm noc/sa/profiles
+@dirrm noc/sa/migrations
+@dirrm noc/sa/management/commands
+@dirrm noc/sa/management
+@dirrm noc/sa/interfaces
+@dirrm noc/sa
+@dirrm noc/pm/probes
+@dirrm noc/pm
+@dirrm noc/peer/migrations
+@dirrm noc/peer
+@dirrm noc/main/templatetags
+@dirrm noc/main/reports
+@dirrm noc/main/refbooks/refbooks
+@dirrm noc/main/refbooks/downloaders
+@dirrm noc/main/refbooks
+@dirrm noc/main/periodics
+@dirrm noc/main/notify
+@dirrm noc/main/migrations
+@dirrm noc/main/management/commands
+@dirrm noc/main/management
+@dirrm noc/main
+@dirrm noc/lib
+@dirrm noc/kb/parsers/macros
+@dirrm noc/kb/parsers
+@dirrm noc/kb/migrations
+@dirrm noc/kb/management/commands
+@dirrm noc/kb/management
+@dirrm noc/kb
+@dirrm noc/ip/reports
+@dirrm noc/ip/migrations
+@dirrm noc/ip
+@dirrm noc/fm/triggers
+@dirrm noc/fm/rules/correlation
+@dirrm noc/fm/rules/classification/f5/BIGIP
+@dirrm noc/fm/rules/classification/f5
+@dirrm noc/fm/rules/classification/Linksys/SPS2xx
+@dirrm noc/fm/rules/classification/Linksys
+@dirrm noc/fm/rules/classification/Juniper/JUNOS
+@dirrm noc/fm/rules/classification/Juniper
+@dirrm noc/fm/rules/classification/Force10/FTOS
+@dirrm noc/fm/rules/classification/Force10
+@dirrm noc/fm/rules/classification/DLink/DES3xxx
+@dirrm noc/fm/rules/classification/DLink
+@dirrm noc/fm/rules/classification/Cisco/IOS
+@dirrm noc/fm/rules/classification/Cisco
+@dirrm noc/fm/rules/classification/Audiocodes/Mediant2000
+@dirrm noc/fm/rules/classification/Audiocodes
+@dirrm noc/fm/rules/classification
+@dirrm noc/fm/rules/classes/Cisco/IOS
+@dirrm noc/fm/rules/classes/Cisco
+@dirrm noc/fm/rules/classes
+@dirrm noc/fm/rules
+@dirrm noc/fm/reports
+@dirrm noc/fm/periodics
+@dirrm noc/fm/migrations
+@dirrm noc/fm/management/commands
+@dirrm noc/fm/management
+@dirrm noc/fm
+@dirrm noc/dns/reports
+@dirrm noc/dns/migrations
+@dirrm noc/dns/generators
+@dirrm noc/dns
+@dirrm noc/cm/vcs
+@dirrm noc/cm/reports
+@dirrm noc/cm/periodics
+@dirrm noc/cm/migrations
+@dirrm noc/cm/management/commands
+@dirrm noc/cm/management
+@dirrm noc/cm
+@dirrmtry noc/local
+@dirrmtry noc/static/js
+@dirrmtry noc/static/img
+@dirrmtry noc/static/doc
+@dirrmtry noc/static/css
+@dirrmtry noc/static
+@dirrmtry noc/etc
+@dirrmtry noc
+@unexec rmdir %%LOCALSTATE_DIR%% 2>/dev/null || true
+@unexec rmdir %%NOCDBDIR%%/repo 2>/dev/null || true
+@unexec rmdir %%NOCDBDIR%%/backup 2>/dev/null || true
+@unexec rmdir %%NOCDBDIR%% 2>/dev/null || true