Skip to content

Commit fe6b881

Browse files
committed
Set DEBIAN_FRONTEND before running Tarantool installer
Closes #73
1 parent a7bdbc2 commit fe6b881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tarantool/db.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
(c/su
156156
(c/exec :curl :-O :-L "https://tarantool.io/installer.sh")
157157
(c/exec :chmod :+x "./installer.sh")
158-
(c/exec (str "VER=" version) "./installer.sh")
158+
(c/exec :env "DEBIAN_FRONTEND=noninteractive" (str "VER=" version) "./installer.sh")
159159
(c/su (c/exec :systemctl :stop "tarantool@example"))))
160160

161161
(defn install!

0 commit comments

Comments
 (0)