Changeset 555
- Timestamp:
- 03/06/13 09:57:54 (8 years ago)
- Location:
- branches/1.5
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.5/CHANGELOG
r547 r555 1 1.5.8 2 * Added the server tools to the tarball 3 Reported by: Walter de Jong <walter dot dejong at surfsara dot nl> 4 Author: Dennis Stam 5 6 * As of 1 January 2013, SARA has a new name: SURFsara 7 * Change URL of documentation to https://oss.trac.surfsara.nl/sali 8 9 * Updated kernel to 3.8.2 10 1 11 1.5.7 2 12 * Added some files and a schell script which allows you create an ISO which can … … 447 457 448 458 systemimager changelog can be found in the SVN: 449 https:// subtrac.sara.nl/oss/sali/browser/trunk/CHANGE.LOG?rev=4459 https://oss.trac/surfsara.nl/sali/browser/trunk/CHANGE.LOG?rev=4 -
branches/1.5/Makefile.in
r545 r555 116 116 chmod +x $(TAR_DIR)/sali-$(VERSION)/bootdisk/sali_create_bootdisk 117 117 118 cp -a $(ROOT_DIR)/server $(TAR_DIR)/sali-$(VERSION) 119 find $(TAR_DIR) -type d -name .svn | xargs rm -r 120 118 121 touch $@ 119 122 … … 136 139 @echo "Removing all generated and downloaded files" 137 140 rm -rf $(ROOT_DIR)/src 138 rm -f Makefile config.log config.status initrd/sali/bin/sali_functions initrd/functions/functions.mbm bootdisk/sali_create_bootdisk 141 rm -f Makefile config.log config.status initrd/sali/bin/sali_functions initrd/functions/functions.mbm bootdisk/sali_create_bootdisk server/setup.py 139 142 140 143 .PHONY: show_targets -
branches/1.5/README
r260 r555 8 8 First Things First 9 9 -------------------------------------------------------------------------------- 10 All documentation is available at: https:// subtrac.sara.nl/oss/sali10 All documentation is available at: https://oss.trac.surfsara.nl/sali 11 11 12 12 Building and/or Installing Sali from Source: -
branches/1.5/VERSION
r544 r555 1 1.5. 71 1.5.8 -
branches/1.5/bootdisk/sali_create_bootdisk.in
r544 r555 5 5 # 6 6 7 SALI_VERSION="@ VERSION@"7 SALI_VERSION="@SALI_VERSION@" 8 8 ARCH="@ARCH@" 9 9 CDROOT=$(dirname $(readlink -f $0)) -
branches/1.5/configure
r544 r555 3228 3228 3229 3229 3230 ac_config_files="$ac_config_files Makefile initrd/sali/bin/sali_functions bootdisk/sali_create_bootdisk "3230 ac_config_files="$ac_config_files Makefile initrd/sali/bin/sali_functions bootdisk/sali_create_bootdisk server/setup.py" 3231 3231 3232 3232 … … 3940 3940 "initrd/sali/bin/sali_functions") CONFIG_FILES="$CONFIG_FILES initrd/sali/bin/sali_functions" ;; 3941 3941 "bootdisk/sali_create_bootdisk") CONFIG_FILES="$CONFIG_FILES bootdisk/sali_create_bootdisk" ;; 3942 "server/setup.py") CONFIG_FILES="$CONFIG_FILES server/setup.py" ;; 3942 3943 3943 3944 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;; -
branches/1.5/configure.ac
r544 r555 82 82 initrd/sali/bin/sali_functions 83 83 bootdisk/sali_create_bootdisk 84 server/setup.py 84 85 ]) 85 86 -
branches/1.5/example/post-install/98all.pxeconfig
r457 r555 13 13 # Remove the <hex_ipaddr> file from the pxelinux.cfg directory 14 14 # so the client will boot from disk. 15 # Get pxeconfig from ftp://ftp.s ara.nl/pub/outgoing/pxeconfig.tar.gz16 # Documentation at: https:// subtrac.sara.nl/oss/pxeconfig15 # Get pxeconfig from ftp://ftp.surfsara.nl/pub/outgoing/pxeconfig.tar.gz 16 # Documentation at: https://oss.trac.surfsara.nl/pxeconfig 17 17 18 18 # Get the Systemimager variables -
branches/1.5/initrd/functions/stubs/print_functions
r446 r555 50 50 printf "\n" 51 51 p_section "Welcome to SALI $(cat /etc/sali_version)" 52 p_section "https:// subtrac.sara.nl/oss/sali"52 p_section "https://oss.trac.surfsara.nl/sali" 53 53 } 54 54 -
branches/1.5/initrd/sali/etc/issue
r254 r555 1 1 2 2 Welcome to SALI 3 https:// subtrac.sara.nl/oss/sali3 https://oss.trac.surfsara.nl/sali 4 4 -
branches/1.5/initrd/sali/etc/sali_error
r450 r555 18 18 - or https://subtrac.sara.nl/oss/sali/newticket 19 19 20 Good Luck!! https:// subtrac.sara.nl/oss/sali20 Good Luck!! https://oss.trac.surfsara.nl/sali 21 21 22 22 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> -
branches/1.5/kernel/make.d/kernel.rul
r526 r555 21 21 22 22 ifeq ($(ARCH),x86_64) 23 LINUX_VERSION = 3. 1.423 LINUX_VERSION = 3.8.2 24 24 LINUX_IMAGE = $(LINUX_DIR)/arch/x86_64/boot/bzImage 25 25 LINUX_TARGET = bzImage -
branches/1.5/server/setup.py.in
r554 r555 10 10 setup( 11 11 name = 'SALI', 12 version = '@ VERSION@',12 version = '@SALI_VERSION@', 13 13 14 14 description = 'sali server and utilities', -
branches/1.5/tools/sali_check
r507 r555 9 9 import getpass 10 10 11 WIKI_URL = 'https://%s:%s@ subtrac.sara.nl/oss/sali/login/xmlrpc'11 WIKI_URL = 'https://%s:%s@oss.trac.surfsara.nl/sali/login/xmlrpc' 12 12 WIKI_PAGE = 'SaliUsedPrograms' 13 13 EXCLUDE_VERSIONS = ['1.1.0','1.1.1','1.2.0','1.2.1','1.2.2','1.2.3','1.2.4','1.3.0','1.3.1','1.3.2', '1.4.0', '1.4.5', '1.4.6']
Note: See TracChangeset
for help on using the changeset viewer.