- Timestamp:
- Sep 6, 2010, 11:17:35 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/fc13-dev/server/doc/install-howto.sh
r1544 r1619 9 9 boot=${1:$(cat /scripts-boot-count)} 10 10 11 # XXX: let 'branch' be the current svn branch you are on 11 # XXX: let 'branch' be the current svn branch you are on. You want to 12 # use trunk if your just installing a new server, and branches/fcXX-dev 13 # if your preparing a server on a new Fedora release. 12 14 13 15 doreboot() { … … 31 33 # kerneloops, mdmonitor, messagebus, microcode_ctl, netfs, network, nscd, ntpd, 32 34 # sshd, udev-post, and nothing else. 35 36 # If you did a minimal install, these won't be installed, so you'll 37 # need to do this step later in the process. 33 38 echo "--disabled" > /etc/sysconfig/system-config-firewall 34 39 for i in NetworkManager avahi-daemon bluetooth cups isdn nfslock nfs pcscd restorecond rpcbind rpcgssd rpcidmapd sendmail; do … … 58 63 59 64 cd /srv 60 svn co svn:// $source_server/$branch repository65 svn co svn://scripts.mit.edu/$branch repository 61 66 62 67 sed -i 's/^(# *)*store-passwords.*/store-passwords = no/' /root/.subversion/config … … 74 79 YUM install -y make 75 80 make install-deps 81 # You should pay close attention to the output of this command, and 82 # note if packages you think should exist don't exist anymore. In 83 # particular, if Fedora changes an architecture designation those 84 # won't work. 85 86 # Add scripts-build to the group 'mock' 87 usermod -a -G mock scripts-build 76 88 77 89 # Install bind … … 90 102 # you have named. 91 103 104 # You can get password SSH back by editing /etc/ssh/sshd_config (allow 105 # password auth) and /etc/pam.d/sshd (comment out the first three auth 106 # lines) 107 92 108 service named start 93 109 chkconfig named on 110 111 # This is the point at which you should start updating scriptsified 112 # packages for a new Fedora release. Consult 'upgrade-tips' for more 113 # information. 94 114 95 115 # In the case of the Kerberos libraries, you'll be told that … … 108 128 yumdownloader krb5-libs 109 129 # XXX: These version numbers are hardcoded, need some cli-fu to generalize 130 # FC13: Check if they are necessary 110 131 rpm -i krb5-libs-*.i586.rpm 111 132 rpm -U --force krb5-libs-*.scripts.1138.x86_64.rpm
Note: See TracChangeset
for help on using the changeset viewer.