On Wed, Nov 02, 2016 at 10:27:51AM +0100, Lutz Markus Willek wrote: > Nope. Not in the /etc directory, as written in my first mail. > > Lutz Willek >
instead, you now have the opposite problem: whenever we change something in our service file, you have to notice this and check whether you need to change yours ;) what you should do instead is either follow Wolfgang's recommendation, or use an extension snippet like this instead of a completely overriden service definition: ---------------------- # cat /etc/systemd/system/pve-manager.service.d/after-nfs.conf [Unit] After=nfs-kernel-server.service ---------------------- this will only add this single After directive to the service, and take all the rest from our service definition, including future updates. this way, it will only be a problem if we would add a dependency that causes a cycle with your After directive. _______________________________________________ pve-user mailing list [email protected] http://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-user
