• Running on PHP 5.4

    9
    0 Votes
    9 Posts
    5k Views
    G

    Those are just notices, that were not necessarily shown before. I doubt they make FOG not work properly. If you have reference passing to change, the trick is something along the line of sed -i ‘s/&$tmp/$tmp/’ *.php 😉
    If you just want the notices to go away, you need to change error_reporting in your php config. E_ALL

  • Change Full Host Registration / QuickImage

    Solved
    13
    0 Votes
    13 Posts
    6k Views
    Tom ElliottT

    Added this to quick inventory screen as it was very simple. Thanks Lee!

  • Document Backup?

    4
    0 Votes
    4 Posts
    2k Views
    Lee RowlettL

    I have already “half” coded this into the init.gz if anyone wants to pick it up.

    [url]http://fogproject.org/forum/threads/backup-feature-for-user-profiles-data.4264/#post-15326[/url]

  • Live Boot USB or VirtualDisk image for demonstration

    4
    0 Votes
    4 Posts
    5k Views
    Jaymes DriverJ

    I hadn’t even thought about that, It’s a great idea Tom!

  • Setting Multicasting Max Bitrate Via webinterface

    Solved
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Feature Request: 'Rename Host in FOG database' option on the PXE menu

    10
    0 Votes
    10 Posts
    5k Views
    Tom ElliottT

    I already have a fix in place for this. In creating the pxe delete host option, I now know exactly where to go.

    The file you’ll need to edit would be within the init.gz file, if you’ve already added the delete options, this will take just a couple lines of code:

    When it says unable to register host as it already exists, call the fog.auto.del script, it should take over from that point, within the fog.auto.del post, it will ask if you want to re-inventory of where you can change the hostname. This should be useful, though I don’t have time to test all aspects.

  • Add/Modify Hardware Details of non-PXE devices

    2
    0 Votes
    2 Posts
    1k Views
    C

    I wouldn’t be opposed to letting users put in a primary user, other tag 1, and other tag 2. I get frustrated sometimes when I can’t put this in through the webUI because an inventory job has not been run yet, either as a separate job, or as part of the registration process.

    This could be as simple as displaying the labels and blanks and update button even if no related record exists in the inventory table.

  • Truncate hostname

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    C

    In FOG 0.33, the host no longer has an OS. The OS is tied to the image.

    I have modified the script in the init.gz to truncate to 15 characters and warn if truncation was necessary. I still have not modified the webUI to limit the field in html, or to truncate the value in the processing of the form data.

    I agree this would be nice, and for the most part, I never need over 15 characters. Maybe this could be configurable through the FOG settings for a max host name length in case there was some need to have it longer than 15. There is a limit due to the field size in the datastore also, but that can be queried to make sure the UI or registration scripts are not exceeding that.

  • Host OS should be linked to the Image and not the host(computer)?

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    Tom ElliottT

    As an update to this,

    The hostOS field is no longer a part of the Database schema. I’ve already made corrections to the to the auto.register.php file to allow host registration as with SVN r899, it still tries to insert data into the hosts.hostOS table which does not exists. Because it fails, the script keeps attemping in a, seemingly, forever loop, but in actuality you can edit the auto.register.php file while the host is attempting to upload to inventory. Take out the reference of insert into hostOS and the process will complete just fine.

  • "Reinstall my computer" for users

    4
    0 Votes
    4 Posts
    3k Views
    Scott BS

    We considered this as well for certain tech savvy staff but ended up choosing not to. A phone call or support ticket into IT and we can set a PC to reboot and image from here with the web gui. Still quick and easy.

  • Windows 8 support in .33?

    17
    0 Votes
    17 Posts
    13k Views
    Tom ElliottT

    [quote=“mlb2009, post: 15450, member: 13741”]Windows 7 support will also be good[/quote]
    Windows 7 is already supported in 0.32, and as such would be supported in 0.33

  • Windows UI

    5
    0 Votes
    5 Posts
    3k Views
    S

    I agree. The web UI is pretty feature rich and well thought out.

  • Remote Control

    4
    0 Votes
    4 Posts
    2k Views
    J

    Meraki = Free and Easy

  • Progress Information

    1
    0 Votes
    1 Posts
    991 Views
    No one has replied
  • What I feel should be added/fixed

    5
    0 Votes
    5 Posts
    3k Views
    L

    ok… i agree with all those changes / requests… however i think 9 is currently possible. I believe you would need to modify the init.gz to include what you want done… so for example, i use debug-deploy to change the MTU size to 9198 to take advantage of jumbo frames then launch fog from the command line to start the image.

    I am seriously considering modifying the init.gz to make this happen from the standard fog process of deployment.

    from a programming point of view, I think it is possible to give it steps to do, you would just end up with a heavily customised fog installation which would be useless if you went to upgrade to support new hardware / software…

  • Domain change

    1
    0 Votes
    1 Posts
    788 Views
    No one has replied
  • FOG Inventory fetch monitor details

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Delayed tasks for group

    1
    0 Votes
    1 Posts
    852 Views
    No one has replied
  • Which OU?

    Solved
    2
    0 Votes
    2 Posts
    1k Views
    x23piracyX

    Hi,

    i don’t understand the hole thread also the title!
    I just can a little foresee what u may ment.

    Greetz X23

  • Update Registry when FOG client changes Host.

    5
    0 Votes
    5 Posts
    3k Views
    Jaymes DriverJ

    okay, so I found the section in MOD_HostNameChanger.cs in the folder /usr/src/fog_0.32/FOG Service/src/FOG_HostNameChanger

    I have added these two lines

    regKey = Registry.LocalMachine.OpenSubKey(@“SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon”, true);
    regKey.SetValue(“AltDefaultDomainName”, newname);
    regKey = Registry.LocalMachine.OpenSubKey(@“SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon”, true);
    regKey.SetValue(“DefaultDomainName”, newname);

    to the class
    [code]
    private void doDefaultMode( string newname)
    {
    RegistryKey regKey = null;
    log(MOD_NAME, “Using default fog method.”);
    regKey = Registry.LocalMachine.OpenSubKey(@“SYSTEM\CurrentControlSet\Services\Tcpip\Parameters”, true);
    regKey.SetValue(“NV Hostname”, newname);
    regKey = Registry.LocalMachine.OpenSubKey(@“SYSTEM\CurrentControlSet\Control\ComputerName\ActiveComputerName”, true);
    regKey.SetValue(“ComputerName”, newname);
    regKey = Registry.LocalMachine.OpenSubKey(@“SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName”, true);
    regKey.SetValue(“ComputerName”, newname);
    regKey = Registry.LocalMachine.OpenSubKey(@“SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon”, true);
    [/code]

    being the registry values I am wanting to change are in [B]HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\DefaultDomainName[/B] and [B]HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\AltDefaultDomainName[/B]
    and I want to populate it with the same information being supplied in the rest of the registry keys.

    Do I need to compile this and push it, or is saving the configurations going to be good enough?

    I already built my image, do I need to update the fog client on my images and push it out again?

    Sorry not done anything like this before don’t want to break anything and I want it to work 😄

191

Online

12.3k

Users

17.4k

Topics

155.6k

Posts