summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/LinHES-config/install_functions.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2009-09-08 15:36:58 (GMT)
committerJames Meyer <james.meyer@operamail.com>2009-09-08 15:36:58 (GMT)
commit065ac482f15d766fea7a2a8cd5e763d642ca3a9a (patch)
treec4dc75c4864c90910faddcae7ab801df1e20cd69 /abs/core-testing/LinHES-config/install_functions.sh
parentfc7e1cd23de947c5ef6fcbb06561038f610b055f (diff)
downloadlinhes_pkgbuild-065ac482f15d766fea7a2a8cd5e763d642ca3a9a.zip
linhes_pkgbuild-065ac482f15d766fea7a2a8cd5e763d642ca3a9a.tar.gz
linhes_pkgbuild-065ac482f15d766fea7a2a8cd5e763d642ca3a9a.tar.bz2
linhes-config: send mysql errors to /dev/null
ref FS#505
Diffstat (limited to 'abs/core-testing/LinHES-config/install_functions.sh')
-rwxr-xr-xabs/core-testing/LinHES-config/install_functions.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/abs/core-testing/LinHES-config/install_functions.sh b/abs/core-testing/LinHES-config/install_functions.sh
index 4df2e8c..83a2bed 100755
--- a/abs/core-testing/LinHES-config/install_functions.sh
+++ b/abs/core-testing/LinHES-config/install_functions.sh
@@ -16,8 +16,8 @@ found_remote=1
function update_db_settings () {
printhl " setting database value $1 to $2 for $hostname"
- $MYSQLCMD_C "delete from settings where value='${1}' and hostname=\"$hostname\";"
- $MYSQLCMD_C "REPLACE INTO settings set value='${1}', data='${2}' , hostname=\"$hostname\";"
+ $MYSQLCMD_C "delete from settings where value='${1}' and hostname=\"$hostname\";" 2>/dev/null
+ $MYSQLCMD_C "REPLACE INTO settings set value='${1}', data='${2}' , hostname=\"$hostname\";" 2>/dev/null
}
function random_theme () {
@@ -296,7 +296,7 @@ function request_dhcp(){
update_db_settings HostNETMASK$ndev "$TEMPVAR"
TEMPVAR=`grep new_routers /tmp/dhcpinfo.$ndev |cut -d\= -f2`
update_db_settings HostGW$ndev "$TEMPVAR"
- TEMPVAR=`grep new_domain_name_servers /tmp/dhcpinfo.$ndev |cut -d\= -f2| tr -d\"|tr -d\'|cut -d" " -f 1`
+ TEMPVAR=`grep new_domain_name_servers /tmp/dhcpinfo.$ndev |cut -d\= -f2| tr -d \"|tr -d \'|cut -d" " -f 1`
update_db_settings HostDNS$ndev "$TEMPVAR"
fi
fi