ich hab mir ein kleines Backup Script gemacht, was soweit auch gut tut....
Wenn ich aber /etc sichern will, fällt das Script welches mein "normaler" User (später durch cronjob) ausführen soll, auf die Nase.
Also habe ich meinem User in etc/sudoers für dieses Script Root Rechte gegeben, was aber wohl garnet funzt:
Code: Alles auswählen
# /etc/sudoers
#
# This file MUST be edited with the 'visudo' command as root.
#
# See the man page for details on how to write a sudoers file.
#
Defaults env_reset
# Host alias specification
# User alias specification
# Cmnd alias specification
# User privilege specification
root ALL=(ALL) ALL
myuser ALL=(ALL) ALL
myuser ALL = NOPASSWD: /home/myuser/backup-ordner/backup.sh
# Uncomment to allow members of group sudo to not need a password
# (Note that later entries override this, so you might need to move
# it further down)
# %sudo ALL=NOPASSWD: ALL
Danke u Gruss an die Linux Gemeinde