Create a template service file at /etc/systemd/system/[email protected]. The template parameter will correspond to the name
of target host:
[Unit]
Description=Setup a secure tunnel to %I
After=network.targetCreate a template service file at /etc/systemd/system/[email protected]. The template parameter will correspond to the name
of target host:
[Unit]
Description=Setup a secure tunnel to %I
After=network.target| --- | |
| - name: install PostgreSQL | |
| apt: pkg={{ item }} update_cache=yes state=present | |
| sudo: yes | |
| tags: postgres | |
| with_items: | |
| - postgresql-{{ postgresql_version }} | |
| - postgresql-client-{{ postgresql_version }} | |
| - postgresql-contrib-{{ postgresql_version }} | |
| - libpq-dev |
| <?php | |
| /** | |
| * Description of VideoStream | |
| * | |
| * @author Rana | |
| * @link http://codesamplez.com/programming/php-html5-video-streaming-tutorial | |
| */ | |
| class VideoStream | |
| { | |
| private $path = ""; |
| <?php | |
| /** | |
| * CIDR.php | |
| * | |
| * Utility Functions for IPv4 ip addresses. | |
| * Supports PHP 5.3+ (32 & 64 bit) | |
| * @author Jonavon Wilcox <[email protected]> | |
| * @revision Carlos Guimarães <[email protected]> | |
| * @version Wed Mar 12 13:00:00 EDT 2014 | |
| */ |
| ffprobe -v quiet -print_format json -show_format -show_streams "lolwut.mp4" > "lolwut.mp4.json" |
| <?php | |
| namespace AppBundle\Doctrine; | |
| use Doctrine\DBAL\Connection; | |
| use Doctrine\DBAL\Driver\PDOPgSql\Driver as PDOPgSqlDriver; | |
| use Doctrine\ORM\NativeQuery; | |
| class PgSqlNativeQueryCursor | |
| { |
| <?php | |
| use Symfony\Component\Form\AbstractType; | |
| use Symfony\Component\OptionsResolver\OptionsResolver; | |
| class FieldsetType extends AbstractType | |
| { | |
| public function configureOptions(OptionsResolver $resolver) | |
| { | |
| $resolver->setDefault('inherit_data', true); |
| <?php | |
| namespace Acme\Doctrine\DBAL; | |
| use Doctrine\DBAL\Connection; | |
| declare(ticks = 3000000); | |
| class ConnectionKeepAlive | |
| { | |
| /** |