summaryrefslogtreecommitdiff
path: root/python/vyos/defaults.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/vyos/defaults.py')
-rw-r--r--python/vyos/defaults.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/vyos/defaults.py b/python/vyos/defaults.py
index 354e4d362..ca5e02834 100644
--- a/python/vyos/defaults.py
+++ b/python/vyos/defaults.py
@@ -13,6 +13,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
+import os
directories = {
"data": "/usr/share/vyos/",
@@ -31,6 +32,8 @@ cfg_vintage = 'vyos'
commit_lock = '/opt/vyatta/config/.lock'
+component_version_json = os.path.join(directories['data'], 'component-versions.json')
+
https_data = {
'listen_addresses' : { '*': ['_'] }
}