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

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

        ensure
          remove_password_file!
        end