Skip to content

Commit 8df6682

Browse files
committed
Fix for issue #39
1 parent 96e68e9 commit 8df6682

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

library/junos_install_config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,8 @@ def junos_install_config(module, dev):
168168
overwrite = module.boolean(module.params['overwrite'])
169169
if True == overwrite:
170170
load_args['overwrite'] = True
171+
elif False == overwrite:
172+
load_args['merge'] = True
171173
cu.load(**load_args)
172174
except ValueError as err:
173175
logging.error("unable to load config:{0}".format(err.message))

version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = "0.3.0"
2-
DATE = "2014-Aug-15"
1+
VERSION = "0.4.0"
2+
DATE = "2014-Aug-15"

0 commit comments

Comments
 (0)