Skip to content

Commit ec5b7ad

Browse files
committed
Test
1 parent fb4c300 commit ec5b7ad

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ if (isMac()) {
9191
// need to update all due to dependencies
9292
// run(`sudo apt-get update -o Dir::Etc::sourcelist="sources.list.d/mssql-server-${sqlserverVersion}.list" -o Dir::Etc::sourceparts="-" -o APT::Get::List-Cleanup="0"`);
9393
run(`sudo apt-get update`);
94+
// skip man-db triggers for performance
95+
run(`sudo mv /var/lib/man-db/auto-update /var/lib/man-db/auto-update.bak`);
9496
run(`sudo apt-get install mssql-server mssql-tools`);
97+
run(`sudo mv /var/lib/man-db/auto-update.bak /var/lib/man-db/auto-update`);
9598
run(`sudo MSSQL_SA_PASSWORD='YourStrong!Passw0rd' MSSQL_PID=developer /opt/mssql/bin/mssql-conf -n setup accept-eula`);
9699

97100
waitForReady();

0 commit comments

Comments
 (0)