• Improved grub2 solution proposal

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    Tom ElliottT

    This has been added to inits and scripts.

    Had to modify the saveGRUB a little bit if the disk returns with 0, it can’t create the mbr because the count get’s offset by one sector. count can’t equal -1 or 0. At least in the case of 0 it generates a d1.mbr file, but there’s no data inside of it.

  • Windows Batch Create/update host

    11
    0 Votes
    11 Posts
    6k Views
    W

    Since I reformatted my fog server and did a complete new install from Fog 0.32 --> 0.33 --> 1.0.0 --> 1.0.1–>1.1.0, I have lost my client list. 😞 I originally hoped the client would re-register themselves but that function was lost in 0.29 and it makes sense why. The HOST has no idea what image to point to. Considering there may be 2 possible images for the same Make\Model of machine.

    So I wanted to make this easier on myself.

    Here is what I came up with… I have a shortcut to a network shared batch file so I can make some changes on the fly with our users that can’t do things for themselves. This batch file is in windows All Users\Startup folder. (Dirty I know but works). SO if I want my staff to look at a webpage as soon as they log in I can force that. 🙂

    [B]Windows Batch file:[/B]
    [CODE]start <fogserverip>/fog/management/index.php?node=host&sub=add[/CODE]

    [B]Install arpscan to fog server[/B]
    [CODE]sudo apt-get install arp
    [/CODE]

    [B]Edit /var/www/fog/lib/pages/[/B][B]HostManagementPage.class.php[/B] to include just below print “\n\t\t\t<h2>”._(‘Add new host definition’).‘</h2>’;
    [CODE] //----------------------------------------------------------------------------------------
    //Register this host Button (wolfbane8653)
    //Must install arp first (sudo apt-get install arp) before enabling this button
    ?>
    <script>
    function fillinfo()
    {
    //get this hosts info
    <?php
    $ipaddr = $_SERVER[‘REMOTE_ADDR’];
    $chk = exec('/usr/sbin/arp -a '.$ipaddr,$output);
    $data = explode(" “,$output[0]);
    $name = explode(”.",$data[0]);
    $hostname = $name[0];
    $macaddr = $data[3];
    ?>
    //export php info into javascript
    var hostname = “<?php echo $hostname ?>”;
    var macaddr = “<?php echo $macaddr ?>”;
    //output to textboxes
    document.getElementsByName(“host”)[0].value=hostname;
    document.getElementsByName(“mac”)[0].value=macaddr;
    }
    </script>
    <button onclick=“fillinfo()”>Register THIS HOST</button>
    <?php
    //end button
    //----------------------------------------------------------------------------------------[/CODE]

    With this edit I now can click on this new button and it inputs my current computer name and mac address in the correct fields. Is there anyway this can be incorporated as a hook/plugin/option?

    [COLOR=#ff0000]Warning this only works on LAN.[/COLOR]

  • Extended/Logical Partitions Proposed Solution

    Solved
    7
    0 Votes
    7 Posts
    3k Views
    F

    Thanks Tom. I appreciate your persistence in getting this integrated. It’ll save a lot of hassles for first time dual-boot users.

    PS. Coming soon: patch to make capture of GRUB2 work in more cases.

  • Software Inventory

    5
    0 Votes
    5 Posts
    4k Views
    W

    This would a be beautiful feature!

  • Group Management

    Solved
    5
    0 Votes
    5 Posts
    2k Views
    W

    True this has been added to host management. My mind just goes to Group Management when I want to add hosts to a group. However, [B]this does perfectly work fine in Host management.[/B] If you keep it the way it is then the user will just have to realize to go to Host Management for adding multiple machines to a group. Then to delete multiples from a group go to the Group Management.

  • Quick Inventory Group

    Solved
    12
    0 Votes
    12 Posts
    4k Views
    Tom ElliottT

    This is because, from the group, if you’ve added new hosts, you can simply reapply and will apply to all hosts again.

    I’m very sorry that this was not as you expected, but it does have a purpose. If a host belonging to a group of systems is automatically added to the domain, it’d become rather more tedious to actually remove that host from the group simply so you can keep it from joining the AD. We’d see a lot more flak for that than the current method. Using the groups is relatively straight-forward anyway and hope you understand why we can’t have “group” add to domain.

  • NoReg

    Solved
    8
    0 Votes
    8 Posts
    3k Views
    J

    I’ve tested on r1717, and can confirm that you associate more than one image to a dmi criteria, and will get a message to that effect on the client, and asked to choose which one.

    see attached screen shot, for info I have the dmi field set to serial number.

    [ATTACH=full]828[/ATTACH]

    [url=“/_imported_xf_attachments/0/828_capone_multi.png?:”]capone_multi.png[/url]

  • Documentation or Support for Fog Service MST

    Solved
    13
    0 Votes
    13 Posts
    5k Views
    N

    That’s cleaner than what I had done, so I will take a gander at that later this week. Thanks for the info.

  • Fog Prep page/link

    Solved
    4
    0 Votes
    4 Posts
    4k Views
    Tom ElliottT

    This has been added, you’re all welcome. I even made it so it stay’s within the confines of the working system. Meaning, if you’re logged into fog, you still see the menu’s and can just click on the menu links after downloading the file(s) you need.

  • Couple of minor changes to Management Console that would speed things

    Solved
    12
    0 Votes
    12 Posts
    5k Views
    S

    [quote=“Junkhacker, post: 27735, member: 21583”]oh, sorry, i forgot that hooks were broken in 1.0.1
    i am running svn release 1710. hooks are fixed in 1702 and what i described will work in the next official 1.x.x release of fog along with a few other bug fixes[/quote]

    Oh, lol no problem. Can’t wait 😄

  • 2 requests

    Solved
    3
    0 Votes
    3 Posts
    1k Views
    Tom ElliottT

    [quote=“Wolfbane8653, post: 27511, member: 3362”]yes|no? opinions?[/quote]

    I like the idea, but adding it isn’t always straight forward. I plan to just have it add the r direct from SVN, but that means your’s will always display the latest SVN revision number, not necessarily the accurate rev you’re running.

    Log view is an option I’ve thought about, but initially abandoned due to the variants of actual location and needing to change permissions to view it on the browser.

  • Custom PXE Boot menu

    4
    0 Votes
    4 Posts
    3k Views
    S

    irc…

  • Host details

    7
    1 Votes
    7 Posts
    3k Views
    Tom ElliottT

    [quote=“Junkhacker, post: 26662, member: 21583”]if anyone still wanted this, here’s how you get it. add this file to your web-root/fog/lib/hooks folder
    Most of the credit goes to Tom and Rowlett on this one.[/quote]

    I’m going to modify slightly (so it’s AddHostSerial within the file as well) and push it with the next release if this is okay with you and everybody.

  • Image Compression Association

    8
    0 Votes
    8 Posts
    3k Views
    N

    Alright, that answers that. I appreciate the consideration.

  • Redesign lists (host, images etc), use of jquery

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    P

    Option to set minimizes or mazimized graphs in Task Management? The graphs used in task management to show progress in a task is set to a minimized format. User has to hoover over the graph to get the full info and full graph. An option in FOG setting to choose between this hoover (minimized) functionality and a full graph would be nice.

  • Web Interface Modification

    1
    0 Votes
    1 Posts
    997 Views
    No one has replied
  • Some more info in list if hosts

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    P

    This one seems to be very handy [url]https://datatables.net/[/url]

    It makes the lists fantastic: sortable and it removes the need of the search function. The filter function is much better.

  • Improved redhat installer

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    Tom ElliottT

    Clamav does have a default installer, though the location of the configuration changes depending on using epel or CentOS base repositories. I don’t know about making them “selectable” persay, but I could have the FOG stuff not check whether they’re installed / configured so it doesn’t fail out of installation if they don’t get installed.

    For right now, though, I’d still recommend installing the relevant repositories.

  • Image Information

    Solved
    9
    0 Votes
    9 Posts
    3k Views
    Tom ElliottT

    0.33 now has these parameters. The imageSize is now working properly. It also pulls the information from disk and gets the file size in GiB.

    Thanks.

  • New feature in addition to LIST and SEARCH: AUTO

    2
    0 Votes
    2 Posts
    948 Views
    Tom ElliottT

    Too many changes needed for this to be included for right now. May look back into after stable release.

197

Online

12.3k

Users

17.4k

Topics

155.6k

Posts