macOS'ta önyüklemede SMB paylaşımını otomatik olarak bağlama

As part of PaperCut’s Print Archiving feature on a macOS secondary server you may need to automatically mount a SMB share so that the PaperCut Print Provider can provide the appropriate files for archiving by the PaperCutApplication Server.

We have had an elegant solution presented to us by one of our customers - Sam from MacKillop College in Australia.

The resolution I came up with has two parts, a shell script and a launchd.

A shell script ``papercutmount.sh:

#!/bin/bash # Source variables from print-provider.conf . /Applications/PaperCut\ MF/providers/print/mac/print-provider.conf # Log in as local PaperCut account and execute all following commands as this user su papercut << EOS # Create a folder to mount to mkdir $ArchiveDir # Mount the share mount -t smbfs //$ArchiveUser:$ArchivePass@$ApplicationServer/archive $ArchiveDir EOS

And the launchd saved in /Library/LaunchDaemons/com.papercut.maparchive.plist (note to change the path to the shell file)

<?xml version="1.0" encoding="UTF-8"?> Label com.papercut.maparchive.plist ProgramArguments /path/to/papercutmount.sh RunAtLoad

Then the following variables also need to be added to the print-provider.conf file, as users only need to enter this info in the one place where they are familiar to setting config options.

ArchiveDir=/Volumes/archive ArchiveUser=svc-papercut ArchivePass=PASSWORD

Downside is that the password is in clear text, however this is a limited domain account on a “secure” server. If this was an issue, you could use one of these methods: mac osx - Secure way to mount a password protected cifs share in mac - Server Fault However, it may require some more user interaction.

One final note is that if the PaperCut Application Server is rebooted, the mounted shares are disconnected and the Mac OS X Secondary Print Server will fail to save the print archive files. The quickest fix is to re-run the script or reboot the Secondary server.