Ignore:
Timestamp:
Jun 27, 2012, 9:56:41 PM (12 years ago)
Author:
ezyang
Message:
Updates to install documentation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/fc17-dev/server/doc/install-howto.sh

    r2230 r2241  
    247247    gem install $(gem list --no-version | grep -Fxvf - gem.txt)
    248248    # Also, we need to install the old rails version
    249     gem install -v=2.3.5 rails
     249    gem install -v=2.3.14 rails
    250250# These are in /usr
    251251
     
    343343# Enable lots of services (currently in /etc checkout)
    344344    systemctl enable openafs-client.service
    345     systemctl enable dirsrv.service
     345    systemctl enable dirsrv.target
    346346    systemctl enable nslcd.service
    347347    systemctl enable nscd.service
     
    351351
    352352    systemctl start openafs-client.service
    353     systemctl start dirsrv.service
     353    systemctl start dirsrv.target
    354354    systemctl start nslcd.service
    355355    systemctl start nscd.service
     
    374374# (Note: this errors on XeTeX which is ok.)
    375375    fmtutil-sys --all
     376
     377# Check for unwanted setuid/setgid binaries
     378    find / -xdev -not -perm -o=x -prune -o -type f -perm /ug=s -print | grep -Fxvf /etc/scripts/allowed-setugid.list
     379
     380# Stop /etc/resolv.conf from getting repeatedly overwritten by
     381# purging DNS servers from ifcfg-eth0 and ifcfg-eth1
     382    vim /etc/sysconfig/network-scripts/ifcfg-eth0
     383    vim /etc/sysconfig/network-scripts/ifcfg-eth1
    376384
    377385# Fix etc by making sure none of our config files got overwritten
Note: See TracChangeset for help on using the changeset viewer.