source: client/shared/lib/engine/tests/NoModify/Net1.shtest @ 2fae617b

webconsole3
Last change on this file since 2fae617b was 1236d17, checked in by jm.bardallo <juanmanuel.bardallo@…>, 7 years ago

añadidos nuevamente los ficheros de opengnsys del branch devel, se habían quitado por error

  • Property mode set to 100644
File size: 788 bytes
Line 
1Test para la librería Net.lib No modifica
2=========================================
3$ if [ "$(ogGetHostname)" == "$(hostname)" ] ; then echo si; else echo no; fi
4si
5
6$ if [ "$(ogGetNetInterface)" == "$(ifconfig|head -1|cut -d\  -f1 )" ]; then echo si; else echo no; fi
7si
8
9$ AUX=$(ifconfig eth0|grep 'inet addr'|cut -dB  -f1|sed s/\ //g); if [ "$(ogGetIpAddress)" == "${AUX#*:}" ]; then echo si; else echo no; fi
10si
11
12$ AUX=$(ifconfig |head -1|sed s/\ //g| tr '[a-z]' '[A-Z]'); if [ "$(ogGetMacAddress)" == "${AUX##*HWADDR}" ]; then echo si; else echo no; fi
13si
14
15$ AUX=$(df|grep $OGIMG); if [ "//$(ogGetRepoIp)" == "${AUX%/ogimages*}" ]; then  echo si; else echo no; fi
16si
17
18$ AUX=$(df|grep $OGIMG); if [ "//$(ogGetServerIp)" == "${AUX%/ogimages*}" ]; then  echo si; else echo no; fi
19si
20
21
Note: See TracBrowser for help on using the repository browser.