correct ini file copy

This commit is contained in:
Mario Fetka 2013-03-18 15:31:57 +01:00
parent a655ef7435
commit fe18b016e4
2 changed files with 8 additions and 3 deletions

View File

@ -78,9 +78,8 @@ endif
msiexec /i "$InstallMsi$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 REBOOT=ReallySuppress msiexec /i "$InstallMsi$" /l* "$LogDir$\$ProductId$.install_log.txt" /qb! ALLUSERS=1 REBOOT=ReallySuppress
[Files_install] [Files_install]
; copy the ini file to the InstallDir
copy "$IniCfgFile$" "$InstallDir$" copy "$IniCfgFile$" "$InstallDir$"
copy "$IniCfgFile$" "$InstallDir$\SoftMaker\Settings\tmv10config.ini" copy "%ScriptPath%\*.ini" "$InstallDir$\SoftMaker\Settings"
; Example of recursively copying some files into the installation directory: ; Example of recursively copying some files into the installation directory:
; ;

View File

@ -20,6 +20,12 @@
############################################################################## ##############################################################################
function cleanup() { function cleanup() {
echo "Cleanup: output_dir: $OUTPUT_DIR" echo "Cleanup"
builder_cleanup builder_cleanup
} }
function create() {
echo "Create"
builder_create
cp $INST_DIR/CLIENT_DATA/opsi-${PN}.ini $INST_DIR/CLIENT_DATA/tmv10config.ini
}