• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

fog.drivers script will not run correctly in postdownloadscripts

Scheduled Pinned Locked Moved Solved
FOG Problems
7
69
31.4k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • W
    Wayne Workman @THEMCV
    last edited by Nov 3, 2016, 3:27 PM

    @THEMCV Remove the >/dev/null 2>&1 part from that command in the script, the one that looks like this:
    rsync -aqz "$remotedriverpath" "$clientdriverpath" >/dev/null 2>&1

    Then we will be able to see an actual error.

    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!
    Daily Clean Installation Results:
    https://fogtesting.fogproject.us/
    FOG Reporting:
    https://fog-external-reporting-results.fogproject.us/

    1 Reply Last reply Reply Quote 0
    • T
      THEMCV
      last edited by Nov 3, 2016, 3:31 PM

      @Quazz I did not, no. I think I found the /fog reference though and might be our problem.

      I think it might be my postdownload script itself.

      #!/bin/sh
      ## This file serves as a starting point to call your custom postimaging scripts.
      ## <SCRIPTNAME> should be changed to the script you're planning to use.
      ## Syntax of post download scripts are
      #. ${postdownpath}<SCRIPTNAME>
      
      if [ $osid == "5" -o $osid == "6" -o $osid == "7" ]; then #only handling Win7/8/8.1
          clearScreen;
          mkdir /ntfs &>/dev/null
          ntfs-3g -o force,rw $part /ntfs #mount image (remember this is mounting partition [U][B]after[/B][/U] new image is deployed)
          mkdir /fog &>/dev/null
          mount -o nolock,proto=tcp $storageip:/fog/ /fog #this is a share created on server under /fog which contains drivers, software etc.. (just add /fog to exports but you could use existing location i.e. /images and if you do, do not ne$
          dots "Mounting Device";
          if [ "$?" = "0" ]; then
              echo "Done";
              . ${postdownpath}fog.drivers # run fog.drivers script
              umount /ntfs; # unmount when all is done :-)
          else
              echo "Failed To Mount Device";
              sleep 30;
          fi
      fi
      

      @Wayne-Workman I removed it and am testing it now.

      Q G 2 Replies Last reply Nov 3, 2016, 3:33 PM Reply Quote 0
      • Q
        Quazz Moderator @THEMCV
        last edited by Nov 3, 2016, 3:33 PM

        @THEMCV I do not recommend having commands in the postdownloadscripts, only calls to your scripts.

        Move the relevant information into another file, imo.

        1 Reply Last reply Reply Quote 1
        • G
          george1421 Moderator @THEMCV
          last edited by Nov 3, 2016, 3:33 PM

          @THEMCV Well, hell now I understand where the /fog is coming from. That is NOT in the original script I was referencing. https://forums.fogproject.org/topic/4278/utilizing-postscripts-rename-joindomain-drivers-snapins/29

          Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

          T 1 Reply Last reply Nov 3, 2016, 3:42 PM Reply Quote 0
          • T
            THEMCV @george1421
            last edited by Nov 3, 2016, 3:42 PM

            @george1421 I feel like an idiot. I got them jumbled up in my early stages. Bleh. Okay, so should I take the script that is from your link and use it or do as @Quazz suggested and just include a call to it?

            @Wayne-Workman: The message from removing the >/dev/null 2>&1

            This rsync lacks old-style --compress due to its external zlib. Try --zz. Continuing without compression.
            
            rsync:` write failed on "/ntfs/Windows/DRV/OptiPlex 980/x64/chipset/PP0H5-A00-00.WUB7/JasperFo.uno": No space left on device (20)
            rsync error: error in file IO (code 11) at receiver.c(393) [reciever=3.1.2]
            

            Which doesn’t make much sense as the device does have space.

            Q 1 Reply Last reply Nov 3, 2016, 3:43 PM Reply Quote 0
            • Q
              Quazz Moderator @THEMCV
              last edited by Nov 3, 2016, 3:43 PM

              @THEMCV Either works, I personally prefer having a more modular approach because it makes it easier to expand and debug, but it’s mostly personal taste.

              T 1 Reply Last reply Nov 3, 2016, 3:48 PM Reply Quote 0
              • T
                THEMCV @Quazz
                last edited by Nov 3, 2016, 3:48 PM

                @Quazz I just have

                . ${postdownpath}fog.drivers
                

                Is that good?

                Q 1 Reply Last reply Nov 3, 2016, 3:48 PM Reply Quote 0
                • Q
                  Quazz Moderator @THEMCV
                  last edited by Nov 3, 2016, 3:48 PM

                  @THEMCV Yes, that’s fine.

                  T 1 Reply Last reply Nov 3, 2016, 3:52 PM Reply Quote 0
                  • T
                    THEMCV @Quazz
                    last edited by Nov 3, 2016, 3:52 PM

                    @Quazz Okay, it’s in there. No change. Still acting like there’s no space left on the device which isn’t true at all. The image is only ~15GB.

                    Q G 2 Replies Last reply Nov 3, 2016, 3:57 PM Reply Quote 0
                    • Q
                      Quazz Moderator @THEMCV
                      last edited by Nov 3, 2016, 3:57 PM

                      @THEMCV I’d have to guess your ntfs isn’t being mounted correctly on the client. Most likely it’s trying to rsync to the fog client (which is residing in RAM) which will of course not have space to write to.

                      How do your scripts look like now?

                      1 Reply Last reply Reply Quote 0
                      • G
                        george1421 Moderator @THEMCV
                        last edited by george1421 Nov 3, 2016, 10:01 AM Nov 3, 2016, 3:59 PM

                        @THEMCV OK what I think I would do at this point is insert a debug pause after the error generator.

                        #/fog/Drivers/Win7/Latitude E5410/x86
                        rsync -aqz "$remotedriverpath" "$clientdriverpath" >/dev/null 2>&1
                        [[! $? -eq 0]] && handleError "Failed to download driver information"
                        
                        debugPause
                        

                        After the handleError line after the rsync.

                        Then go back and schedule a deployment to this computer but pick the debug deployment checkbox.

                        Then pxe boot the target computer. It will print out a bunch of text but drop you to a command prompt. From there key in fog This will single step you through the deployment process. When you get to the point of the error press crtl-C to exit the installer script. This will leave you at a linux command prompt. From there we should be able to check the disk size and what not.

                        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                        T 1 Reply Last reply Nov 3, 2016, 5:13 PM Reply Quote 1
                        • G
                          george1421 Moderator
                          last edited by george1421 Nov 3, 2016, 10:08 AM Nov 3, 2016, 4:05 PM

                          Wait, I just found a flaw in the script from Lee’s page (note: not a script Lee created though) for Windows 10, for Win7 its correct since the last partition on disk 0 is the windows partition.

                                  getPartitions $hd
                                  for part in $parts; do
                                      true
                                  done
                                  dots "Mounting partition $part"
                          

                          This loosely gives me the last partition for Win10. But that is NOT the windows partition. In the case of the system I’m testing there are 3 partitions, but partition 2 is the windows partition. I’m not using rsync but just regular copy that threw the error.

                          I think more intelligence needs to be built into this loop, where it should check to see if the /windows directory exists before exiting.

                          Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                          Q 1 Reply Last reply Nov 3, 2016, 4:09 PM Reply Quote 0
                          • Q
                            Quazz Moderator @george1421
                            last edited by Nov 3, 2016, 4:09 PM

                            @george1421 I personally use

                            echo -n " * Mounting Windows File System...................";
                            if [ -b /dev/sda4 ]
                             then
                                mount.ntfs-3g /dev/sda4 /ntfs 2>/tmp/mntfail
                             else
                                mount.ntfs-3g /dev/sda2 /ntfs 2>/tmp/mntfail
                            fi
                            

                            Logic: If the system has 4 partitions (or more), then (assuming singleboot windows) it is a GTP installation and Windows is on partition 4. Otherwise it’s a MBR installation and it will generally be on partition 2.

                            This is incredibly over simplistic, however and only reliably works on clean microsoft images, not OEM or the like.

                            A loop function would need to be created to check for the windows folder or something.

                            G 1 Reply Last reply Nov 3, 2016, 4:11 PM Reply Quote 0
                            • G
                              george1421 Moderator @Quazz
                              last edited by george1421 Nov 3, 2016, 10:11 AM Nov 3, 2016, 4:11 PM

                              @Quazz I had a similar simple conditional test, until I ran into a NVMe drive with its crazy disk naming of /dev/nvme0n1[partition]

                              Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                              Q 1 Reply Last reply Nov 3, 2016, 4:12 PM Reply Quote 0
                              • Q
                                Quazz Moderator @george1421
                                last edited by Nov 3, 2016, 4:12 PM

                                @george1421 Good point, we mostly deal in refurbished hardware and my script is non critical, so it hasn’t been a big deal for me so far.

                                G 1 Reply Last reply Nov 3, 2016, 4:15 PM Reply Quote 0
                                • G
                                  george1421 Moderator @Quazz
                                  last edited by george1421 Nov 3, 2016, 10:15 AM Nov 3, 2016, 4:15 PM

                                  @Quazz Unless the @Senior-Developers can come up with a brilliant way to find the windows partition, I think we are going to have to mount each partition, in order, until we find one that has the /Windows directory on it. That is kind of an expensive way to do that (in CPU time).

                                  Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                                  Q T 2 Replies Last reply Nov 3, 2016, 4:29 PM Reply Quote 0
                                  • Q
                                    Quazz Moderator @george1421
                                    last edited by Quazz Nov 3, 2016, 10:34 AM Nov 3, 2016, 4:29 PM

                                    @george1421 We can already reduce that by selecting only the NTFS partitions to try though.

                                    PARTITIONS=$(df -T | grep ntfs | awk '{print $1}')
                                    

                                    edit: I just realized this may not work on unmounted partitions, I’ll correct in a bit.

                                    1 Reply Last reply Reply Quote 0
                                    • T
                                      Tom Elliott @george1421
                                      last edited by Tom Elliott Nov 3, 2016, 11:13 AM Nov 3, 2016, 4:37 PM

                                      @george1421 There’s already a way.

                                      It sounds like the partitions aren’t being processed based on:

                                      @THEMCV said in fog.drivers script will not run correctly in postdownloadscripts:

                                      @Quazz I did not, no. I think I found the /fog reference though and might be our problem.

                                      I think it might be my postdownload script itself.

                                      #!/bin/sh
                                      ## This file serves as a starting point to call your custom postimaging scripts.
                                      ## <SCRIPTNAME> should be changed to the script you're planning to use.
                                      ## Syntax of post download scripts are
                                      #. ${postdownpath}<SCRIPTNAME>
                                      
                                      if [ $osid == "5" -o $osid == "6" -o $osid == "7" ]; then #only handling Win7/8/8.1
                                          clearScreen;
                                          mkdir /ntfs &>/dev/null
                                          ntfs-3g -o force,rw $part /ntfs #mount image (remember this is mounting partition [U][B]after[/B][/U] new image is deployed)
                                          mkdir /fog &>/dev/null
                                          mount -o nolock,proto=tcp $storageip:/fog/ /fog #this is a share created on server under /fog which contains drivers, software etc.. (just add /fog to exports but you could use existing location i.e. /images and if you do, do not ne$
                                          dots "Mounting Device";
                                          if [ "$?" = "0" ]; then
                                              echo "Done";
                                              . ${postdownpath}fog.drivers # run fog.drivers script
                                              umount /ntfs; # unmount when all is done :-)
                                          else
                                              echo "Failed To Mount Device";
                                              sleep 30;
                                          fi
                                      fi
                                      

                                      @Wayne-Workman I removed it and am testing it now.

                                      The ntfs-3g -o force,rw $part /ntfs is using the last partition FOG processed instead of looping the partitions separately.

                                      If it were me (psuedo code here) I’d end up doing something like:

                                              getPartitions $hd
                                              for part in $parts; do
                                                  umount /ntfs >/dev/null
                                                  fsTypeSetting "$part"
                                                  case $fstype in
                                                      ntfs)
                                                          dots "Mounting partition $part"
                                                          ntfs-3g -o force,rw $part /ntfs
                                                          if [[_! $? -eq 0_]]; then
                                                              echo "Failed...Trying next partition"
                                                              continue
                                                          fi
                                                          if [[_! -d /ntfs/windows && ! -d /ntfs/Windows && ! -d /ntfs/WINDOWS_]]; then
                                                              echo "Done...no valid Windows directory found"
                                                              umount /ntfs
                                                              continue
                                                          fi
                                                          echo "Done"
                                                          break
                                                          ;;
                                                      *)
                                                          echo " * Partition $part not NTFS filesystem"
                                                          ;;
                                                  esac
                                              done
                                      

                                      Of course this isn’t tested, and just thoughts through my head. Replace the _ with spaces.

                                      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                                      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                                      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                                      T 1 Reply Last reply Nov 3, 2016, 5:19 PM Reply Quote 2
                                      • G
                                        george1421 Moderator
                                        last edited by Nov 3, 2016, 5:12 PM

                                        Tom was able to do a bit of magic below. I tested it in my dev environment and it works to correctly find the windows partition. It needs a bit of cleanup work (hiding some unnecessary messages) but all in all it w is a brilliant bit of code.

                                        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                                        1 Reply Last reply Reply Quote 0
                                        • T
                                          THEMCV @george1421
                                          last edited by Nov 3, 2016, 5:13 PM

                                          @george1421 said in fog.drivers script will not run correctly in postdownloadscripts:

                                          @THEMCV OK what I think I would do at this point is insert a debug pause after the error generator.

                                          #/fog/Drivers/Win7/Latitude E5410/x86
                                          rsync -aqz "$remotedriverpath" "$clientdriverpath" >/dev/null 2>&1
                                          [[! $? -eq 0]] && handleError "Failed to download driver information"
                                          
                                          debugPause
                                          

                                          After the handleError line after the rsync.

                                          Then go back and schedule a deployment to this computer but pick the debug deployment checkbox.

                                          Then pxe boot the target computer. It will print out a bunch of text but drop you to a command prompt. From there key in fog This will single step you through the deployment process. When you get to the point of the error press crtl-C to exit the installer script. This will leave you at a linux command prompt. From there we should be able to check the disk size and what not.

                                          Okay, done. running the command df I get:

                                          Filesystem                   1K-blocks                Used        Available      Use%      Mounted on
                                          /dev/root                        99459               99440              0         100          / 
                                          10.4.200.150://images/        464307200             215944192        224754688    50          /images
                                          

                                          I will run @Tom-Elliot’s code and report back. 🙂

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 3
                                          • 4
                                          • 2 / 4
                                          2 / 4
                                          • First post
                                            38/69
                                            Last post

                                          197

                                          Online

                                          12.0k

                                          Users

                                          17.3k

                                          Topics

                                          155.2k

                                          Posts
                                          Copyright © 2012-2024 FOG Project