You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
593 B
29 lines
593 B
#!/usr/bin/env bash
|
|
|
|
DESC="Test NFS (bigboss exporte /overlays/ro/usr/share/doc (ro) et tiny l'importe)"
|
|
|
|
HELP="
|
|
Bigboss et tiny doivent avoir été configurés par baseConfig.
|
|
"
|
|
|
|
SYSTEMS="bigboss tiny"
|
|
|
|
run() {
|
|
local localErrors=0
|
|
|
|
requireSshGuests $SYSTEMS
|
|
|
|
vdnTest "NFS lecture seule (ro) ?" '
|
|
vdn-ssh root@tiny "
|
|
[ ! -d /mnt/bigboss ] && mkdir /mnt/bigboss;
|
|
timeout 3 mount bigboss:/overlays/ro/usr/share/doc /mnt/bigboss;
|
|
[ ! -e /mnt/bigboss/xterm ] && exit 1;
|
|
umount /mnt/bigboss;
|
|
"'
|
|
|
|
echoDone
|
|
|
|
return $localErrors
|
|
}
|
|
|