mv renew position
This commit is contained in:
parent
eb96f7a0e4
commit
756d389c6d
159
src/remaster.sh
159
src/remaster.sh
@ -44,11 +44,83 @@ fi
|
|||||||
}
|
}
|
||||||
|
|
||||||
#####################################################################################
|
#####################################################################################
|
||||||
################## M o d e s ########################################################
|
################## F u n c t i o n s ################################################
|
||||||
#####################################################################################
|
#####################################################################################
|
||||||
|
|
||||||
#remaster.sh renew
|
### Error Handlings ###
|
||||||
function main_renew() {
|
|
||||||
|
#check_config
|
||||||
|
source <LIBDIR>/func/check_config
|
||||||
|
|
||||||
|
#on_exit [error_level]
|
||||||
|
source <LIBDIR>/func/on_exit
|
||||||
|
|
||||||
|
#error_code [error_level]
|
||||||
|
source <LIBDIR>/func/error_code
|
||||||
|
|
||||||
|
#check_user
|
||||||
|
source <LIBDIR>/func/check_user
|
||||||
|
|
||||||
|
#check_dependency
|
||||||
|
# -> 0 | -> 16
|
||||||
|
source <LIBDIR>/func/check_dependency
|
||||||
|
|
||||||
|
#check_update
|
||||||
|
source <LIBDIR>/func/check_update
|
||||||
|
|
||||||
|
### Workspace ###
|
||||||
|
|
||||||
|
#workspace_erase [workspace_path]
|
||||||
|
source <LIBDIR>/func/workspace_erase
|
||||||
|
|
||||||
|
|
||||||
|
### Filesystem ###
|
||||||
|
|
||||||
|
#filesystem_extract [filesystem_img_source] [chroot_path]
|
||||||
|
source <LIBDIR>/func/filesystem_extract
|
||||||
|
|
||||||
|
#filesystem_pack [chroot_path] [filesystem_img_destination]
|
||||||
|
source <LIBDIR>/func/filesystem_pack
|
||||||
|
|
||||||
|
#filesystem_get_type [dir]
|
||||||
|
#(String)-> ext4, ext2, btfs, fuse, ...
|
||||||
|
source <LIBDIR>/func/filesystem_get_type
|
||||||
|
|
||||||
|
### ISO ###
|
||||||
|
|
||||||
|
#iso_extract [iso_source] [iso_extr_dir]
|
||||||
|
source <LIBDIR>/func/iso_extract
|
||||||
|
|
||||||
|
#iso_create [chroot_path] [iso_extr_dir] [iso_aim] [iso_lable]
|
||||||
|
source <LIBDIR>/func/iso_create
|
||||||
|
|
||||||
|
### chroot ###
|
||||||
|
|
||||||
|
#chroot_initial [chroot_dir]
|
||||||
|
source <LIBDIR>/func/chroot_initial
|
||||||
|
|
||||||
|
#chroot_clean [chroot_dir]
|
||||||
|
source <LIBDIR>/func/chroot_clean
|
||||||
|
|
||||||
|
#chroot_umount [chroot_dir]
|
||||||
|
source <LIBDIR>/func/chroot_umount
|
||||||
|
|
||||||
|
#chroot_is_mounted [chroot_dir]
|
||||||
|
#(Boolean)-> true | false
|
||||||
|
source <LIBDIR>/func/chroot_is_mounted
|
||||||
|
|
||||||
|
#chroot_sh [chroot_dir] [command]
|
||||||
|
source <LIBDIR>/func/chroot_sh
|
||||||
|
|
||||||
|
####################################
|
||||||
|
### Workaround - set Project
|
||||||
|
source <LIBDIR>/proj/desinfect.17
|
||||||
|
####################################
|
||||||
|
|
||||||
|
###########################################################
|
||||||
|
################# P r o c e s s ... #######################
|
||||||
|
###########################################################
|
||||||
|
|
||||||
#Start LOG
|
#Start LOG
|
||||||
tail -f "$log_file" --pid="$$" &
|
tail -f "$log_file" --pid="$$" &
|
||||||
|
|
||||||
@ -207,84 +279,3 @@ function main_renew() {
|
|||||||
|
|
||||||
|
|
||||||
on_exit 0
|
on_exit 0
|
||||||
}
|
|
||||||
|
|
||||||
#####################################################################################
|
|
||||||
################## F u n c t i o n s ################################################
|
|
||||||
#####################################################################################
|
|
||||||
|
|
||||||
### Error Handlings ###
|
|
||||||
|
|
||||||
#check_config
|
|
||||||
source <LIBDIR>/func/check_config
|
|
||||||
|
|
||||||
#on_exit [error_level]
|
|
||||||
source <LIBDIR>/func/on_exit
|
|
||||||
|
|
||||||
#error_code [error_level]
|
|
||||||
source <LIBDIR>/func/error_code
|
|
||||||
|
|
||||||
#check_user
|
|
||||||
source <LIBDIR>/func/check_user
|
|
||||||
|
|
||||||
#check_dependency
|
|
||||||
# -> 0 | -> 16
|
|
||||||
source <LIBDIR>/func/check_dependency
|
|
||||||
|
|
||||||
#check_update
|
|
||||||
source <LIBDIR>/func/check_update
|
|
||||||
|
|
||||||
### Workspace ###
|
|
||||||
|
|
||||||
#workspace_erase [workspace_path]
|
|
||||||
source <LIBDIR>/func/workspace_erase
|
|
||||||
|
|
||||||
|
|
||||||
### Filesystem ###
|
|
||||||
|
|
||||||
#filesystem_extract [filesystem_img_source] [chroot_path]
|
|
||||||
source <LIBDIR>/func/filesystem_extract
|
|
||||||
|
|
||||||
#filesystem_pack [chroot_path] [filesystem_img_destination]
|
|
||||||
source <LIBDIR>/func/filesystem_pack
|
|
||||||
|
|
||||||
#filesystem_get_type [dir]
|
|
||||||
#(String)-> ext4, ext2, btfs, fuse, ...
|
|
||||||
source <LIBDIR>/func/filesystem_get_type
|
|
||||||
|
|
||||||
### ISO ###
|
|
||||||
|
|
||||||
#iso_extract [iso_source] [iso_extr_dir]
|
|
||||||
source <LIBDIR>/func/iso_extract
|
|
||||||
|
|
||||||
#iso_create [chroot_path] [iso_extr_dir] [iso_aim] [iso_lable]
|
|
||||||
source <LIBDIR>/func/iso_create
|
|
||||||
|
|
||||||
### chroot ###
|
|
||||||
|
|
||||||
#chroot_initial [chroot_dir]
|
|
||||||
source <LIBDIR>/func/chroot_initial
|
|
||||||
|
|
||||||
#chroot_clean [chroot_dir]
|
|
||||||
source <LIBDIR>/func/chroot_clean
|
|
||||||
|
|
||||||
#chroot_umount [chroot_dir]
|
|
||||||
source <LIBDIR>/func/chroot_umount
|
|
||||||
|
|
||||||
#chroot_is_mounted [chroot_dir]
|
|
||||||
#(Boolean)-> true | false
|
|
||||||
source <LIBDIR>/func/chroot_is_mounted
|
|
||||||
|
|
||||||
#chroot_sh [chroot_dir] [command]
|
|
||||||
source <LIBDIR>/func/chroot_sh
|
|
||||||
|
|
||||||
####################################
|
|
||||||
### Workaround - set Project
|
|
||||||
source <LIBDIR>/proj/desinfect.17
|
|
||||||
####################################
|
|
||||||
|
|
||||||
###########################################################
|
|
||||||
################# P r o c e s s ... #######################
|
|
||||||
###########################################################
|
|
||||||
#wenn kein modus angegebnen: default modus
|
|
||||||
main_renew
|
|
||||||
|
Loading…
Reference in New Issue
Block a user