s-bit-agent
Version:
s.BitAgent is a simple Bitwarden CLI wrapper which provides a SSH2 Key Agent solution for Bitwarden.
12 lines (11 loc) • 470 B
TypeScript
import { AutostartService } from './autostart.interface';
export declare class SecureSystemdAutostartService implements AutostartService {
name: string;
canActivate(): Promise<boolean>;
install(command: string, name: string, marker: string): Promise<boolean>;
uninstall(marker: string): Promise<boolean>;
isInstalled(marker: string): Promise<boolean>;
private ensureDaemonUser;
private generateServiceFileContent;
private execWithSudo;
}