Skip to content

Commit

Permalink
fixed typo in check for running instances
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwall committed Jul 4, 2024
1 parent c643109 commit 7eaa62e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ case "$1" in
set_config_permissions
setup_init $pid1
enable_weewxd $pid1
if [ $num_weewx -gt 0 ]; then
if [ $num_weewxd -gt 0 ]; then
start_weewxd $pid1
fi
;;
Expand Down
2 changes: 1 addition & 1 deletion pkg/weewx.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ precompile
set_config_permissions
setup_init $pid1
enable_weewxd $pid1
if [ $num_weewx -gt 0 ]; then
if [ $num_weewxd -gt 0 ]; then
start_weewxd $pid1
fi

Expand Down

0 comments on commit 7eaa62e

Please sign in to comment.