Latest FOG 0.33b
-
r981 out.
Added ID searching fields to the Group and Host searching elements.
Still working towards reintegrating Internationalization bits, but almost there!.
Moved inventory display to Inventory Class.
-
Hmm I’ve imported all my stuff and search does not work
-
You may have to ensure the hostid matches the inventory hostid
-
Also,
Have you upgraded to the latest revision? I’m guess you have, but that would only leave the thought from above. When you imported the hosts, did you import as CSV? If you did with CSV, it recreates the hostID’s so the Inventory table’s iHostID would be incorrect.
-
Yes I’m on R982, I’ve imported the hostid’s from CSV into a testserver then exported the SQL to my NEW testserver… I’ll double check, I can click on hardware for a host and get the correct info
BTW a search for a dell[FONT=sans-serif][COLOR=#000000] service tag, results in fog showing me all my hosts[/COLOR][/FONT]
-
What element of the search are you looking for?
Here are all the options that are searched for:
[php] public $searchQuery = ‘SELECT hosts.* FROM hosts
LEFT OUTER JOIN
(SELECT * FROM hostMAC WHERE hmMAC LIKE “%${keyword}%”) hostMAC
ON (hmHostID=hostID)
LEFT OUTER JOIN
inventory
ON (iHostID=hostID)
LEFT OUTER JOIN
(SELECT * FROM groups INNER JOIN groupMembers ON (gmGroupID=groupID) WHERE groupName LIKE “%${keyword}%” OR groupDesc LIKE “%${keyword}%”) groupMembers
ON (gmHostID=hostID)
WHERE
hostID LIKE “%${keyword}%” OR
hostName LIKE “%${keyword}%” OR
hostDesc LIKE “%${keyword}%” OR
hostIP LIKE “%${keyword}%” OR
hostMAC LIKE “%${keyword}%” OR
groupID LIKE “%${keyword}%” OR
groupName LIKE “%${keyword}%” OR
groupDesc LIKE “%${keyword}%” OR
iSysserial LIKE “%${keyword}%” OR
iCaseserial LIKE “%${keyword}%” OR
iMbserial LIKE “%${keyword}%” OR
iPrimaryUser LIKE “%${keyword}%” OR
iOtherTag LIKE “%${keyword}%” OR
iOtherTag1 LIKE “%${keyword}%” OR
iSysman LIKE “%${keyword}%” OR
iSysproduct LIKE “%${keyword}%”
GROUP BY
hostID DESC’;[/php] -
[FONT=Ubuntu][COLOR=#555555]If I do a search for [/COLOR][/FONT][FONT=monospace][COLOR=#dd0000]iSysserial[/COLOR][/FONT]
[FONT=Ubuntu][COLOR=#555555]HDYZDK1 or a host [/COLOR][/FONT][FONT=Ubuntu][COLOR=#555555]name like 2014-spare-01 or part of a name[/COLOR][/FONT]
[FONT=Ubuntu][COLOR=#555555]Fog will show ALL my hosts.[/COLOR][/FONT][FONT=Ubuntu][COLOR=#555555]Also doublechecked my hostID and inventory iHostID they match.If I seach for something I know is not there I get an error searching message.[/COLOR][/FONT]
-
When you look at inventory, are all the hosts sitting with the same information?
I have one of my systems, (while I’ve been testing) set with serial iSysserial as abcd1234, and another set to antidisestab (again, just to test) and when I search for serial, it gives me the proper host. If I search for something as simple as “abc” I have a few hosts which show up because their mac address contains that as well.
I’ve not been getting all my hosts though which makes me wonder what your individual host information is set as.
-
[S]I have 820 hosts… a mix of various Optiplexes and Lenovos. my naming convention is location,room,machine number[/S]
[S]so es-45-01 etc[/S][S]Went back into the sql database to make triple sure my ID’s matched up.[/S]
[S]I’m now in the process of creating a VM of a .33 with “new” hosts, to check if my imports messed it up[/S][COLOR=#ff0000][B]Scratch all of that, changed over to Firefox and it works ( I was using chrome with a ton of add-ons)[/B][/COLOR]
-
Yeah,
I use Chrome for most of my stuff, but try to test across all types, (IE, Firefox, Chrome, Safari, Mobile platforms) but I have no add-ons except ad-blocker for me!
-
r984 release.
Contains fixes for capone.php in looking for imageDD which always returns 0. It should have been looking for case [1-4] not [0-3] and should be looking for imageTypeID Field.
I fixed this, but did it on direct source. The next time I copied changes over, it got overwritten with the old data.
-
r985 is out,
User Tracking works properly. As far as I can tell, Printers seem to work as well. It seems to give the interactive desktop service if you’ve installed the printer, and then removed it. After a period of time it tries to readd that printer which seems to cause the popup of the IDS thing. Other than that, it seems to install in either case, and I’ve tested printing and it actually sends the job properly. I haven’t tested local or iprint, but I’m sure it will work in much the same fashion.
-
My capone is stuck on finding DMI… never does anything
-
I’m not really an expert with the plugins’, but doesn’t the DMI field have to equal that of an existing field for inventory?
-
yes… well you can set that up in capone to use certain dmi fields… but mine gets stuck reading dmi it seems like
-
We have a person who seems to have this working.
I’ve never used plugins but it seems that if your DMI field is set to Bios-version, and you type 1.0 in the DMI Field, all systems that match that would be assigned with the appropriate information such as: imageID, join domain, or what have you.
Again, I don’t really know how this all works so I could be talking out my *** here. Maybe somebody with knowledge/understanding of how this works can chime in?
-
+1 for the *** reference! On 32 Capone works BUT I did had to modify something, cannot remember what, but I was using system product, like optiplex620 assigned to a optiplex image, it works great.
-
r987 out. Its only a minor change but user tracking seems to work properly now in that you can change the date.
-
Silly question from a noob, i’d like to update my SVN version of FOG 0.33b (don’t remember the r*** number) to see if it can solve a problem with WindowsXP+Resizable problem (Partimage prompt a “Third argument invalid directory/fifo”), what’s the best way to do it ?
svn co on existing folder and relaunch install.sh ?
other idea ?I’d like to keep my actual installation which works fine.
Sincerly, Alex
-
What I’d recommend is just checkout what you need. You probably need the tftp folder which would be
[code]svn co https://svn.code.sf.net/p/freeghost/code/trunk/packages/tftp[/code]
Then just
[code]cp -r tftp/* /tftpboot[/code]Then you’ll need to edit the /tftpboot/pxelinux.cfg/default file to readjust for your server.