Skip to content

Scripts: Custom Commands

Christian T. Drieling edited this page Mar 30, 2018 · 35 revisions

IGEL OS

let network sleep for 10 seconds during boot

system -> firmware customization -> custom commands -> network -> network initialization:

sleep 10

This will set an IGEL Registry Parameter and reload the Config

#SET Variables

CONFIG="/config/bin/icaconfig"

#Command for Set the param

SET=setparam

#Command for Config Reload

SETUP=killwait_postsetupd

#What param should be filled

CONFIG1=ica.pnlogin.desktop_folder_farm

#Param Value

VAL1=true

#Starting script

#add everthing together

$SET $CONFIG1 $VAL1

$SETUP

$CONFIG