Skip to content
Snippets Groups Projects
Commit b695a863 authored by tamaina's avatar tamaina
Browse files

oops

parent f1086d88
No related branches found
No related tags found
No related merge requests found
......@@ -71,6 +71,11 @@ echo "Y = To use Docker / N = To use systemd"
read -r -p "[Y/n] > " yn
case "$yn" in
[Nn]|[Nn][Oo])
echo "Use Systemd.";
method=systemd;
misskey_localhost=localhost
;;
*)
echo "Use Docker.";
method=docker;
......@@ -82,11 +87,6 @@ case "$yn" in
echo "The host name of docker host to bind with 'docker run --add-host='.";
read -r -p "> " -e -i "docker_host" misskey_localhost;
;;
*)
echo "Use Systemd.";
method=systemd;
misskey_localhost=localhost
;;
esac
#endregion
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment