PiPedal 1.2.33 initial commit

This commit is contained in:
Robin Davies
2024-08-08 12:53:02 -04:00
parent 0e378997a5
commit a3847c8184
255 changed files with 22008 additions and 1791 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "Install.hpp"
#include "Sudo.hpp"
#include "cassert"
#include "DBusLog.hpp"
int InstallService()
{
assert(IsSudo());
LogInfo("","InstallService","");
return EXIT_SUCCESS;
}
int UninstallService()
{
assert(IsSudo());
LogInfo("","Uninstall","");
return EXIT_SUCCESS;
}