diff options
author | John Levon <john.levon@joyent.com> | 2019-07-25 21:34:31 +0000 |
---|---|---|
committer | John Levon <john.levon@joyent.com> | 2019-07-25 21:34:31 +0000 |
commit | a963854b67bacddb87ba62a3df25047bbd7a9c9f (patch) | |
tree | a38dded1723ad35a266d5e2a74e9e7da650b8b14 | |
parent | 6e04fa6cccda0acde6d243e1c282dbcd3ca9b073 (diff) | |
download | illumos-joyent-OS-7685.tar.gz |
re-add missing stub sysidtool methodsOS-7685
-rw-r--r-- | manifest | 2 | ||||
-rw-r--r-- | usr/src/cmd/svc/milestone/Makefile | 2 | ||||
-rwxr-xr-x | usr/src/cmd/svc/milestone/sysidtool-net | 5 | ||||
-rwxr-xr-x | usr/src/cmd/svc/milestone/sysidtool-system | 5 |
4 files changed, 14 insertions, 0 deletions
@@ -1841,6 +1841,8 @@ f lib/svc/method/svc-tnd 0555 root sys f lib/svc/method/svc-utmpd 0555 root bin f lib/svc/method/svc-vrrp 0555 root sys f lib/svc/method/svc-zones 0555 root sys +f lib/svc/method/sysidtool-net 0555 root bin +f lib/svc/method/sysidtool-system 0555 root bin f lib/svc/method/system-log 0555 root bin f lib/svc/method/vtdaemon 0555 root bin f lib/svc/method/yp 0555 root bin diff --git a/usr/src/cmd/svc/milestone/Makefile b/usr/src/cmd/svc/milestone/Makefile index c4afcce880..576576ba2e 100644 --- a/usr/src/cmd/svc/milestone/Makefile +++ b/usr/src/cmd/svc/milestone/Makefile @@ -137,6 +137,8 @@ SVCMETHOD=\ smartdc-config \ smartdc-init \ smartdc-ur \ + sysidtool-net \ + sysidtool-system \ vtdaemon $(ROOTSVCMETHOD) := FILEMODE = 0555 diff --git a/usr/src/cmd/svc/milestone/sysidtool-net b/usr/src/cmd/svc/milestone/sysidtool-net new file mode 100755 index 0000000000..538d17bba1 --- /dev/null +++ b/usr/src/cmd/svc/milestone/sysidtool-net @@ -0,0 +1,5 @@ +#!/bin/sh + +# This exists solely to support the service on older SmartOS zone images. + +exit 0 diff --git a/usr/src/cmd/svc/milestone/sysidtool-system b/usr/src/cmd/svc/milestone/sysidtool-system new file mode 100755 index 0000000000..538d17bba1 --- /dev/null +++ b/usr/src/cmd/svc/milestone/sysidtool-system @@ -0,0 +1,5 @@ +#!/bin/sh + +# This exists solely to support the service on older SmartOS zone images. + +exit 0 |