14 lines
252 B
Bash
14 lines
252 B
Bash
echo '
|
|
[Unit]
|
|
Description=Запуск Основного сайта
|
|
|
|
[Service]
|
|
ExecStart=/home/elforcer/FlaskSite/MainSite/Gunicorn.sh
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
'>/etc/systemd/system/site_main.service
|
|
|
|
|
|
systemctl enable site_main.service
|