github.com/dahs81/otto@v0.2.1-0.20160126165905-6400716cf085/images/scripts/macosx/hostname.sh (about)

     1  #!/bin/sh -eux
     2  # Major thanks to @timsutton's osx-vm-templates:
     3  # https://github.com/timsutton/osx-vm-templates
     4  
     5  osx_minor_version="`sw_vers -productVersion | awk -F '.' '{print $2}'`";
     6  
     7  # Set computer/hostname
     8  computer_name="macosx-10-${osx_minor_version}";
     9  scutil --set ComputerName "$computer_name";
    10  scutil --set HostName "${computer_name}.vagrantup.com";