Skip to content

Commit

Permalink
Dev-branch hopeful fix for #667
Browse files Browse the repository at this point in the history
  • Loading branch information
mastacontrola committed Jan 14, 2025
1 parent 423a55d commit 09341f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/common/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ interface2broadcast() {
echo "No interface passed"
return 1
fi
echo $(ip -4 addr show | grep -w inet | grep $interface | awk '{print $4}')
echo $(ip -4 addr show $interface | grep -oP 'brd \K\S+')
}
subtract1fromAddress() {
local ip=$1
Expand Down
2 changes: 1 addition & 1 deletion packages/web/lib/fog/system.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private static function _versionCompare()
public function __construct()
{
self::_versionCompare();
define('FOG_VERSION', '1.5.10.1629');
define('FOG_VERSION', '1.5.10.1634');
define('FOG_SCHEMA', 273);
define('FOG_BCACHE_VER', 141);
define('FOG_CLIENT_VERSION', '0.13.0');
Expand Down

0 comments on commit 09341f2

Please sign in to comment.