Skip to content

Commit

Permalink
Merge pull request omniosorg#146 from citrus-it/overlay
Browse files Browse the repository at this point in the history
Disable varpd service in installer
  • Loading branch information
hadfl authored Mar 3, 2020
2 parents 6ee068f + 979f031 commit c1b3d89
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
12 changes: 8 additions & 4 deletions build/build_miniroot
Original file line number Diff line number Diff line change
Expand Up @@ -309,11 +309,14 @@ step() {
-d ${ROOTDIR}/lib/svc/manifest
/bin/rm -f /tmp/manifest-import.$$

echo " --- neutering boot-archive"
${SVCCFG} -s 'system/boot-archive' setprop 'start/exec=:true'
for s in system/boot-archive \
system/manifest-import \
network/varpd
do
echo " --- neutering $s"
${SVCCFG} -s "$s" setprop 'start/exec=:true'
done

echo " --- neutering the manifest import"
${SVCCFG} -s 'system/manifest-import' setprop 'start/exec=:true'
echo "#!/bin/ksh" > ${ROOTDIR}/lib/svc/method/manifest-import
echo "exit 0" >> ${ROOTDIR}/lib/svc/method/manifest-import
chmod 555 ${ROOTDIR}/lib/svc/method/manifest-import
Expand Down Expand Up @@ -388,6 +391,7 @@ EOM
echo "-- SANITY CHECK FAILED, see above"
echo
mv $of $WORKDIR/sanity.baseline
chmod go+r $WORKDIR/sanity.baseline
exit 1
fi
rm -f $of
Expand Down
1 change: 1 addition & 0 deletions data/baseline
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Missing dependency for lib/inet/in.mpathd - libipmp.so.1 [LAZY]
Missing dependency for lib/ld.so.1 - libld.so.4 [LAZY]
Missing dependency for lib/ld.so.1 - liblddbg.so.4 [LAZY]
Missing dependency for lib/ld.so.1 - librtld.so.1 [LAZY]
Missing dependency for lib/libdladm.so.1 - libvarpd.so.1 [LAZY]
Missing dependency for lib/svc/method/svc-stmf - libstmf.so.1 [LAZY]
Missing dependency for sbin/bootadm - libficl-sys.so.4.1.0 [LAZY]
Missing dependency for sbin/dladm - librstp.so.1 [LAZY]
Expand Down

0 comments on commit c1b3d89

Please sign in to comment.