-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #295 from square/syncom/live-usb-creator-two-build…
…-types Differentiate ISO types: dev or release
- Loading branch information
Showing
5 changed files
with
144 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
|
||
############################################################################### | ||
# Install NCipher for development image | ||
############################################################################### | ||
|
||
# note that we have to do this after livemedia boot, because the install script behaves differently based on whether | ||
# a PCI NShield is plugged in, and we don’t want our ISO build to depend on having a PCI Nshield plugged in | ||
|
||
pushd /opt/nfast/driver | ||
./configure | ||
make install | ||
popd | ||
|
||
pushd /opt/nfast/sbin | ||
./install | ||
popd | ||
|
||
/opt/nfast/bin/config-serverstartup --enable-tcp --enable-privileged-tcp | ||
# restart the hardserver for the changes to take effect | ||
/opt/nfast/sbin/init.d-ncipher restart | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters