# File lib/backup/syncer/rsync/push.rb, line 47
        def perform!
          write_password_file!

          Logger.message(
            "#{ syncer_name } started syncing the following directories:\n\s\s" +
            @directories.join("\n\s\s")
          )
          run("#{ utility(:rsync) } #{ options } #{ directories_option } " +
              "'#{ username }@#{ ip }:#{ dest_path }'")

        ensure
          remove_password_file!
        end