ich habe meinen Clouddienst erfolgreich eingerichtet.
da ein Einbinden über fstab und davfs nicht möglich war, ich aber über mount /cloud als Benutzer die Cloud einbinden kann, habe ich ein kleines Script mountcloud.sh geschrieben:
Code: Alles auswählen
#! /bin/bash
# Script zum mounten der Cloud
#
#
mount /cloud
exit 0
In der /etc/rc.local habe ich den Pfad eingetragent:
Code: Alles auswählen
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/usr/local/bin/mountcloud.sh
exit 0
mit einem mount /cloud
und einem fusermount -u /cloud
lässt sich der Webdienst jedoch problemlos ein- und aushängen.
Was mache ich da falsch?