Jonathan Hart

ONOS-4400: Run daemon-reload as part of onos-install for systemd systems

Change-Id: Id73b3fb54b58e1b8444b2eccb21b8a067ac45405
(cherry picked from commit 4ca2f449)
...@@ -85,6 +85,9 @@ ssh -tt $remote " ...@@ -85,6 +85,9 @@ ssh -tt $remote "
85 echo 'log4j.logger.org.apache.sshd = WARN' \ 85 echo 'log4j.logger.org.apache.sshd = WARN' \
86 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg 86 >> $ONOS_INSTALL_DIR/$KARAF_DIST/etc/org.ops4j.pax.logging.cfg
87 87
88 + # Set up the ONOS service on systemd-based systems
89 + sudo systemctl daemon-reload || true
90 +
88 " 91 "
89 92
90 # Configure the ONOS installation 93 # Configure the ONOS installation
......