summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2013-05-02 01:40:53 +0400
committerIgor Pashev <pashev.igor@gmail.com>2013-05-02 01:40:53 +0400
commitecfdcab2bcd1e155212fb65e16e31a0ec6044ce1 (patch)
treea04e1286680aae8d7b51ef2c1b84ba328e28e3c7 /install
parenta33642a66fef0749f374fcee70f55e6d37976170 (diff)
downloadlive-ecfdcab2bcd1e155212fb65e16e31a0ec6044ce1.tar.gz
Need SVCCFG_CHECKHASH or else manifests will be reimported at boot
Diffstat (limited to 'install')
-rwxr-xr-xinstall3
1 files changed, 2 insertions, 1 deletions
diff --git a/install b/install
index dde095e..ff8201a 100755
--- a/install
+++ b/install
@@ -807,7 +807,8 @@ def configure_smf():
progress.advance()
svccfg_cmd = Popen(['/usr/sbin/chroot', rootdir, '/usr/sbin/svccfg', 'import', m],
stderr=PIPE, stdout=PIPE, stdin=PIPE,
- env={'SVCCFG_REPOSITORY':'/etc/svc/repository.db'})
+ env={'SVCCFG_REPOSITORY':'/etc/svc/repository.db',
+ 'SVCCFG_CHECKHASH':'1'})
svccfg_cmd.communicate()
svccfg_cmd.wait()
except: