PHP程序创建可安装软件包

3
我有以下的PHP脚本,我想创建一个人们可以轻松安装的包,类似于这样:
sudo dpkg -i packagename.deb

您有什么想法可以帮助我完成这个任务吗?

/home/script.sh

#!/bin/bash
echo "Starting NAME service"
sudo -u root php -f /home/script.php &

/home/script.php

<?php

// The worker will execute every X seconds:
$seconds = 2;

// We work out the micro seconds ready to be used by the 'usleep' function.
$micro = $seconds * 1000000;

while(true){
 // This is the code you want to loop during the service...
 $myFile = "/home/filephp.txt";
 $fh = fopen($myFile, 'a') or die("Can't open file");
 $stringData = "File updated at: " . time(). "\n";
 fwrite($fh, $stringData);
 fclose($fh);

 // Now before we 'cycle' again, we'll sleep for a bit...
 usleep($micro);
}

/etc/systemd/system/name.service

[Unit]
Description=Crawler cache Service
After=network.target

[Service]
User=root
Restart=always
Type=forking
ExecStart=/home/script.sh

[Install]
WantedBy=multi-user.target
1个回答

1
解决方案是创建以下文件夹树:
> package_name/
>> DEBIAN/
>>> control
>> usr/
>>> share/
>>>> package_name/
>>>>> script.sh
>>>>> script.php
>> etc/
>>> systemd/
>>>> system/
>>>>> name.service

在“控制”文件中,您需要设置一些参数,如版本号或依赖关系。
Package: package_name
Version: 0.0.1
Section: base
Priority: optional
Architecture: all
Depends: php, php-curl
Maintainer: Marcos Aguayo <marcos@aguayo.es>
Description: Package description

之后你只需要输入以下命令:

sudo dpkg-deb --build package_name/

当您有.deb软件包时,如果想要安装它,可以使用以下命令:
sudo dpkg -i package_name.deb # --> Install .deb
systemctl start package_name  # --> Start the service

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接