12 lines
255 B
Bash
12 lines
255 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo "hallo" >> /tmp/tobias
|
||
|
sleep 60
|
||
|
echo "sart hallo" >> /tmp/tobias
|
||
|
systemctl --user daemon-reload
|
||
|
systemctl --user enable wmde-rp-usersync-nfs.service
|
||
|
systemctl --user start wmde-rp-usersync-nfs.service
|
||
|
|
||
|
echo "end hallo" >> /tmp/tobias
|
||
|
|