File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
88
99### Added
1010### Changed
11+ - Fixed python path in systemd unit file.
12+
1113### Removed
1214
1315## [ 2.3.1] 2025-07-11
Original file line number Diff line number Diff line change 22 " _common" : {
33 " build_dir" : " pkg-build" ,
44 " version" : " {version}" ,
5- " pkg_version" : " 1 " ,
5+ " pkg_version" : " 3 " ,
66 " archive" : {
77 " path" : " /opt" ,
88 " filename" : " err-stackstorm_{version}_{distro}_x86_64.tar.gz"
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ function install_extensions
110110 for proj in " ${ROOT} /${location} " /*
111111 do
112112 # Install from pyproject
113- test -f " ${proj} /pyproject.toml" && pip install -e " ${proj} "
113+ test -f " ${proj} /pyproject.toml" && pip install " ${proj} "
114114 # Install from requirements
115115 test -f " ${proj} /requirements.txt" && pip install -r " ${proj} /requirements.txt"
116116 done
@@ -180,7 +180,7 @@ function install_errbot
180180 wget " https://github.com/errbotio/errbot/archive/refs/tags/${ERRBOT_VERSION} .tar.gz" -O errbot-v${ERRBOT_VERSION} .tar.gz
181181 tar xf errbot-v${ERRBOT_VERSION} .tar.gz
182182 cd errbot-${ERRBOT_VERSION}
183- pip install -e .[IRC,XMPP,telegram]
183+ pip install .[IRC,XMPP,telegram]
184184 fetch_archives
185185 install_extensions
186186 prune_installation
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ After=network.target
55[Service]
66User =errbot
77Environment ="CONFIGFILE=/opt/errbot/config.py"
8- ExecStart =/opt/errbot/bin/python /opt/errbot/bin/errbot --config $CONFIGFILE
8+ ExecStart =/opt/errbot/venv/ bin/python /opt/errbot/venv /bin/errbot --config $CONFIGFILE
99ExecStop =/bin/kill -SIGINT $MAINPID
1010Restart =on-failure
1111
You can’t perform that action at this time.
0 commit comments