Changes between Version 7 and Version 8 of WikiStart


Ignore:
Timestamp:
Apr 15, 2025, 5:11:47 PM (3 days ago)
Author:
Izuru Yakumo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v7 v8  
    3535
    3636{{{
     37#!markdown
    3738---
    3839title: Aya
     
    8586
    8687=== Example(s) of site uploading with rsync
     88==== Perl
     89{{{
     90#!perl
     91system("rsync --acv --del $ENV{AYA_OUTDIR} www\@s1.yakumo.dev:/var/www/technicalmarisa")
     92}}}
    8793
     94==== Shell
    8895{{{
    8996#!sh
     
    9198}}}
    9299
    93 {{{
    94 #!perl
    95 use warnings;
    96 use strict;
    97 
    98 my $user;
    99 my $host;
    100 my $dir;
    101 
    102 $dir = "/var/www/technicalmarisa";
    103 $host = "s1.yakumo.dev";
    104 $user = "www";
    105 
    106 system("rsync -acv --delete $ENV{AYA_OUTDIR}/ $user\@$host:$dir");
    107 }}}
    108100=== Hooks
    109101There are two special plugin names that are executed every time the build happens - {{{ prehook }}} and {{{ posthook }}}.\\